/* ==========================================================================
   DESIGN TOKENS — Branco & Dourado Luxury
   ========================================================================== */
:root {
  /* Colors */
  --white: #FFFFFF;
  --ivory: #FBF8F2;
  --cream: #F5EFE2;
  --cream-deep: #ECE4D1;
  --sand: #E3D7BC;
  --charcoal: #1A1714;
  --charcoal-mid: #2A2521;
  --charcoal-deep: #0F0D0B;
  --gold-warm: #C9A86A;
  --gold-soft: #E3C88A;
  --gold-deep: #A88545;
  --gold-dark: #8B6F3A;
  --gold-light: #F0E2BE;
  --ink: #1A1714;
  --ink-muted: #5A5349;
  --ink-soft: #8A8478;
  --whatsapp: #25D366;

  /* Typography */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Container */
  --container-max: 1200px;
  --container-narrow: 780px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow { max-width: var(--container-narrow); }

.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section--ivory { background: var(--ivory); }
.section--cream { background: var(--cream); }

/* "forest" class kept for HTML stability — now serves as the dramatic cream/sand mechanism section */
.section--forest {
  background: var(--cream-deep);
  color: var(--ink);
  position: relative;
}
.section--forest::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 168, 106, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201, 168, 106, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.section--forest > .container { position: relative; z-index: 1; }

.section__header {
  margin-bottom: var(--space-xl);
  max-width: 780px;
}
.section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold-warm);
}
.eyebrow--gold {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-warm);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section__title--light { color: var(--ink); }

.section__lead {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 640px;
}
.section__header--center .section__lead { margin-left: auto; margin-right: auto; }
.section--forest .section__lead { color: var(--ink-muted); }

/* ==========================================================================
   HERO — Photo with Headline Overlay + Body Below
   ========================================================================== */
.hero {
  background: var(--ivory);
  color: var(--ink);
  padding: 0;
  overflow: hidden;
}

/* ---------- Stage: photo + scrim + overlay text ---------- */
.hero__stage {
  position: relative;
  width: 100%;
  height: min(68vh, 560px);
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 10, 10, 0) 0%,
      rgba(10, 10, 10, 0) 28%,
      rgba(10, 10, 10, 0.35) 55%,
      rgba(10, 10, 10, 0.78) 82%,
      rgba(10, 10, 10, 0.92) 100%
    );
  z-index: 1;
}

.hero__overlay-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 1.5rem 1.75rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.125rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(201, 168, 106, 0.55);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(8px);
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--gold-warm);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5.8vw, 2.125rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ivory);
  max-width: 22ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}
.hero__headline em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
  margin-top: 0.375rem;
}

/* ---------- Body: subheadline, CTA, trust ---------- */
.hero__body {
  background: var(--ivory);
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hero__subheadline {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 540px;
  margin: 0 auto 2rem;
}

.hero__body .btn { margin: 0 auto; }

.hero__trust {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(201, 168, 106, 0.35);
  width: 100%;
  max-width: 540px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: -0.01em;
}
.trust-item span {
  font-size: 0.6875rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(201, 168, 106, 0.4);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.125rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-align: center;
  min-height: 56px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.btn__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

.btn--primary {
  background: var(--gold-warm);
  color: var(--charcoal);
  box-shadow: 0 4px 24px rgba(201, 168, 106, 0.35);
}
.btn--primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201, 168, 106, 0.45);
}

.btn--gold {
  background: var(--gold-warm);
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(201, 168, 106, 0.3);
}
.btn--gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 106, 0.4);
}

/* CTAs centered by default across the page */
.cta-block {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.cta-block--centered { justify-content: center; }

/* ==========================================================================
   STORIES (Identificação)
   ========================================================================== */
.stories {
  display: grid;
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

.story {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 168, 106, 0.25);
  position: relative;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.story:hover {
  transform: translateY(-4px);
  border-color: var(--gold-warm);
  box-shadow: 0 20px 40px rgba(26, 23, 20, 0.06);
}

.story__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold-warm);
  line-height: 1;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.story__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 1rem;
}

.story p {
  color: var(--ink-muted);
  margin-bottom: 0.875rem;
  font-size: 1rem;
  line-height: 1.65;
}
.story p:last-child { margin-bottom: 0; }

.story__punch {
  font-weight: 500;
  color: var(--ink) !important;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(201, 168, 106, 0.4);
}

/* ==========================================================================
   TRAVAS (5 Mechanism Cards) — on Cream-Deep Section
   ========================================================================== */
.travas {
  display: grid;
  gap: 1rem;
  margin-top: var(--space-xl);
}

.trava {
  background: var(--white);
  border: 1px solid rgba(201, 168, 106, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.trava:hover {
  border-color: var(--gold-warm);
  transform: translateX(4px);
  box-shadow: 0 20px 40px rgba(168, 133, 69, 0.12);
}

.trava__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-warm);
  line-height: 1;
  opacity: 0.95;
}

.trava__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.trava p {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ==========================================================================
   PROSE (Solução)
   ========================================================================== */
.prose {
  max-width: 680px;
  margin: 0 auto;
}
.prose p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}
.prose__strong {
  font-family: var(--font-display);
  font-size: 1.5rem !important;
  font-weight: 500;
  color: var(--ink) !important;
  font-style: italic;
}

