/* ==========================================================================
   Psicóloga Josiana Dutra — Cinematic light redesign
   Tokens: light warm beige page, near-black ink text, burgundy accents.
   The deep burgundy "cinematic" tone is kept as an ACCENT — used only for
   the hero photo (mobile) and the two letterbox "scenes" (#comoteajudo,
   #online) — not the whole page. Signature element: letterbox "scenes"
   (.scene) with a sticky pinned photo between beige bars.
   ========================================================================== */

:root {
  /* ---- brand palette ---- */
  --c-burgundy: #80424d;
  --c-burgundy-dark: #6a343d;    /* hover / emphasis on light surfaces */
  --c-burgundy-deep: #3a1d24;    /* cinematic dark accent (hero/scene) */
  --c-dark-surface: #4a2731;     /* alternate dark surface (scene-alt, cards-on-dark) */
  --c-beige: #e5dcd7;            /* fixed brand beige — letterbox bars */
  --c-beige-soft: #f4eeea;       /* page background */
  --c-beige-mid: #ece0dc;        /* card / alt-section surface */
  --c-gray: #8f8f8f;
  --c-gray-warm: #6e6a66;        /* AA-safe secondary text on light bg */
  --c-gray-on-dark: #ab9fa0;     /* AA-safe secondary text on dark bg */
  --c-accent-on-dark: #d9a3ac;   /* burgundy family, lightened for dark bg */
  --c-accent-on-dark-strong: #efc9ce;
  --c-ink: #221518;              /* near-black body/heading text */
  --c-on-dark: #f2e7e2;          /* warm off-white text on dark surfaces */
  --c-white: #ffffff;
  --c-whatsapp: #3dce27;

  /* ---- contextual tokens (light default; .hero base + .scene/.scene-alt
         override these to the dark-on-dark equivalents) ---- */
  --text: var(--c-ink);
  --heading: var(--c-ink);
  --meta: var(--c-gray-warm);
  --accent: var(--c-burgundy);
  --accent-strong: var(--c-burgundy-dark);
  --hairline: rgba(34, 21, 24, 0.12);
  --hairline-strong: rgba(34, 21, 24, 0.24);
  --focus-ring: var(--c-burgundy-dark);
  --surface: var(--c-beige-mid);
  --bg: var(--c-beige-soft);

  --font-display: "Archivo", Arial, sans-serif;
  --font-body: "Albert Sans", Arial, sans-serif;

  --nav-h: 64px;
  --gutter: 20px;
  --measure: 62ch;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, p, ul, ol { margin: 0; }
ul, ol { padding-left: 1.2em; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ----- Focus ----- */
a:focus-visible,
button:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----- Layout helpers ----- */
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 var(--gutter); }
.center { text-align: center; }
.section { padding: 88px 0; }

/* ----- Reveal-on-scroll ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  transition: box-shadow 0.35s var(--ease), transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
.btn-primary {
  background: var(--c-burgundy);
  color: var(--c-white);
  box-shadow: 0 14px 30px -14px rgba(58, 29, 36, 0.5);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--c-burgundy-dark);
  box-shadow: 0 18px 38px -12px rgba(58, 29, 36, 0.6);
  transform: translateY(-1px);
}

/* ----- Reading progress bar ----- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--c-burgundy);
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ==========================================================================
   Navbar — always a light chip, regardless of what scrolls beneath it
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 900;
  background: rgba(244, 238, 234, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--hairline);
}
.navbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.nav-logo-strong { color: var(--c-ink); }
.nav-logo-light { color: var(--c-burgundy); font-weight: 400; margin-left: 4px; }

.nav-toggle {
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 901;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c-ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 22px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

.nav-links {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-beige-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.nav-links.is-open { transform: translateX(0); }
.nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink);
}
.nav-link:hover, .nav-link:focus-visible { color: var(--c-burgundy); }

/* ==========================================================================
   Hero — Scene 1
   Mobile: full-bleed photo + deep-burgundy scrim (cinematic dark accent).
   Desktop (>=768px): split layout — text beside a contained, rounded,
   letterboxed photo frame. See breakpoints below.
   ========================================================================== */
.hero {
  /* dark context: mobile hero text sits over the photo */
  --text: var(--c-on-dark);
  --heading: #ffffff;
  --meta: var(--c-gray-on-dark);
  --accent: var(--c-accent-on-dark);
  --accent-strong: var(--c-accent-on-dark-strong);
  --hairline: rgba(242, 231, 226, 0.14);
  --hairline-strong: rgba(242, 231, 226, 0.3);
  --focus-ring: var(--c-accent-on-dark);

  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.1) translate(-1%, -1%); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(58, 29, 36, 0.96) 0%, rgba(58, 29, 36, 0.64) 42%, rgba(58, 29, 36, 0.12) 75%),
    linear-gradient(to bottom, rgba(58, 29, 36, 0.55) 0%, rgba(58, 29, 36, 0) 30%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) 64px;
  max-width: 720px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--meta);
  margin-bottom: 18px;
}
.hero-quote {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 120%;
  font-size: clamp(1.7rem, 7vw, 3.1rem);
  line-height: 1.14;
  color: var(--heading);
  margin-bottom: 22px;
}
.hero-tagline {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 30px;
  font-weight: 300;
}
.hero-tagline strong { font-weight: 500; color: var(--heading); }

