/* ========== VERSION 4: Muted professional — Libre Baskerville + Source Sans 3, grey/burgundy palette ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Source Sans 3", -apple-system, "Segoe UI", system-ui, sans-serif;
  line-height: 1.55;
  color: #2d2d2d;
  background: #eaeaea;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.section-inner,
.header-inner,
.footer-inner,
.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  background: #3d2c2e;
  color: #f5f0f0;
  padding: 1.1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.18rem, 3.6vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  padding: 0.35rem;
  border-radius: 6px;
  transition: opacity 0.2s, color 0.2s;
}

.header-whatsapp:hover {
  opacity: 0.9;
  color: #40e07a;
}

.header-whatsapp:focus {
  outline: 2px solid #25d366;
  outline-offset: 2px;
}

.whatsapp-icon {
  flex-shrink: 0;
}

.hero {
  padding: 2.5rem 0 3rem;
  background: #e0dede;
}

.hero-inner {
  display: grid;
  gap: 2rem;
}

.hero-text {
  order: 1;
}

.hero h1 {
  font-family: "Libre Baskerville", Georgia, serif;
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  font-weight: 700;
  line-height: 1.25;
  color: #2d2d2d;
}

.hero-lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: #404040;
}

.hero-image {
  order: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #d4d2d2;
}

.hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.hero-image .image-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #606060;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .hero {
    padding: 3.5rem 0 4rem;
  }
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }
  .hero-text { order: 0; }
  .hero-image { order: 1; }
}

.section {
  padding: 2.5rem 0;
}

.section--alt {
  background: #d8d6d6;
}

.section h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 3.2vw, 1.9rem);
  font-weight: 700;
  color: #2d2d2d;
}

.section p {
  margin: 0 0 1rem;
  color: #404040;
  font-size: 1.03rem;
}

.section p:last-of-type {
  margin-bottom: 0;
}

.section-image {
  margin-top: 1.5rem;
  border-radius: 6px;
  overflow: hidden;
  background: #d0cece;
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section-image .image-placeholder {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #606060;
  font-size: 0.85rem;
}

.section-image--small .image-placeholder {
  aspect-ratio: 16 / 10;
  max-width: 400px;
}

.section-image--small img {
  max-width: 400px;
}

.section-image--avatar .image-placeholder {
  aspect-ratio: 1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
}

.service-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (max-width: 600px) {
  .service-columns { grid-template-columns: 1fr; }
}

.service-column__title {
  font-family: "Libre Baskerville", Georgia, serif;
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2d2d2d;
}

.service-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: #404040;
  font-size: 1.02rem;
}

.service-list li {
  margin-bottom: 0.5rem;
}

.coach-section .section-inner {
  text-align: center;
}

.coach-image-wrap {
  margin-top: 1rem;
  text-align: center;
}

.coach-image-wrap img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
}

.coach-name {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #505050;
}

.testimonial blockquote { margin: 0; padding: 0; border: none; }
.testimonial blockquote p { font-style: italic; color: #404040; }
.testimonial blockquote footer { margin-top: 0.75rem; font-size: 0.9rem; color: #505050; }

.section--contact {
  background: #3d2c2e;
  color: #f0e8e8;
}

.section--contact h2 {
  color: #fff;
}

.section--contact p {
  color: #d8d0d0;
}

.contact-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: opacity 0.2s, transform 0.15s;
}

.btn:focus {
  outline: 2px solid #f0e8e8;
  outline-offset: 2px;
}

.btn:hover {
  opacity: 0.9;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-email {
  background: #f0e8e8;
  color: #3d2c2e;
  border: 2px solid #f0e8e8;
}

.site-footer {
  padding: 1.25rem 0;
  background: #2a1f21;
  color: #b0a4a6;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
  text-align: center;
}

.image-placeholder[data-suggestion]::after {
  content: attr(data-suggestion);
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #808080;
  max-width: 20ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.image-placeholder {
  flex-direction: column;
}
