/* ==========================================================================
   LA ZERWAY — landing page styles
   Mobile-first. Editorial / premium beauty-clinic visual system, built from
   the client's own brand assets: terracotta reception wall, cream/espresso
   ad creatives, Playfair Display display serif + Montserrat sans, and the
   recurring thin arc-line motif that crosses every client photograph.
   ========================================================================== */

:root{
  /* -- colors, sampled from client creatives & IG -- */
  --cream:      #F8F3EB;
  --cream-2:    #F1E7D8;   /* alternate section bg */
  --sand:       #E7D3B4;   /* pill / badge bg */
  --tan:        #C79E6F;   /* mid accent */
  --terracotta: #A85A34;   /* primary brand accent / CTA */
  --terracotta-dark:#873F22;
  --terracotta-tint: rgba(168,90,52,.10);
  --espresso:   #241A13;   /* dark section bg (from ad creative) */
  --espresso-2: #2E2118;
  --ink:        #221A14;   /* body text */
  --ink-soft:   #5C5041;   /* secondary text */
  --white:      #FFFFFF;
  --line:       rgba(34,26,20,.14);
  --line-light: rgba(255,255,255,.18);

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1220px;
  --gutter: 20px;
  --radius-lg: 28px;
  --radius-md: 16px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

@media (min-width:640px){ :root{ --gutter: 32px; } }
@media (min-width:1100px){ :root{ --gutter: 48px; } }

/* ---------- reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; overflow-x:hidden; }
body, h1, h2, h3, p, ul, ol, li, figure{ margin:0; padding:0; }
ul, ol{ list-style:none; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; border:none; background:none; cursor:pointer; }

body{
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

/* prevent any accidental horizontal scroll */
html, body{ max-width:100%; }

.wrap{
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow{ max-width: 760px; }

/* ---------- typography ---------- */
h1, h2, h3{
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 em, h2 em{ font-style: italic; font-weight: 500; color: var(--terracotta); }

h2{ font-size: clamp(1.7rem, 5.2vw, 2.6rem); }
h3{ font-size: clamp(1.05rem, 2.6vw, 1.25rem); font-weight: 600; }

p{ color: var(--ink-soft); }

.eyebrow{
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.eyebrow--light{ color: var(--tan); }

.section-head{ max-width: 640px; margin-bottom: 32px; }
.section-lead{ margin-top: 14px; font-size: 1.02rem; max-width: 56ch; }

.section{ padding-block: 52px; }
@media (min-width:900px){ .section{ padding-block: 84px; } }

/* thin brand-mark divider dropped between two sections that would
   otherwise share the same background and visually run into each other */
.section-divider{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 220px;
  margin-inline: auto;
  padding-block: 6px 0;
}
.section-divider-line{ flex: 1; height: 1px; background: var(--line); }
.section-divider-dot{ width: 7px; height: 7px; border-radius: 50%; background: var(--terracotta); flex-shrink: 0; }

/* alternating rhythm backgrounds. Clinic (full-bleed photo) → Why are both
   dark; Proof sits between them and was dark too, which read as one heavy
   brown block three sections deep — kept light here on purpose to break
   that run up (dark / light / dark instead of dark / dark / dark). */
.benefits{ background: var(--cream-2); }
.proof{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 10% 100%, rgba(168,90,52,.14) 0%, transparent 55%),
    var(--cream-2);
}
.why{
  background:
    radial-gradient(120% 90% at 82% 0%, rgba(168,90,52,.30) 0%, transparent 55%),
    var(--espresso);
  color: var(--white);
}
.why h2, .why h3{ color: var(--white); }
.why p{ color: rgba(255,255,255,.7); }
.audience{ background: var(--cream-2); }
.faq{ background: var(--cream-2); }
.final-cta{
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--espresso) 0%, var(--terracotta-dark) 130%);
  color: var(--white);
  text-align: center;
}
.final-cta h2{ color: var(--white); }

/* ---------- brand arc motif ---------- */
.arc{
  position: absolute;
  pointer-events: none;
  color: var(--tan);
  overflow: visible;
  z-index: 0;
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(168,90,52,.55);
}
.btn-primary:hover{ background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-primary:active{ transform: translateY(0) scale(.97); }

.btn-sm{ padding: 10px 16px; font-size: .76rem; }
@media (min-width:400px){ .btn-sm{ padding: 10px 20px; font-size: .82rem; } }
.btn-lg{ padding: 18px 38px; font-size: 1rem; }

.btn-outline-light{
  border: 1px solid var(--line-light);
  color: var(--white);
  padding: 14px 28px;
}
.btn-outline-light:hover{ background: rgba(255,255,255,.08); }
.btn-outline-light:active{ transform: scale(.97); }

.btn-block{ width: 100%; }

.btn:focus-visible{ outline: 2px solid var(--terracotta-dark); outline-offset: 3px; }
.btn-outline-light:focus-visible{ outline-color: var(--white); }
a:focus-visible, summary:focus-visible{ outline: 2px solid var(--terracotta); outline-offset: 2px; border-radius: 3px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248,243,235,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled{ box-shadow: 0 8px 24px -16px rgba(0,0,0,.25); }
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-block: 14px;
}
.logo{ display:flex; flex-direction:column; line-height:1; flex-shrink:1; min-width:0; }
.logo-main{
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(.8rem, 3.6vw, 1.02rem);
  letter-spacing: .06em;
  color: var(--ink);
  white-space: nowrap;
}
.logo-sub{
  font-size: .56rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 3px;
  white-space: nowrap;
}
.header-actions{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.header-phone{
  display:none;
  font-size:.85rem;
  font-weight:600;
  color: var(--ink-soft);
}
@media (min-width:560px){ .header-phone{ display:inline; } }

/* ==========================================================================
   HERO — asymmetric split, edge-leaning photo, arc motif, word-in headline
   ========================================================================== */
.hero{ position:relative; padding-top: 32px; padding-bottom: 40px; overflow: hidden; }
.hero-grid{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}
.hero-copy{ text-align: left; }

.arc--hero{
  top: -40px;
  right: -120px;
  width: 520px;
  height: 280px;
}

.hero-title{
  font-size: clamp(2.3rem, 9vw, 3.75rem);
  margin-bottom: 18px;
}
.hero-title .word{
  display: inline-block;
  animation: word-in .7s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 100ms + .15s);
}
@keyframes word-in{
  from{ opacity: 0; transform: translateY(16px); }
  to{ opacity: 1; transform: none; }
}
.hero-subtitle{
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 22px;
}
.hero-cta-row{ display:flex; flex-direction:column; align-items:center; gap: 12px; text-align:center; }
.hero-cta-note{ font-size:.8rem; color: var(--ink-soft); }

.hero-media{
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 110px var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 750/900;
  max-height: 560px;
}
.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}
.hero-chip{
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(248,243,235,.92);
  backdrop-filter: blur(6px);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 8px 24px -10px rgba(0,0,0,.25);
}
.hero-chip-dot{
  width: 7px; height:7px; border-radius:50%;
  background: var(--terracotta);
  flex-shrink:0;
}

@media (min-width:900px){
  .hero{ padding-top: 46px; padding-bottom: 68px; }
  .hero-grid{
    grid-template-columns: 1fr .95fr;
    align-items: center;
    gap: 40px;
  }
  .hero-copy{ order:1; }
  .hero-media{
    order:2;
    max-height: 660px;
    margin-right: calc(-1 * var(--gutter));
    border-radius: var(--radius-lg) 0 0 130px;
  }
  .arc--hero{ top: -60px; right: 260px; width: 620px; height: 320px; }
}

/* ==========================================================================
   BENEFITS — asymmetric bento (5 items, exact cell count, no repeats of
   the audience section's list-grid pattern)
   ========================================================================== */
.benefits-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.benefit-card{
  background: var(--cream);
  border-radius: 20px;
  padding: 30px 26px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.benefit-icon{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--terracotta-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon svg{ width: 20px; height: 20px; color: var(--terracotta); }
.benefit-card h3{ font-size: 1.1rem; }
.benefit-card p{ font-size: .92rem; max-width: 46ch; }

.benefit-card--lg{
  background: linear-gradient(155deg, var(--terracotta) 0%, var(--terracotta-dark) 130%);
  color: var(--white);
  justify-content: center;
  padding: 40px 30px;
}
.benefit-card--lg .benefit-icon{ background: rgba(255,255,255,.16); }
.benefit-card--lg .benefit-icon svg{ color: var(--white); }
.benefit-card--lg h3{ color: var(--white); font-size: clamp(1.35rem,2.4vw,1.6rem); }
.benefit-card--lg p{ color: rgba(255,255,255,.82); font-size: 1rem; }

.benefit-card:nth-of-type(3){ background: var(--white); border: 1px solid var(--line); }

@media (min-width:760px){
  .benefits-grid{
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(190px,auto));
    gap: 16px;
  }
  .benefit-card--lg{ grid-column: 1; grid-row: 1 / 3; }
  .benefit-card:nth-of-type(2){ grid-column: 2; grid-row: 1; }
  .benefit-card:nth-of-type(3){ grid-column: 3; grid-row: 1; }
  .benefit-card:nth-of-type(4){ grid-column: 2; grid-row: 2; }
  .benefit-card:nth-of-type(5){ grid-column: 3; grid-row: 2; }
}

/* ==========================================================================
   PROCEDURE — two photographic crops of one source image, offset stagger
   ========================================================================== */
.procedure-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.procedure-card-media{
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
  margin-bottom: 22px;
}
.procedure-card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.crop-venus{ object-position: 20% 42%; }
.crop-mantis{ object-position: 76% 38%; }

.procedure-card-body{
  padding-top: 22px;
  border-top: 2px solid var(--terracotta);
}
.procedure-card-tag{
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.procedure-card p{ font-size: .96rem; }

@media (min-width:760px){
  .procedure-grid{ grid-template-columns: 1fr 1fr; gap: 36px; }
  .procedure-card--offset{ margin-top: 44px; }
}

/* -- procedure: console-detail callout + CTA -- */
.procedure-detail{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding: 18px;
  background: var(--cream-2);
  border-radius: var(--radius-md);
}
.procedure-detail img{
  width: 76px;
  height: 114px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.procedure-detail p{ font-size: .88rem; margin: 0; }
.procedure-cta{ margin-top: 36px; }

/* ==========================================================================
   CLINIC — full-bleed environmental photography (the one true edge-to-edge
   moment on the page), built around the client's own reception wall
   ========================================================================== */
.section-bleed{
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  min-height: clamp(320px, 78vw, 420px);
  display: flex;
  align-items: center;
}
.clinic-media{
  position: absolute;
  inset: 0;
}
.clinic-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.crop-clinic-wide{ object-position: 50% 70%; }
/* NOTE: object-fit:cover's visible source-window is NOT symmetric around
   object-position — a short/wide container (mobile's low section-bleed
   height against a portrait photo) reveals a much taller slice of the
   source than a wide desktop one does, so no single crop position keeps
   the "LA ZERWAY" wall lettering out of frame at every viewport (the
   math doesn't leave room for a safe value on mobile). Fix is a strong,
   near-opaque wash across the WHOLE image rather than only near the
   bottom, so the white heading text stays legible no matter which part
   of the source photo — lettering included — lands under it. */
.clinic-scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(36,26,19,.95) 0%, rgba(36,26,19,.88) 45%, rgba(36,26,19,.66) 100%);
}
.clinic-inner{
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 40px 48px;
  color: var(--white);
  text-align: center;
}
.clinic-inner h2{ color: var(--white); max-width: 14ch; margin-inline: auto; }
.clinic-inner p{ color: rgba(255,255,255,.82); max-width: 46ch; margin-top: 14px; margin-inline: auto; font-size: 1rem; }
.clinic-address{
  margin-top: 24px;
  margin-inline: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.clinic-address .hero-chip-dot{ background: var(--tan); }

/* floating "waiting lounge" accent photo — layered graphic detail on the
   full-bleed clinic banner instead of leaving it a flat single image */
.clinic-accent{
  /* Pinned to the top corner (not beside/behind the vertically-centered
     text) so it never competes with .clinic-inner for the same space —
     text is centered both axes, so anything sharing its band would
     eventually collide with it at some viewport width. */
  display: none;
  position: absolute;
  top: 24px;
  right: 24px;
  bottom: auto;
  width: 18%;
  max-width: 168px;
  aspect-ratio: 3/4;
  border: 6px solid var(--cream);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 22px 44px -16px rgba(0,0,0,.5);
  z-index: 1;
}
.clinic-accent img{ width:100%; height:100%; object-fit:cover; }

@media (min-width:1100px){
  .clinic-accent{ display: block; }
}

@media (min-width:900px){
  .section-bleed{ min-height: 46vh; max-height: 560px; }
  .clinic-inner{ padding-block: 48px 56px; }
}

@media (min-width:1100px){
  .clinic-accent{ top: 32px; right: 5%; width: 16%; }
}

/* ==========================================================================
   PROOF — one dominant real photo + an overlapping accent crop, copy
   integrated into the composition instead of sitting on plain cream.
   ========================================================================== */
.arc--proof{
  top: 8%;
  right: -80px;
  width: 420px;
  height: 240px;
  color: var(--sand);
}
.proof-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.proof-copy p{ color: var(--ink-soft); max-width: 42ch; margin-top: 16px; font-size: 1rem; }
.proof-copy-tag{
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--terracotta);
}

.proof-visual{ position: relative; margin-bottom: 56px; }
.proof-photo{ border-radius: var(--radius-md); overflow: hidden; }
.proof-photo--main{ aspect-ratio: 4 / 4.6; }
.proof-photo--main img{ width:100%; height:100%; object-fit:cover; }
.crop-process{ object-position: 50% 32%; }
.proof-photo--accent{
  position: absolute;
  left: -6%;
  bottom: -12%;
  width: 46%;
  aspect-ratio: 3 / 3.8;
  border: 6px solid var(--espresso);
  box-shadow: 0 22px 44px -16px rgba(0,0,0,.55);
}
.proof-photo--accent img{ width:100%; height:100%; object-fit:cover; }
.crop-rf-closeup{ object-position: 50% 42%; }

@media (min-width:760px){
  .proof-grid{ grid-template-columns: 1fr 1.9fr; gap: 48px; }
  .proof-visual{ margin-bottom: 0; }
  .proof-photo--accent{ left: -10%; bottom: -10%; width: 42%; }
}

/* ==========================================================================
   RESULTS — real client before/after photos
   ========================================================================== */
.results{ position: relative; overflow: hidden; background: var(--cream-2); }
.arc--results{
  top: -30px;
  left: -140px;
  width: 480px;
  height: 260px;
  color: var(--sand);
}
.results-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 6px;
}
.results-photo{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.results-photo img{ width:100%; height:100%; object-fit:cover; }
.results-photo figcaption{
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(36,26,19,.78);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
}
.results-disclaimer{
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-size: .78rem;
  max-width: 56ch;
}
.results-cta{ position: relative; z-index: 1; margin-top: 28px; }

@media (min-width:640px){
  .results-grid{ grid-template-columns: 1fr 1fr; gap: 22px; }
}

/* ==========================================================================
   WHY LA ZERWAY (dark)
   ========================================================================== */
.why-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.why-list{ margin: 30px 0 34px; display:flex; flex-direction:column; gap:22px; }
.why-list li{ padding-left: 20px; border-left: 2px solid var(--terracotta); }
.why-list h3{ font-size: 1.05rem; margin-bottom: 4px; }
.why-list p{ font-size: .92rem; }
.why-media{ border-radius: var(--radius-lg) 110px var(--radius-lg) var(--radius-lg); overflow:hidden; aspect-ratio: 900/1000; }
.why-media img{ width:100%; height:100%; object-fit:cover; }
.crop-signage{ object-position: 55% 32%; }

@media (min-width:900px){
  .why-grid{ grid-template-columns: 1fr .85fr; gap: 52px; }
  .why-media{ aspect-ratio: 900/1100; }
}

/* ==========================================================================
   AUDIENCE — editorial: headline + detail photo on the left, a numbered
   statement list on the right (no cards, thin hairline separators).
   ========================================================================== */
.audience-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.audience-intro{ display: flex; flex-direction: column; gap: 20px; }
.audience-detail{
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 260px;
}
.audience-detail img{ width:100%; height:100%; object-fit:cover; }
.crop-room{ object-position: 50% 28%; }

.audience-list{ display: flex; flex-direction: column; }
.audience-list li{
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
}
.audience-list li:first-child{ border-top: 1px solid var(--line); }
.audience-num{
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--terracotta);
  flex-shrink: 0;
  width: 2.2ch;
}
.audience-list li p{
  font-family: var(--serif);
  font-size: 1.06rem;
  color: var(--ink);
  line-height: 1.4;
}

@media (min-width:760px){
  .audience-layout{ grid-template-columns: .78fr 1fr; gap: 52px; align-items: start; }
  .audience-list li:nth-child(even){ margin-left: 34px; }
}

/* ==========================================================================
   STEPS
   ========================================================================== */
.steps-wrap{ position: relative; }
.steps-list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.arc--steps{
  display: none;
}
.step-num{
  display:block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--terracotta);
  margin-bottom: 6px;
}
@supports (-webkit-text-stroke: 1px var(--terracotta)){
  .step-num{
    color: transparent;
    -webkit-text-stroke: 1px var(--terracotta);
  }
}
.steps-list h3{ margin-bottom: 6px; }
.steps-list p{ font-size: .92rem; max-width: 40ch; }

