/* D. Sabrina Salon , Sea glass theme. Light-dominant coastal New England.
   Palette: sea-mist #f2f4ea, mist wash #e3e9d6, driftwood ink #2c2620,
   driftwood deep #221d16, sea-glass accent #1d9e72 (one accent only). */

:root {
  --mist: #f2f4ea;
  --mist-deep: #e3e9d6;
  --mist-soft: #eef1e2;
  --drift: #2c2620;
  --drift-deep: #221d16;
  --drift-soft: #4a4238;
  --glass: #1d9e72;
  --glass-deep: #12745c;
  --glass-pale: #cfe6d8;
  --line: rgba(44, 38, 32, 0.16);
  --line-light: rgba(242, 244, 234, 0.22);
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.5vw, 1.44rem);
  --step-2: clamp(1.44rem, 1.25rem + 0.95vw, 1.92rem);
  --step-3: clamp(1.75rem, 1.4rem + 1.75vw, 2.5rem);
  --step-4: clamp(2.3rem, 1.7rem + 3vw, 3.6rem);
  --step-5: clamp(3rem, 1.9rem + 5.5vw, 5.2rem);
  --step-6: clamp(3.4rem, 2rem + 7vw, 6.4rem);
  --pad: clamp(5rem, 10vw, 8.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--mist);
  color: var(--drift);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.6;
  overflow-x: hidden;
}

/* film grain over everything, very subtle */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
}

h1 em, h2 em, .display em {
  font-style: italic;
  font-weight: 500;
  color: var(--glass-deep);
}

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

.wrap {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

section { padding: var(--pad) 0; position: relative; }

/* ---------- section header signature ---------- */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--glass-deep);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--glass);
  flex: none;
}
.sec-head h2 { font-size: var(--step-4); max-width: 16ch; }
.sec-head .lede {
  margin-top: 1rem;
  font-size: var(--step-1);
  color: var(--drift-soft);
  max-width: 56ch;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 244, 234, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.wordmark {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark .dot { color: var(--glass); }
.main-nav { display: flex; gap: 1.6rem; }
.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--drift-soft);
  position: relative;
  padding: 0.2rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--glass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.main-nav a:hover { color: var(--drift); }
.main-nav a:hover::after { transform: scaleX(1); }
.header-call {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
  font-variant-numeric: tabular-nums;
  background: var(--drift);
  color: var(--mist);
  padding: 0.65rem 1.3rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease);
}
.header-call:hover { background: var(--glass-deep); transform: translateY(-2px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 1.9rem;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
  min-height: 52px;
}
.btn-primary {
  background: var(--glass);
  color: var(--drift-deep);
  box-shadow: 0 10px 28px -12px rgba(29, 158, 114, 0.7);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(242, 244, 234, 0.45) 50%, transparent 60%);
  transform: translateX(-110%);
  transition: transform 0.5s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -12px rgba(29, 158, 114, 0.8); }
.btn-primary:hover::before { transform: translateX(110%); }
.btn-ghost {
  border: 2px solid var(--drift);
  color: var(--drift);
  background: transparent;
}
.btn-ghost:hover { background: var(--drift); color: var(--mist); transform: translateY(-3px); }
.btn .num { font-variant-numeric: tabular-nums; letter-spacing: 0.01em; }

