/* ============================================================
   Diane Thomas Massage — spec preview
   Stack A static demo. System fonts only, no CDNs.
   ============================================================ */

:root {
  /* brand */
  --sage:        #5a6b5d;
  --sage-deep:   #3f4d42;
  --sage-dark:   #2c352e;
  --clay:        #bd8a6a;
  --clay-deep:   #a9744f;
  --cream:       #f4efe6;
  --cream-2:     #ece4d6;
  --paper:       #faf7f1;
  --ink:         #2a2b27;
  --ink-soft:    #54564f;
  --line:        rgba(44, 53, 46, 0.14);
  --white:       #ffffff;

  /* type */
  --serif: "Iowan Old Style", "Palatino Linotype", "Palatino", "Cambria", Georgia, "Times New Roman", serif;
  --sans:  ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* fluid type scale */
  --fs-eyebrow: clamp(0.72rem, 0.68rem + 0.2vw, 0.82rem);
  --fs-body:    clamp(1rem, 0.96rem + 0.25vw, 1.12rem);
  --fs-lead:    clamp(1.18rem, 1.05rem + 0.7vw, 1.5rem);
  --fs-h3:      clamp(1.35rem, 1.15rem + 1vw, 1.9rem);
  --fs-h2:      clamp(2rem, 1.5rem + 2.4vw, 3.4rem);
  --fs-h1:      clamp(2.6rem, 1.8rem + 4vw, 5rem);
  --fs-display: clamp(3rem, 2rem + 6vw, 7rem);

  /* space */
  --space-section: clamp(4.5rem, 3rem + 7vw, 9rem);
  --wrap: 1240px;
  --gutter: clamp(1.25rem, 0.6rem + 3vw, 3rem);

  --radius: 4px;
  --radius-lg: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -0.01em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- focus + a11y ---------- */
:focus-visible { outline: 2px solid var(--clay-deep); outline-offset: 3px; border-radius: 2px; }
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--sage-dark); color: var(--cream);
  padding: 0.6rem 1rem; border-radius: var(--radius);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 0.95rem 1.7rem; border-radius: 100px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
              color 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: transform;
}
.btn-lg { padding: 1.1rem 2.1rem; font-size: 1rem; }
.btn-primary { background: var(--clay); color: #fff; box-shadow: 0 10px 24px -14px rgba(169,116,79,0.9); }
.btn-primary:hover { background: var(--clay-deep); transform: translateY(-3px); box-shadow: 0 18px 34px -16px rgba(169,116,79,0.95); }
.btn-ghost { color: var(--cream); border-color: rgba(244,239,230,0.5); }
.btn-ghost:hover { background: rgba(244,239,230,0.12); border-color: var(--cream); transform: translateY(-3px); }
.btn-pill { background: rgba(255,255,255,0.08); color: var(--ink); border-color: var(--line); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: clamp(0.7rem, 0.4rem + 1vw, 1.2rem) 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; }
.brand-mark { height: 40px; width: auto; filter: brightness(0) invert(1); transition: filter 0.4s var(--ease); }
.site-nav { margin-left: auto; display: flex; gap: clamp(1rem, 0.5rem + 1.5vw, 2.2rem); }
.site-nav a {
  font-size: 0.92rem; font-weight: 500; color: var(--cream);
  letter-spacing: 0.02em; position: relative; padding: 0.2rem 0;
  transition: color 0.3s var(--ease);
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: currentColor; transition: width 0.35s var(--ease);
}
.site-nav a:hover::after { width: 100%; }
.header-cta { color: var(--cream); border-color: rgba(244,239,230,0.45); background: rgba(244,239,230,0.06); }
.header-cta:hover { background: rgba(244,239,230,0.16); transform: translateY(-2px); }
.header-cta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 0 rgba(189,138,106,0.6); animation: pulse 2.4s infinite; }