.hero-scroll-cue {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: 22px;
  height: 36px;
  border: 1px solid var(--hairline-strong);
  border-radius: 12px;
  display: none;
}
.hero-scroll-cue span {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  margin-left: -1.5px;
  background: var(--text);
  border-radius: 2px;
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 6px; }
  70% { opacity: 0; top: 18px; }
  100% { opacity: 0; top: 18px; }
}

/* ==========================================================================
   Sobre Mim + counters
   ========================================================================== */
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(1.5rem, 4.4vw, 2.3rem);
  line-height: 1.24;
  color: var(--heading);
  max-width: var(--measure);
  margin-bottom: 26px;
}
.section-title.center { max-width: none; margin-left: auto; margin-right: auto; }
.section-title strong { color: var(--heading); font-weight: 900; }

.section-text {
  max-width: var(--measure);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 20px;
}
.section-text strong { font-weight: 500; color: var(--heading); }

.counters { margin-top: 56px; padding-top: 44px; border-top: 1px solid var(--hairline); }
.counters-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--meta);
  margin-bottom: 28px;
}
.counters-title strong { color: var(--text); font-weight: 700; }
.counters-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.counter-number {
  display: flex;
  align-items: flex-start;
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 130%;
  font-size: clamp(3.2rem, 15vw, 5.4rem);
  line-height: 1;
  color: var(--heading);
  letter-spacing: -0.01em;
}
.counter-plus { font-size: 0.5em; margin-top: 0.14em; color: var(--accent-strong); }
.counter-label {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--meta);
  max-width: 24ch;
}

/* ==========================================================================
   Intertitles (Apresentação) — silent-film title cards, light surface
   ========================================================================== */
.intertitles { background: var(--c-beige-mid); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.intertitle {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px var(--gutter);
  border-bottom: 1px solid var(--hairline);
}
.intertitle-inner {
  max-width: 780px;
  text-align: center;
}
.intertitle-rule {
  display: block;
  width: 46px;
  height: 2px;
  background: var(--c-burgundy);
  margin: 0 auto 26px;
}
.intertitle-inner .intertitle-rule:last-child { margin: 26px auto 0; }
.intertitle-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 115%;
  font-size: clamp(1.4rem, 5vw, 2.1rem);
  line-height: 1.3;
  color: var(--c-ink);
}
.intertitle-caption {
  text-align: center;
  padding: 40px var(--gutter) 60px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gray-warm);
}
.intertitle-caption strong { color: var(--c-ink); font-weight: 700; }

/* ==========================================================================
   Scene — the signature letterbox device (cinematic dark accent)
   ========================================================================== */
.scene {
  position: relative;
  background: var(--c-burgundy-deep);
  --text: var(--c-on-dark);
  --heading: #ffffff;
  --meta: var(--c-gray-on-dark);
  --accent: var(--c-accent-on-dark);
  --accent-strong: var(--c-accent-on-dark-strong);
  --hairline: rgba(242, 231, 226, 0.14);
  --hairline-strong: rgba(242, 231, 226, 0.3);
  --focus-ring: var(--c-accent-on-dark);
  --surface: var(--c-dark-surface);
}
.scene-alt { background: var(--c-dark-surface); }