/* ---------- hero ---------- */
.hero {
  min-height: min(94vh, 900px);
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  background:
    radial-gradient(52rem 34rem at 88% 8%, rgba(29, 158, 114, 0.14), transparent 62%),
    radial-gradient(44rem 30rem at 4% 92%, rgba(29, 158, 114, 0.10), transparent 60%),
    radial-gradient(30rem 22rem at 55% 45%, rgba(227, 233, 214, 0.9), transparent 70%),
    var(--mist);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(1280px, 100% - 48px);
  margin-inline: auto;
}
.hero .eyebrow { margin-bottom: 1.4rem; }
.hero h1 {
  font-size: var(--step-6);
  margin-bottom: 1.4rem;
}
.hero h1 em { color: var(--glass-deep); }
.mask { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.mask > span { display: inline-block; will-change: transform; }
.hero-sub {
  font-size: var(--step-1);
  color: var(--drift-soft);
  max-width: 44ch;
  margin-bottom: 2.2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  font-size: 0.95rem;
  color: var(--drift-soft);
  border-top: 1px solid var(--line);
  padding-top: 1.3rem;
}
.stars { color: var(--glass-deep); letter-spacing: 0.12em; font-size: 1rem; white-space: nowrap; }
.trust-row strong { color: var(--drift); font-variant-numeric: tabular-nums; }
.trust-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--glass); flex: none; }

.hero-art { position: relative; display: flex; justify-content: center; }
.hero-art svg.curl-hero { width: min(100%, 540px); height: auto; }
.curl-hero .spiral-stroke {
  fill: none;
  stroke: var(--glass);
  stroke-width: 7;
  stroke-linecap: round;
}
.curl-hero .spiral-echo {
  fill: none;
  stroke: var(--glass);
  stroke-width: 2.5;
  stroke-linecap: round;
  opacity: 0.35;
}
.hero-badge {
  position: absolute;
  right: 2%;
  bottom: 6%;
  background: var(--drift);
  color: var(--mist);
  border-radius: 14px;
  padding: 1rem 1.3rem;
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 230px;
  box-shadow: 0 18px 40px -18px rgba(34, 29, 22, 0.55);
}
.hero-badge strong { display: block; font-family: var(--display); font-size: 1.25rem; font-weight: 600; }