/* scrolled state */
.site-header.scrolled {
  background: rgba(250,247,241,0.92);
  backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px rgba(44,53,46,0.5);
}
.site-header.scrolled .brand-mark { filter: none; }
.site-header.scrolled .site-nav a { color: var(--ink-soft); }
.site-header.scrolled .site-nav a:hover { color: var(--sage-dark); }
.site-header.scrolled .header-cta { color: var(--sage-dark); border-color: var(--line); background: transparent; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(189,138,106,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(189,138,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(189,138,106,0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: clamp(620px, 92svh, 960px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: clamp(6rem, 12vh, 9rem);
  isolation: isolate; color: var(--cream); overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%;
  /* warm duotone: ties the B&W bodywork image to the sage/clay palette */
  filter: sepia(0.5) saturate(1.22) contrast(1.07) brightness(0.86);
  transform: scale(1.12); animation: heroZoom 22s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1.01); } }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    /* vertical: gentle top darken for nav legibility, strong base for the copy */
    linear-gradient(180deg, rgba(22,26,21,0.66) 0%, rgba(22,26,21,0.14) 20%, rgba(22,26,21,0) 40%, rgba(20,24,19,0.52) 62%, rgba(15,19,14,0.96) 100%),
    /* lateral: anchor the lower-left copy column */
    linear-gradient(72deg, rgba(20,24,19,0.92) 0%, rgba(20,24,19,0.5) 34%, rgba(20,24,19,0) 62%),
    /* warm glow upper-right to echo the clay accent */
    radial-gradient(118% 82% at 82% 16%, rgba(189,138,106,0.3), transparent 56%);
}
/* cinematic edge vignette for depth */
.hero-scrim::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 200px 40px rgba(10,13,9,0.55);
  pointer-events: none;
}
/* fine film grain for tactile, non-AI richness */
.hero-grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner { width: 100%; flex: 1 1 auto; display: flex; align-items: flex-end; padding-bottom: clamp(2.6rem, 5vh, 4.2rem); position: relative; }
.hero-copy { max-width: 44rem; position: relative; }
/* a hairline rule rises from the eyebrow, giving the column an editorial anchor */
.hero-copy::before {
  content: ""; position: absolute; left: -1px; top: 0.2rem; bottom: 0.2rem; width: 2px;
  background: linear-gradient(180deg, var(--clay), rgba(189,138,106,0));
  opacity: 0; transform: scaleY(0); transform-origin: top;
  transition: opacity 0.9s var(--ease) 0.2s, transform 1.1s var(--ease) 0.2s;
}
.hero-copy { padding-left: clamp(1.1rem, 2.4vw, 2rem); }
.js .hero-copy.lit::before, .no-js .hero-copy::before { opacity: 1; transform: scaleY(1); }
/* scroll cue, lower-right, tasteful */
.hero-cue {
  position: absolute; right: 0; bottom: clamp(2.6rem, 5vh, 4.2rem);
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.7rem;
  font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(244,239,230,0.66); writing-mode: vertical-rl;
}
.hero-cue .cue-line { width: 1px; height: 46px; background: linear-gradient(180deg, rgba(244,239,230,0.5), rgba(244,239,230,0)); position: relative; overflow: hidden; }
.hero-cue .cue-line::after {
  content: ""; position: absolute; inset: 0; background: var(--clay);
  animation: cueDrop 2.6s var(--ease) infinite;
}
@keyframes cueDrop { 0% { transform: translateY(-100%); } 55%,100% { transform: translateY(100%); } }
@media (max-width: 720px) { .hero-cue { display: none; } }
.eyebrow {
  font-size: var(--fs-eyebrow); font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream); opacity: 0.94;
  display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 1.5rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--clay); }
.hero h1 { margin-bottom: 1.5rem; max-width: 18ch; letter-spacing: -0.018em; }
.hero-lede { font-size: var(--fs-lead); max-width: 37rem; color: rgba(244,239,230,0.9); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.3rem; }
.hero-award {
  margin-top: 2.3rem; display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.02em; color: var(--cream);
  background: rgba(244,239,230,0.07); border: 1px solid rgba(244,239,230,0.22);
  padding: 0.6rem 1.1rem; border-radius: 100px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.badge-star { color: var(--clay); font-size: 1.05em; }
.hero-foot { border-top: 1px solid rgba(244,239,230,0.16); }
.hero-foot-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem 1rem;
  font-size: 0.77rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(244,239,230,0.78); padding: 1.3rem 0 1.6rem;
}
.hero-foot .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--clay); }

/* ============================================================
   INTRO STRIP
   ============================================================ */