.scene-photo-wrap { position: relative; height: 118vh; }
.scene-photo-sticky {
  position: sticky;
  top: 0;
  height: 82vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.scene-photo {
  flex: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
}
.scene-bar {
  flex: 0 0 auto;
  background: var(--c-beige);
  color: var(--c-ink);
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 var(--gutter);
}
.scene-bar-top { justify-content: flex-start; }
.scene-bar-bottom { justify-content: flex-end; }
.scene-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scene-meta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.scene-content { padding: 64px 0 88px; }

/* ==========================================================================
   Accordion
   ========================================================================== */
.accordion {
  max-width: 800px;
  margin: 0 auto 40px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 4px 20px;
  overflow: hidden;
}
.accordion-item { border-bottom: 1px solid var(--hairline); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  transition: color 0.25s var(--ease);
}
.accordion-trigger:hover { color: var(--heading); }
.accordion-icon {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.35s var(--ease);
}
.accordion-item.is-open .accordion-icon { transform: rotate(45deg); }
.accordion-item.is-open .accordion-trigger { color: var(--heading); }

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }
.accordion-panel-inner { overflow: hidden; min-height: 0; }
.accordion-panel-inner p,
.accordion-panel-inner ul,
.accordion-panel-inner ol {
  padding-bottom: 16px;
  font-size: 0.92rem;
  color: var(--text);
  opacity: 0.92;
}
.accordion-panel-inner h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--heading);
  margin: 14px 0 4px;
}
.accordion-panel-inner li { margin-bottom: 8px; }
.accordion-panel-inner strong { color: var(--heading); font-weight: 600; }

/* ==========================================================================
   Feature list (Online)
   ========================================================================== */
.feature-list { list-style: none; padding: 0; max-width: var(--measure); margin-bottom: 26px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.95rem;
  color: var(--text);
}
.feature-item:first-child { border-top: 1px solid var(--hairline); }
.icon { flex: 0 0 auto; }
.icon-medium { width: 22px; height: 22px; color: var(--accent); margin-top: 2px; }
.icon-small { width: 18px; height: 18px; color: var(--accent); }

/* ==========================================================================
   Testimonials carousel
   ========================================================================== */
.testimonial-carousel { position: relative; margin-bottom: 24px; }
.testimonial-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 12% 20px 0;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.testimonial-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-slide {
  flex: 0 0 82%;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testimonial-avatar {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}
.testimonial-meta { display: flex; flex-direction: column; gap: 4px; }
.testimonial-meta strong { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--heading); }
.stars { display: flex; gap: 2px; }
.star { width: 13px; height: 13px; }
.testimonial-text { font-size: 0.92rem; color: var(--text); opacity: 0.92; }

.carousel-arrow {
  display: none;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  align-items: center;
  justify-content: center;
  background: var(--c-beige-soft);
  color: var(--text);
  z-index: 2;
}
.carousel-prev { left: -8px; }
.carousel-next { right: -8px; }
.carousel-arrow:hover, .carousel-arrow:focus-visible { border-color: var(--c-burgundy); color: var(--c-burgundy); }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 8px; }
.carousel-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--hairline-strong); transition: background 0.25s var(--ease); }
.carousel-dot.is-active { background: var(--c-burgundy); }

/* ==========================================================================
   Footer / Contato — light surface, burgundy accents
   ========================================================================== */
.footer {
  background: var(--c-beige-mid);
  padding: 72px 0 40px;
  border-top: 1px solid var(--hairline);
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--c-ink);
  margin-bottom: 4px;
}
.footer-role { font-size: 0.85rem; color: var(--c-gray-warm); margin-bottom: 36px; }
.footer-block { margin-bottom: 22px; font-size: 0.92rem; color: var(--c-ink); }
.footer-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-burgundy);
  display: inline-block;
  margin-bottom: 8px;
}
.footer-whatsapp { display: inline-flex; align-items: center; gap: 8px; font-weight: 400; color: var(--c-ink); }
.footer-whatsapp:hover, .footer-whatsapp:focus-visible { color: var(--c-burgundy); }

.footer-crisis {
  max-width: 640px;
  margin: 30px auto;
  padding: 18px 20px;
  border: 1px solid var(--hairline-strong);
  border-left: 3px solid var(--c-burgundy);
  background: rgba(128, 66, 77, 0.08);
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--c-ink);
  text-align: left;
  border-radius: var(--radius-sm);
}