/* hero entrance (JS-gated: invisible states only exist under .js) */
.js .hero .mask > span { transform: translateY(112%); }
.js .hero .fade-item { opacity: 0; transform: translateY(14px); }
.js body.loaded .hero .mask > span {
  animation: rise 0.8s var(--ease) forwards;
  animation-delay: var(--w, 0s);
}
.js body.loaded .hero .fade-item {
  animation: fadeUp 0.7s var(--ease) forwards;
  animation-delay: var(--f, 0s);
}
.js .hero-art .spiral-stroke { stroke-dasharray: 1; stroke-dashoffset: 1; }
.js .hero-art .spiral-echo { opacity: 0; }
.js body.loaded .hero-art .spiral-stroke {
  animation: draw 1.8s var(--ease) 0.45s forwards;
}
.js body.loaded .hero-art .spiral-echo {
  animation: fadeUp 1s var(--ease) 1.2s forwards;
}
@keyframes rise { to { transform: translateY(0); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- dividers ---------- */
.wipe {
  height: 8px;
  background: var(--glass);
  transform: scaleX(0);
  transform-origin: left center;
}
.js .wipe.in { animation: wipeIn 1s var(--ease) forwards; }
@keyframes wipeIn { to { transform: scaleX(1); } }

.spiral-divider {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
  background: var(--mist);
}
.spiral-divider.alt { background: var(--mist-deep); }
.spiral-divider svg { width: 150px; height: 150px; }
.spiral-divider path {
  fill: none;
  stroke: var(--glass);
  stroke-width: 6;
  stroke-linecap: round;
  opacity: 0.85;
}
.js .spiral-divider path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.js .spiral-divider.in path { animation: draw 1.6s var(--ease) forwards; }

/* ---------- services ---------- */
.services { background: var(--mist); }
.service-list { margin-top: 3.2rem; border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.6rem;
  align-items: center;
  padding: 1.9rem 1.2rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 0.22s var(--ease), transform 0.22s var(--ease);
  position: relative;
}
.service-row:hover { background: var(--mist-soft); transform: translateX(10px); }
.service-row .idx {
  font-family: var(--display);
  font-style: italic;
  font-size: var(--step-2);
  color: var(--glass-deep);
  width: 3.2rem;
  font-variant-numeric: tabular-nums;
}
.service-row h3 { font-size: var(--step-3); margin-bottom: 0.3rem; }
.service-row p { color: var(--drift-soft); max-width: 52ch; margin: 0; }
.service-row .curl-bullet { width: 64px; height: 64px; flex: none; transition: transform 0.35s var(--ease); }
.service-row:hover .curl-bullet { transform: rotate(100deg); }
.curl-bullet path, .curl-bullet use { fill: none; stroke: var(--glass); stroke-width: 9; stroke-linecap: round; }
.service-note {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--drift-soft);
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}
.service-note .tick { color: var(--glass-deep); font-weight: 700; }
.service-note a { white-space: nowrap; font-weight: 700; color: var(--glass-deep); }

/* ---------- curl specialty band ---------- */
.curl-band { background: var(--mist-deep); }
.curl-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.curl-copy h2 { font-size: var(--step-4); margin-bottom: 1.1rem; }
.curl-copy .lede { font-size: var(--step-1); color: var(--drift-soft); margin-bottom: 2.4rem; max-width: 46ch; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.8rem;
}
.stat .n {
  font-family: var(--display);
  font-size: var(--step-4);
  font-weight: 600;
  color: var(--glass-deep);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat .l { font-size: 0.88rem; color: var(--drift-soft); margin-top: 0.45rem; line-height: 1.45; }
.curl-photo { position: relative; display: flex; justify-content: center; }
.curl-ring { position: relative; width: min(100%, 460px); }
.curl-ring.small {
  position: absolute;
  left: -8%;
  bottom: -4%;
  width: 42%;
  z-index: 2;
}
.curl-ring.small .photo { box-shadow: 0 20px 44px -22px rgba(34, 29, 22, 0.5); }
.curl-ring.small svg.ring path,
.curl-ring.small svg.ring use { stroke-width: 8; }
.curl-ring svg.ring {
  position: absolute;
  inset: -9%;
  width: 118%;
  height: 118%;
  pointer-events: none;
}
.curl-ring svg.ring path,
.curl-ring svg.ring use {
  fill: none;
  stroke: var(--glass);
  stroke-width: 5;
  stroke-linecap: round;
  opacity: 0.9;
}
.js .curl-ring svg.ring path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.js .curl-ring.in svg.ring path { animation: draw 2s var(--ease) forwards; }
.curl-ring .photo {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  background: var(--glass-pale);
  box-shadow: 0 30px 60px -30px rgba(34, 29, 22, 0.45);
}
.photo { position: relative; overflow: hidden; }
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.9) contrast(1.04);
  transition: transform 0.6s var(--ease);
}
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(29, 158, 114, 0.42), rgba(34, 29, 22, 0.38));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.photo:hover img { transform: scale(1.045); }
.curl-caption {
  text-align: center;
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--drift-soft);
  font-style: italic;
  font-family: var(--display);
  font-size: 1.05rem;
}

/* ---------- ken burns band ---------- */
.kenburns {
  padding: 0;
  height: clamp(340px, 52vw, 560px);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.kenburns .kb-bg {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.85) contrast(1.05);
  animation: kb 26s ease-in-out infinite alternate;
}
.kenburns .kb-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 29, 22, 0.62), rgba(29, 158, 114, 0.28));
}
@keyframes kb { from { transform: scale(1); } to { transform: scale(1.12); } }
.kenburns blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 1.5rem;
  font-family: var(--display);
  font-size: var(--step-4);
  font-style: italic;
  color: var(--mist);
  max-width: 22ch;
  text-wrap: balance;
}

/* ---------- process ---------- */
.process { background: var(--mist); }
.steps { margin-top: 3.4rem; position: relative; max-width: 880px; }
.step {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.8rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step:first-child { border-top: 1px solid var(--line); }
.step:nth-child(2) { margin-left: clamp(0rem, 6vw, 5rem); }
.step:nth-child(3) { margin-left: clamp(0rem, 12vw, 10rem); }
.step .snum {
  font-family: var(--display);
  font-size: var(--step-3);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--glass-deep);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  padding-top: 0.2rem;
}
.step h3 { font-size: var(--step-2); margin-bottom: 0.4rem; }
.step p { color: var(--drift-soft); max-width: 52ch; margin: 0; }