.strip { background: var(--sage-dark); color: var(--cream); padding: clamp(3.2rem, 2rem + 4.5vw, 5.4rem) 0; position: relative; }
/* hairline that bleeds from the hero base into the strip */
.strip::before {
  content: ""; position: absolute; left: var(--gutter); right: var(--gutter); top: 0; height: 1px;
  background: linear-gradient(90deg, var(--clay), rgba(189,138,106,0.05) 60%, transparent);
}
.strip-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.strip-lead {
  font-family: var(--serif); font-size: clamp(1.5rem, 1.1rem + 1.7vw, 2.5rem);
  line-height: 1.2; color: var(--cream); text-wrap: balance;
}
.strip-lead::first-line { color: #fff; }
.strip-stats { display: flex; gap: clamp(1.5rem, 4vw, 3rem); }
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num { font-family: var(--serif); font-size: clamp(2rem, 1.4rem + 2vw, 3rem); color: var(--clay); line-height: 1; }
.stat-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,239,230,0.7); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: var(--space-section) 0; background: var(--paper); }
.about-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(3rem, 7vw, 6.5rem); align-items: center;
}
.about-media { position: relative; }
.about-figure {
  overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4/5;
  box-shadow: 0 44px 80px -46px rgba(44,53,46,0.72);
}
/* object-position favours the receiving hand + oil drip, cropping the branded bottle on the right */
.about-figure img { width: 100%; height: 100%; object-fit: cover; object-position: 26% center; transition: transform 1.4s var(--ease); }
.about-media:hover .about-figure img { transform: scale(1.05); }
.about-accent {
  position: absolute; right: clamp(-1rem, -1.6vw, -1.8rem); bottom: clamp(-1.2rem, -2vw, -2rem);
  background: var(--sage-dark); color: var(--cream);
  padding: 1.15rem 1.5rem; border-radius: var(--radius-lg);
  border: 1px solid rgba(244,239,230,0.12);
  box-shadow: 0 26px 48px -28px rgba(44,53,46,0.85);
  display: flex; flex-direction: column; gap: 0.2rem; max-width: 11.5rem;
}
.about-accent-num { font-family: var(--serif); font-size: clamp(2.2rem, 1.6rem + 1.6vw, 2.9rem); color: var(--clay); line-height: 1; }
.about-accent-label { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(244,239,230,0.8); line-height: 1.35; }
.section-kicker {
  font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--clay-deep); display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.1rem;
}
.section-kicker::before { content: ""; width: 26px; height: 1px; background: var(--clay); }
.section-kicker-light { color: var(--clay); }
.about-copy h2 { margin-bottom: 1.3rem; max-width: 14ch; }
.about-copy p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 44ch; }
.cred-list { list-style: none; padding: 0; margin-top: 1.8rem; display: grid; gap: 0.7rem; }
.cred-list li {
  position: relative; padding-left: 1.6rem; font-size: 0.96rem; color: var(--ink);
}
.cred-list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 4px rgba(189,138,106,0.18);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: var(--space-section) 0; background: var(--cream); }
.services-grid {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start;
}
.services-rail { position: sticky; top: clamp(5.5rem, 10vh, 7.5rem); }
.services-rail h2 { margin-bottom: 1rem; max-width: 14ch; }
.services-note { color: var(--ink-soft); max-width: 32ch; margin-bottom: clamp(1.8rem, 3vw, 2.6rem); }
.services-figure {
  overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4/5;
  box-shadow: 0 34px 60px -42px rgba(44,53,46,0.55);
}
.services-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.services-figure:hover img { transform: scale(1.05); }

.service-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.service-row {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.1rem, 3vw, 2.6rem);
  padding: clamp(1.6rem, 3vw, 2.5rem) 0; border-bottom: 1px solid var(--line);
  transition: padding-left 0.45s var(--ease);
}
.service-row:hover { padding-left: 0.7rem; }
.service-no {
  font-family: var(--serif); font-size: clamp(1.5rem, 1.1rem + 1vw, 2.15rem);
  color: var(--clay-deep); line-height: 1; padding-top: 0.12rem;
  transition: color 0.45s var(--ease);
}
.service-row:hover .service-no { color: var(--sage); }
.service-text { max-width: 50ch; }
.service-text h3 { margin-bottom: 0.7rem; }
.service-text p { color: var(--ink-soft); }
.services-cta {
  margin-top: clamp(3rem, 6vw, 5rem); padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between;
}
.services-cta p { font-family: var(--serif); font-size: clamp(1.2rem, 1rem + 1vw, 1.7rem); max-width: 24ch; }

/* ============================================================
   PROOF / TESTIMONIALS
   ============================================================ */