.footer-copy { margin-top: 30px; font-size: 0.76rem; color: var(--c-gray-warm); line-height: 1.8; }
.footer-copy a { text-decoration: underline; text-underline-offset: 2px; }
.footer-copy a:hover, .footer-copy a:focus-visible { color: var(--c-burgundy); }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.whatsapp-float-icon { width: 54px; height: 54px; flex: 0 0 auto; filter: drop-shadow(0 4px 14px rgba(58, 29, 36, 0.35)); }
.whatsapp-float-bubble {
  background: var(--c-beige-soft);
  border: 1px solid var(--hairline-strong);
  color: var(--c-ink);
  font-size: 0.78rem;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.whatsapp-float:hover .whatsapp-float-bubble,
.whatsapp-float:focus-visible .whatsapp-float-bubble { opacity: 1; transform: translateX(0); }

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-photo { animation: none; }
  .hero-scroll-cue span { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .nav-links, .nav-toggle span, .accordion-panel, .accordion-icon,
  .whatsapp-float-bubble, .progress-bar { transition: none; }
}

/* ==========================================================================
   Breakpoint: >= 768px
   ========================================================================== */
@media (min-width: 768px) {
  :root { --gutter: 40px; }
  .section { padding: 120px 0; }

  .nav-toggle { display: none; }
  .nav-links {
    position: static;
    flex-direction: row;
    background: none;
    transform: none;
    gap: 26px;
  }
  .nav-link { font-size: 0.78rem; letter-spacing: 0.05em; }

  /* ---- Hero: switch from full-bleed dark scene to a split, light layout
         with a contained, letterboxed photo frame — fixes the "gigantic
         cropped face" problem for landscape viewports. ---- */
  .hero {
    /* revert to the light page context: text now sits beside the photo,
       not over it, so the dark scrim/on-dark palette is no longer needed */
    --text: var(--c-ink);
    --heading: var(--c-ink);
    --meta: var(--c-gray-warm);
    --accent: var(--c-burgundy);
    --accent-strong: var(--c-burgundy-dark);
    --hairline: rgba(34, 21, 24, 0.12);
    --hairline-strong: rgba(34, 21, 24, 0.24);
    --focus-ring: var(--c-burgundy-dark);

    min-height: auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 56px;
    max-width: 1120px;
    margin: 0 auto;
    padding: calc(var(--nav-h) + 64px) var(--gutter) 80px;
    overflow: visible;
  }
  .hero-scrim { display: none; }
  .hero-media {
    position: relative;
    inset: auto;
    flex: 0 0 auto;
    width: clamp(300px, 34vw, 440px);
    aspect-ratio: 3 / 4;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 70px -28px rgba(58, 29, 36, 0.4);
  }
  .hero-photo { object-position: center 10%; }
  .hero-content { position: static; z-index: auto; max-width: 460px; padding: 0; }
  .hero-scroll-cue { display: none; }

  .counters-grid { grid-template-columns: 1fr 1fr; gap: 60px; }

  .intertitle { min-height: 62vh; }

  /* ---- Scene: contain + reduce the letterbox photo so faces are never
         cropped out at desktop widths (source photos are portrait). ---- */
  .scene-photo-wrap { height: 130vh; max-width: 440px; margin: 0 auto; }
  .scene-photo-sticky {
    height: 74vh;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.25);
  }
  .scene-bar { height: 40px; }
  .scene-label { font-size: 0.78rem; }
  .scene-content { padding: 100px 0 120px; }

  .accordion { padding: 4px 28px; }
  .accordion-trigger { padding: 22px 4px; }

  .testimonial-track { padding: 4px 18% 24px 0; }
  .testimonial-slide { flex-basis: 48%; padding: 32px 28px; }
  .carousel-arrow { display: flex; }

  .footer-crisis { padding: 22px 28px; }
}

/* ==========================================================================
   Breakpoint: >= 1100px
   ========================================================================== */
@media (min-width: 1100px) {
  .hero { gap: 80px; padding: calc(var(--nav-h) + 84px) 0 96px; }
  .hero-quote { font-size: 3rem; }
  .hero-media { width: clamp(340px, 30vw, 480px); }

  .section-text { font-size: 1.05rem; }

  .counter-number { font-size: clamp(4rem, 8vw, 6.4rem); }
  .counter:nth-child(2) { padding-left: 48px; border-left: 1px solid var(--hairline); }

  .intertitle-inner { max-width: 920px; }
  .intertitle-text { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }

  .scene-photo-wrap { height: 148vh; max-width: 480px; }
  .scene-photo-sticky { height: 82vh; }
  .scene-bar { height: 46px; padding: 0 60px; }
  .scene-content { padding: 120px 0 140px; }

  .accordion { max-width: 820px; }
  .accordion-trigger { font-size: 1.05rem; padding: 24px 4px; }

  /* All three cards fit: render as a centered, aligned row */
  .testimonial-slide { flex: 1 1 0; }
  .testimonial-track { padding: 4px 0 24px; cursor: default; }
  .carousel-arrow,
  .carousel-dots { display: none; }
}