/* ---------- reviews ---------- */
.reviews { background: var(--drift-deep); color: var(--mist); }
.reviews .eyebrow { color: var(--glass); }
.reviews .eyebrow::before { background: var(--glass); }
.reviews .sec-head h2 { color: var(--mist); }
.reviews .sec-head h2 em { color: var(--glass); }
.reviews .sec-head .lede { color: rgba(242, 244, 234, 0.72); }
.review-grid {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.big-rating .stars { font-size: 1.6rem; color: var(--glass); }
.big-rating .score {
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 8.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--mist);
  font-variant-numeric: tabular-nums;
}
.big-rating .sub { color: rgba(242, 244, 234, 0.72); margin-top: 0.8rem; max-width: 30ch; }
.platform-rows { border-top: 1px solid var(--line-light); }
.platform-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.5rem 0.4rem;
  border-bottom: 1px solid var(--line-light);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.platform-row:hover { background: rgba(242, 244, 234, 0.05); transform: translateX(8px); }
.platform-row .pname { font-weight: 700; font-size: 1.05rem; }
.platform-row .pname small { display: block; font-weight: 400; color: rgba(242, 244, 234, 0.6); font-size: 0.88rem; }
.platform-row .pstars { color: var(--glass); letter-spacing: 0.1em; font-size: 1.05rem; white-space: nowrap; }
.platform-row .pcount { font-variant-numeric: tabular-nums; color: rgba(242, 244, 234, 0.85); font-size: 0.95rem; white-space: nowrap; }

/* ---------- marquee ---------- */
.marquee-band {
  background: var(--glass);
  color: var(--drift-deep);
  padding: 1.15rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: slide 34s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  padding: 0 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 3.2rem;
}
.marquee-track span::after {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--drift-deep);
  opacity: 0.55;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- faq ---------- */