.checklist {
  margin: 2rem auto;
  display: grid;
  gap: 0.875rem;
  max-width: 680px;
}
.checklist li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--ink);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 20px;
  height: 20px;
  background: var(--gold-warm);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A1714' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.prose__closing {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 2px solid var(--gold-warm);
  max-width: 500px;
  text-align: center;
}

/* ==========================================================================
   OPTIONS (Direção)
   ========================================================================== */
.options {
  display: grid;
  gap: 1.5rem;
  margin-top: var(--space-xl);
}

.option {
  background: var(--white);
  border: 1px solid rgba(201, 168, 106, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.option:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(26, 23, 20, 0.08);
  border-color: var(--gold-warm);
}

.option--featured {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-deep) 100%);
  border: 2px solid var(--gold-warm);
  box-shadow: 0 10px 30px rgba(168, 133, 69, 0.15);
  position: relative;
}
.option--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-warm), var(--gold-soft), var(--gold-warm));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.option__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.option__badge--gold {
  background: var(--gold-warm);
  color: var(--charcoal);
}

.option__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

.option__desc {
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.option__list { display: grid; gap: 0.75rem; }
.option__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink);
}
.option__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold-warm);
  font-weight: 600;
}

.options__note {
  margin-top: 2.5rem;
  text-align: center;
  font-style: italic;
  color: var(--ink-muted);
  font-size: 1.0625rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   BIO — Cream Section Now
   ========================================================================== */
.section--bio {
  background: var(--cream);
  color: var(--ink);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  position: relative;
  overflow: hidden;
}
.section--bio::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(201, 168, 106, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(201, 168, 106, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.section--bio > .container { position: relative; z-index: 1; text-align: center; }

.section--bio .eyebrow {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-warm);
}

.bio__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0.5rem 0 0.75rem;
}

.bio__credentials {
  font-size: 0.875rem;
  color: var(--gold-deep);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

.bio__content {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.bio__content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}
.bio__greeting {
  font-family: var(--font-display);
  font-size: 1.5rem !important;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-deep) !important;
  margin-bottom: 1.5rem !important;
}
.bio__closing {
  font-weight: 500;
  color: var(--ink) !important;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 168, 106, 0.4);
}

.bio__contacts {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 106, 0.4);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.bio__link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--gold-deep);
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.bio__link:hover { color: var(--gold-dark); }
.bio__link svg { width: 18px; height: 18px; }

/* ==========================================================================
   FOOTER — Cream + Gold Editorial
   ========================================================================== */
.footer {
  background: var(--cream-deep);
  color: var(--ink-muted);
  padding: 4rem 0 2rem;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-warm) 30%, var(--gold-warm) 70%, transparent);
  opacity: 0.8;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer__eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201, 168, 106, 0.35);
  display: inline-block;
  width: fit-content;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}

.footer__muted {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.footer__online {
  margin-top: 0.75rem;
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--ink);
  font-weight: 500;
  transition: color 0.2s var(--ease);
  padding: 0.25rem 0;
}
.footer__link:hover { color: var(--gold-deep); }
.footer__link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold-deep);
}

.footer__divider {
  height: 1px;
  background: rgba(201, 168, 106, 0.3);
  margin: 0 0 2rem;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.footer__copy {
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
}

.footer__legal {
  font-style: italic;
  max-width: 720px;
  color: var(--ink-soft);
}

@media (min-width: 768px) {
  .footer { padding: 5rem 0 2.5rem; }
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
  }
  .footer__legal {
    max-width: 520px;
    text-align: right;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 100;
  transition: transform 0.25s var(--ease);
  animation: slideUp 0.6s var(--ease) 1s both;
  will-change: transform;
  transform: translateZ(0);
}
.whatsapp-float:hover { transform: scale(1.08) translateZ(0); }
.whatsapp-float svg { width: 28px; height: 28px; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   RESPONSIVE (Tablet: 768px+)
   ========================================================================== */
@media (min-width: 768px) {
  .container { padding: 0 2.5rem; }
  .section { padding: var(--space-3xl) 0; }

  .hero__stage { height: min(72vh, 620px); }
  .hero__overlay-text { padding: 0 2.5rem 2.25rem; max-width: 780px; }
  .hero__headline { font-size: clamp(1.875rem, 4vw, 2.5rem); max-width: 24ch; }
  .hero__body { padding: 3rem 2.5rem 4rem; }
  .hero__trust { gap: 1.25rem 2rem; max-width: 600px; }

  .stories { grid-template-columns: repeat(3, 1fr); }
  .options { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .travas { grid-template-columns: repeat(2, 1fr); }

  .whatsapp-float {
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
  }
  .whatsapp-float svg { width: 32px; height: 32px; }
}

/* ==========================================================================
   RESPONSIVE (Desktop: 1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
  .hero__stage { height: min(80vh, 720px); }
  .hero__overlay-text {
    padding: 0 4rem 3rem;
    max-width: var(--container-max);
    margin: 0 auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 100%;
  }
  .hero__headline { font-size: clamp(2.25rem, 3.2vw, 3rem); max-width: 28ch; }
  .hero__img { object-position: center 15%; }
  .hero__body { padding: 4rem 2.5rem 5rem; }

  .travas {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .btn {
    padding: 1.25rem 2rem;
    font-size: 1.0625rem;
  }

  .section__lead { font-size: 1.1875rem; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