.proof {
  padding: var(--space-section) 0;
  background: var(--sage-deep); color: var(--cream);
  position: relative; overflow: hidden;
}
.proof::before {
  content: ""; position: absolute; top: -20%; right: -10%;
  width: 50vw; height: 50vw; max-width: 640px; max-height: 640px;
  background: radial-gradient(circle, rgba(189,138,106,0.22), transparent 65%);
  pointer-events: none;
}
.proof-head { max-width: 18ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); color: var(--cream); }
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.quote-card {
  background: rgba(244,239,230,0.06);
  border: 1px solid rgba(244,239,230,0.16);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  position: relative;
}
.quote-card::before {
  content: "\201C"; font-family: var(--serif); font-size: 4.5rem; line-height: 0.8;
  color: var(--clay); opacity: 0.6; display: block; margin-bottom: 0.4rem;
}
.quote-card blockquote {
  font-family: var(--serif); font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.32rem);
  line-height: 1.5; color: rgba(244,239,230,0.95);
}
.quote-card figcaption {
  margin-top: 1.4rem; font-family: var(--sans); font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: var(--space-section) 0; background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.contact-copy h2 { margin-bottom: 1.2rem; max-width: 16ch; }
.contact-copy > p { color: var(--ink-soft); max-width: 44ch; }
.contact-facts {
  margin-top: 2.6rem; display: grid; gap: 1.3rem; padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.contact-facts div { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; align-items: start; }
.contact-facts dt { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay-deep); padding-top: 0.15rem; }
.contact-facts dd { color: var(--ink); font-weight: 500; }
.contact-card {
  position: relative; overflow: hidden;
  background: linear-gradient(158deg, var(--sage-deep) 0%, var(--sage-dark) 100%);
  color: var(--cream); border-radius: var(--radius-lg);
  border: 1px solid rgba(244,239,230,0.1);
  padding: clamp(2.2rem, 4vw, 3.2rem);
  box-shadow: 0 44px 84px -50px rgba(44,53,46,0.82);
}
.contact-card::before {
  content: ""; position: absolute; right: -22%; top: -34%;
  width: 75%; height: 85%;
  background: radial-gradient(circle, rgba(189,138,106,0.3), transparent 64%);
  pointer-events: none;
}
.contact-card > * { position: relative; }
.contact-card-kicker {
  font-size: 0.77rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay);
  display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1.4rem;
}
.contact-card-lead {
  font-family: var(--serif); font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  line-height: 1.24; color: var(--cream); margin-bottom: 1.9rem; max-width: 18ch;
}
.contact-card .btn { width: 100%; justify-content: center; }
.contact-card-note { margin-top: 1.1rem; text-align: center; font-size: 0.82rem; letter-spacing: 0.05em; color: rgba(244,239,230,0.7); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--sage-dark); color: var(--cream); padding: clamp(3.5rem, 6vw, 5.5rem) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand img { height: 46px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1.2rem; }
.footer-brand p { color: rgba(244,239,230,0.72); max-width: 38ch; font-size: 0.95rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; align-content: start; justify-content: flex-end; }
.footer-nav a { font-size: 0.92rem; color: rgba(244,239,230,0.82); transition: color 0.3s var(--ease); }
.footer-nav a:hover { color: var(--clay); }
.footer-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding: 1.6rem 0 2rem; margin-top: 1rem;
  border-top: 1px solid rgba(244,239,230,0.14);
  font-size: 0.82rem; color: rgba(244,239,230,0.6); letter-spacing: 0.04em;
}

/* spec footer (mandatory) */
.spec-footer {
  background: #1c211d; color: rgba(244,239,230,0.66);
  text-align: center; font-size: 0.8rem; line-height: 1.6;
  padding: 1.1rem var(--gutter); font-family: var(--sans);
}
.spec-footer a { color: var(--clay); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
/* baseline = visible; only hide once JS confirms it can reveal (no FOUC, no-JS safe) */
.js [data-rv] { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: var(--rv-delay, 0s); }
.js [data-rv].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-rv] { opacity: 1 !important; transform: none !important; }
  .hero-media img { transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .strip-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: clamp(3rem, 8vw, 4.5rem); }
  .about-media { max-width: 30rem; }
  .about-accent { right: auto; left: clamp(1rem, 5vw, 2rem); bottom: -1.4rem; }
  .services-grid { grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 3rem); }
  .services-rail { position: static; }
  .services-figure { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .header-cta { margin-left: auto; }
  .service-row { grid-template-columns: auto 1fr; gap: 1.1rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .services-cta { flex-direction: column; align-items: flex-start; }
  .contact-facts div { grid-template-columns: 1fr; gap: 0.2rem; }
  .strip-stats { flex-wrap: wrap; gap: 1.5rem 2rem; }
}

@media (max-width: 720px) {
  .hero { min-height: clamp(580px, 88svh, 760px); }
  .hero-media img { object-position: 52% 26%; }
  .hero-inner { padding-bottom: clamp(2.2rem, 4vh, 3rem); }
  .hero-copy { padding-left: 0.9rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2.35rem, 1.7rem + 3vw, 2.9rem); max-width: 14ch; }
  .hero-lede { font-size: 1.06rem; line-height: 1.55; }
  .eyebrow { margin-bottom: 1.1rem; }
  .hero-actions { margin-top: 1.9rem; }
}

@media (max-width: 420px) {
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-award { font-size: 0.82rem; }
}