.faq { background: var(--mist); }
.faq-list { margin-top: 2.8rem; max-width: 860px; }
.faq-list details {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease);
}
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list details[open], .faq-list details:hover { background: var(--mist-soft); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 1rem;
  font-family: var(--display);
  font-size: var(--step-1);
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .plus {
  flex: none;
  width: 2.1rem; height: 2.1rem;
  border: 2px solid var(--glass-deep);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--glass-deep);
  font-family: var(--body);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.faq-list details[open] summary .plus { transform: rotate(45deg); background: var(--glass); border-color: var(--glass); color: var(--drift-deep); }
.faq-list .answer { padding: 0 1rem 1.7rem; color: var(--drift-soft); max-width: 62ch; }
.faq-list .answer a { color: var(--glass-deep); font-weight: 700; }

/* ---------- visit ---------- */
.visit { background: var(--mist-deep); }
.visit-grid {
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.visit-block h3 {
  font-size: var(--step-2);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.visit-block h3 .mini-curl { width: 40px; height: 40px; flex: none; }
.mini-curl path, .mini-curl use { fill: none; stroke: var(--glass-deep); stroke-width: 10; stroke-linecap: round; }
.visit-block address { font-style: normal; font-size: var(--step-1); line-height: 1.7; }
.visit-block .vrow { display: flex; gap: 0.9rem; align-items: baseline; padding: 0.85rem 0; border-bottom: 1px solid var(--line); font-size: var(--step-1); }
.visit-block .vrow .k { font-weight: 700; min-width: 5.2rem; color: var(--glass-deep); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; }
.visit-block a.vlink { text-decoration: none; border-bottom: 2px solid var(--glass); font-variant-numeric: tabular-nums; }
.visit-block a.vlink:hover { background: var(--glass-pale); }
.dir-link {
  display: inline-block;
  margin-top: 1.4rem;
  font-weight: 700;
  color: var(--glass-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--glass);
}
.dir-link:hover { background: var(--glass-pale); }

/* ---------- final cta ---------- */
.final-cta {
  background:
    radial-gradient(40rem 26rem at 50% 0%, rgba(242, 244, 234, 0.16), transparent 65%),
    var(--glass);
  color: var(--drift-deep);
  text-align: center;
  padding: calc(var(--pad) * 1.15) 0;
}
.final-cta .eyebrow { justify-content: center; color: var(--drift-deep); }
.final-cta .eyebrow::before { background: var(--drift-deep); }
.final-cta h2 { font-size: var(--step-5); max-width: 18ch; margin: 0 auto 1.2rem; }
.final-cta h2 em { color: var(--drift-deep); }
.final-cta .cta-sub { font-size: var(--step-1); max-width: 46ch; margin: 0 auto 2.4rem; color: rgba(34, 29, 22, 0.82); }
.final-cta .phone-huge {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 8vw, 5rem);
  letter-spacing: -0.01em;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  margin-bottom: 2rem;
  transition: transform 0.2s var(--ease);
}
.final-cta .phone-huge:hover { transform: scale(1.03); }
.final-cta .btn-primary { background: var(--drift-deep); color: var(--mist); box-shadow: 0 14px 34px -14px rgba(34, 29, 22, 0.7); }
.final-cta .btn-primary::before { background: linear-gradient(105deg, transparent 40%, rgba(29, 158, 114, 0.5) 50%, transparent 60%); }
.final-cta .mini-trust { margin-top: 1.8rem; font-size: 0.95rem; color: rgba(34, 29, 22, 0.75); }

/* ---------- footer ---------- */
footer {
  background: var(--drift-deep);
  color: rgba(242, 244, 234, 0.7);
  padding: 2.6rem 0 7.5rem;
  font-size: 0.92rem;
}
footer .wrap { display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; align-items: baseline; justify-content: space-between; }
footer .fname { font-family: var(--display); font-size: 1.3rem; color: var(--mist); font-weight: 600; }
footer a { color: var(--mist); text-decoration: none; border-bottom: 1px solid rgba(29, 158, 114, 0.7); }
footer .credit { width: 100%; margin-top: 1.2rem; font-size: 0.8rem; color: rgba(242, 244, 234, 0.42); }

/* ---------- sticky mobile call bar ---------- */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  display: none;
  background: rgba(34, 29, 22, 0.96);
  backdrop-filter: blur(8px);
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  gap: 0.7rem;
}
.callbar a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 0.5rem;
  border-radius: 6px;
  font-size: 1rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.callbar .cb-call { background: var(--glass); color: var(--drift-deep); font-variant-numeric: tabular-nums; }
.callbar .cb-menu { border: 2px solid rgba(242, 244, 234, 0.5); color: var(--mist); }

/* ---------- scroll reveals ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(16px); }
.js [data-reveal].in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: var(--d, 0s);
}

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .main-nav { display: none; }
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-art { order: -1; }
  .hero-art svg.curl-hero { width: min(78vw, 380px); }
  .hero-badge { right: 0; bottom: -1rem; max-width: 200px; }
  .curl-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .step:nth-child(2), .step:nth-child(3) { margin-left: 0; }
  .service-row { grid-template-columns: auto 1fr; }
  .service-row .curl-bullet { display: none; }
  .callbar { display: flex; }
  .header-call { font-size: 0.95rem; padding: 0.6rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal],
  .js .hero .mask > span,
  .js .hero .fade-item,
  .js .hero-art .spiral-stroke,
  .js .hero-art .spiral-echo,
  .js .spiral-divider path,
  .js .curl-ring svg.ring path,
  .js .wipe {
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
  .marquee-track, .kenburns .kb-bg { animation: none !important; }
}