@media (min-width:760px){
  .steps-list{ grid-template-columns: repeat(3,1fr); gap: 40px; }
  .arc--steps{
    display: block;
    top: -6px;
    left: 8%;
    width: 84%;
    height: 60px;
    color: var(--line);
  }
  .steps-list li{ position: relative; z-index: 1; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list{ display:flex; flex-direction:column; }
.faq-item{
  border-bottom: 1px solid var(--line);
  padding-block: 20px;
}
.faq-item summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content: "+";
  flex-shrink:0;
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--terracotta);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after{ content:"\2212"; }
.faq-answer{ padding-top: 12px; max-width: 62ch; }
.faq-answer p{ font-size: .95rem; }
.faq-cta{
  margin-top: 26px;
  font-size: .95rem;
  text-align: center;
}
.faq-cta a{
  color: var(--terracotta);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-cta a:hover{ color: var(--terracotta-dark); }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.arc--final{
  bottom: -80px;
  left: -140px;
  width: 560px;
  height: 300px;
  color: rgba(255,255,255,.14);
  transform: scaleY(-1);
}
.final-cta-inner{ position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; padding-block: 12px; }
.final-cta-sub{ color: rgba(255,255,255,.75); max-width: 46ch; margin: 16px 0 30px; font-size: 1.02rem; }
.final-cta-phone{
  display:block;
  margin-top: 18px;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background: var(--espresso); color: rgba(255,255,255,.7); padding-block: 40px; }
.footer-inner{
  display:flex;
  flex-direction:column;
  gap: 22px;
}
.site-footer .logo-main{ color: var(--white); }
.footer-meta{ display:flex; flex-direction:column; gap:6px; font-size:.85rem; }
.footer-meta a:hover{ color: var(--tan); }
.footer-social{ display:flex; gap:16px; margin-top:4px; }
.footer-social a{ font-weight:600; }
.footer-legal{ display:flex; flex-direction:column; gap:6px; font-size:.85rem; }
.footer-legal a:hover{ color: var(--tan); }

@media (min-width:640px){
  .footer-inner{ flex-direction:row; align-items:flex-start; justify-content:space-between; gap:32px; }
  .footer-legal{ align-items:flex-end; text-align:right; }
}

.footer-copy{
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  font-size: .76rem;
  color: rgba(255,255,255,.4);
}

/* ==========================================================================
   MOBILE STICKY CTA
   ========================================================================== */
.sticky-cta{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(248,243,235,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px -12px rgba(0,0,0,.2);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.sticky-cta.is-hidden{ transform: translateY(110%); opacity:0; }
body{ padding-bottom: 78px; }

@media (min-width:900px){
  .sticky-cta{ display:none; }
  body{ padding-bottom: 0; }
}

/* ==========================================================================
   REVEAL-ON-SCROLL
   ========================================================================== */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* Photography gets a gentle scale-settle instead of the generic fade-up
   used for text blocks. IMPORTANT: the base state is always fully opaque
   and unclipped — the image/section must be visible with zero JS. The
   scale-in is a pure enhancement layered on top when IntersectionObserver
   confirms the element scrolled into view; if JS never runs, the image
   just sits at its resting scale(1) and nothing is ever hidden. */
.reveal.reveal-mask{
  opacity: 1;
  transform: none;
}
.reveal.reveal-mask img{ transform: scale(1); transition: transform 1s var(--ease); }
.reveal.reveal-mask:not(.is-visible) img{ transform: scale(1.04); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .reveal.reveal-mask img{ transform:none; transition:none; }
  .hero-title .word{ animation:none; opacity:1; transform:none; }
  .btn{ transition:none; }
}

/* ==========================================================================
   POLICY PAGES — Privacy Policy / Public Offer: plain, readable legal text
   using the same type system, kept out of the animated .reveal system so
   it's never dependent on JS to be visible.
   ========================================================================== */
.policy-hero{ padding-block: 44px 8px; }
.policy-hero .eyebrow{ margin-bottom: 10px; }
.policy-hero h1{ font-size: clamp(1.6rem, 5vw, 2.3rem); }
.policy-updated{ margin-top: 10px; font-size: .85rem; color: var(--ink-soft); }

.policy-body{ padding-block: 8px 60px; max-width: 760px; margin-inline: auto; }
.policy-body h2{
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 40px;
  margin-bottom: 12px;
}
.policy-body h2:first-of-type{ margin-top: 8px; }
.policy-body p{ font-size: .96rem; margin-bottom: 14px; }
.policy-body ul{ margin: 0 0 14px; padding-left: 0; }
.policy-body ul li{
  position: relative;
  padding-left: 22px;
  font-size: .96rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.policy-body ul li::before{
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}
.policy-body strong{ color: var(--ink); }
.policy-body a{ color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.policy-body a:hover{ color: var(--terracotta-dark); }

.policy-requisites{
  margin-top: 8px;
  padding: 22px 24px;
  background: var(--cream-2);
  border-radius: var(--radius-md);
}
.policy-requisites dl{ display: grid; grid-template-columns: 1fr; gap: 14px; margin: 0; }
.policy-requisites dt{ font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); }
.policy-requisites dd{ margin: 2px 0 0; font-size: .95rem; font-weight: 600; color: var(--ink); }
@media (min-width:640px){
  .policy-requisites dl{ grid-template-columns: 1fr 1fr; column-gap: 24px; }
}

.policy-back{
  display: inline-block;
  margin-top: 30px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--terracotta);
}
.policy-back:hover{ color: var(--terracotta-dark); }
