/* ============================================================
   Elevated Details — Spec preview by Woodcrest Marketing
   Eco mobile auto detailing, Northern Colorado
   ============================================================ */

:root {
  /* Brand palette */
  --ink:        #14231c;
  --pine:       #1f4535;
  --pine-deep:  #12261e;
  --moss:       #3f7d5f;
  --sage:       #9cc4ac;
  --cream:      #f6f2e9;
  --sand:       #ece3d3;
  --sand-deep:  #ddd0b8;
  --brass:      #b8894a;
  --brass-soft: #cba468;
  --paper:      #fbf9f3;
  --line:       rgba(20, 35, 28, 0.12);

  /* Type */
  --font-display: "Hoefler Text", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: 0.8rem;
  --fs-body:  clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
  --fs-lede:  clamp(1.1rem, 1rem + 0.6vw, 1.4rem);
  --fs-h3:    clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem);
  --fs-h2:    clamp(2rem, 1.5rem + 2.3vw, 3.4rem);
  --fs-hero:  clamp(2.55rem, 1.9rem + 3.35vw, 4.7rem);

  /* Spacing */
  --space-section: clamp(4.5rem, 3rem + 6vw, 8rem);
  --container: 1220px;
  --gutter: clamp(1.5rem, 1rem + 3vw, 5rem);
  --radius: 18px;
  --radius-sm: 12px;

  --shadow-sm: 0 2px 10px rgba(18, 38, 30, 0.06);
  --shadow-md: 0 22px 50px -24px rgba(18, 38, 30, 0.35);
  --shadow-lg: 0 40px 90px -40px rgba(18, 38, 30, 0.5);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-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 { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
ul { list-style: none; padding: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--pine); color: var(--cream);
  padding: 0.75rem 1.25rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.section-kicker {
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--brass);
  margin-bottom: 1.1rem;
}
.section-kicker.light { color: var(--brass-soft); }
.section-title {
  font-size: var(--fs-h2);
  line-height: 1.14;
  max-width: 17ch;
  margin-bottom: 1.4rem;
  text-wrap: balance;
}
.section-title.light { color: var(--cream); }
.section-title.center { margin-inline: auto; text-align: center; max-width: 20ch; }
.lede { font-size: var(--fs-lede); line-height: 1.5; color: color-mix(in srgb, var(--ink) 82%, transparent); margin-bottom: 1.3rem; }

:where(a, button):focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: var(--btn-pad-y) 1.5rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 650;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.35s cubic-bezier(0.2,0.7,0.2,1), background-color 0.3s, color 0.3s, box-shadow 0.35s, border-color 0.3s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; opacity: 0.85; }
.btn-solid { background: var(--brass); color: #1c1206; box-shadow: var(--shadow-md); }
.btn-solid:hover { background: var(--brass-soft); box-shadow: var(--shadow-lg); }
.btn-line { border-color: color-mix(in srgb, var(--ink) 30%, transparent); color: var(--ink); }
.btn-line:hover { border-color: var(--ink); background: color-mix(in srgb, var(--ink) 5%, transparent); }
.hero .btn-line, .contact .btn-line { border-color: rgba(246,242,233,0.4); color: var(--cream); }
.hero .btn-line:hover, .contact .btn-line:hover { border-color: var(--cream); background: rgba(246,242,233,0.08); }
.btn-ghost { border-color: color-mix(in srgb, var(--ink) 22%, transparent); color: var(--ink); padding: 0.6rem 1.15rem; font-size: 0.9rem; }
.btn-ghost:hover { border-color: var(--ink); }
.btn.lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn.full { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1.1rem;
  transition: background-color 0.4s, box-shadow 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.7rem;
}
/* At the top of the page the header sits on the dark hero: use light ink. */
.site-header:not(.scrolled) .brand-name { color: var(--cream); }
.site-header:not(.scrolled) .brand-mark { background: rgba(246,242,233,0.12); color: var(--sage); }
.site-header:not(.scrolled) .site-nav a { color: color-mix(in srgb, var(--cream) 82%, transparent); }
.site-header:not(.scrolled) .site-nav a:hover { color: var(--cream); }
.site-header:not(.scrolled) .header-cta {
  border-color: rgba(246,242,233,0.4); color: var(--cream);
}
.site-header:not(.scrolled) .header-cta:hover { border-color: var(--cream); background: rgba(246,242,233,0.08); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--pine); color: var(--sage);
  flex: none;
  transition: transform 0.4s, background-color 0.4s, color 0.4s;
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); }
.site-header.scrolled .brand-mark { background: var(--pine); }
.brand-word { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--ink); }
.brand-sub { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--brass); font-weight: 700; }
.site-nav { margin-left: auto; display: flex; gap: 1.9rem; }
.site-nav a {
  font-size: 0.92rem; font-weight: 550; color: color-mix(in srgb, var(--ink) 78%, transparent);
  position: relative; padding-block: 0.2rem;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--brass); transition: width 0.3s ease;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { width: 100%; }
.header-cta { margin-left: 0; }
.cta-short { display: none; }

@media (max-width: 860px) {
  .site-nav { display: none; }
  .header-cta { margin-left: auto; }
}
@media (max-width: 460px) {
  .header-inner { gap: 0.9rem; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
  .header-cta { padding-inline: 0.9rem; }
  .brand-sub { font-size: 0.6rem; letter-spacing: 0.16em; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--cream);
  padding-top: clamp(8rem, 6rem + 10vw, 12rem);
  padding-bottom: var(--space-section);
  background:
    radial-gradient(120% 120% at 85% -10%, #2c5a44 0%, transparent 55%),
    radial-gradient(100% 100% at 0% 110%, #16342a 0%, transparent 60%),
    linear-gradient(160deg, #204736 0%, #14281f 100%);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; }
.orb-1 { width: 46vw; height: 46vw; top: -14%; right: -8%; background: radial-gradient(circle, rgba(184,137,74,0.55), transparent 68%); }
.orb-2 { width: 40vw; height: 40vw; bottom: -18%; left: -12%; background: radial-gradient(circle, rgba(63,125,95,0.65), transparent 66%); }
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(246,242,233,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,242,233,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 40%, transparent 85%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}
.hero-copy { max-width: 42rem; min-width: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: var(--fs-eyebrow); text-transform: uppercase; letter-spacing: 0.24em;
  font-weight: 700; color: var(--sage); margin-bottom: 1.6rem;
}
.eyebrow-line { width: 46px; height: 1.5px; background: var(--brass); display: inline-block; }
.hero-title {
  font-size: var(--fs-hero);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
  text-wrap: balance;
}
.hero-lead {
  font-size: var(--fs-lede);
  line-height: 1.5;
  max-width: 46ch;
  color: color-mix(in srgb, var(--cream) 84%, transparent);
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.2rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(246,242,233,0.16);
  padding-top: 1.8rem;
}
.hero-meta li { display: flex; flex-direction: column; gap: 0.15rem; }
.meta-num {
  font-family: var(--font-display); font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); font-weight: 600;
  color: var(--cream); display: inline-flex; align-items: baseline; gap: 0.2rem;
}
.meta-star { color: var(--brass-soft); font-size: 0.85em; }
.meta-label { font-size: 0.82rem; letter-spacing: 0.02em; color: var(--sage); }

/* Hero visual card ("showroom shine") */
.hero-card {
  position: relative;
  align-self: center;
  padding: 0.9rem;
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(246,242,233,0.14), rgba(246,242,233,0.03));
  border: 1px solid rgba(246,242,233,0.16);
  box-shadow: var(--shadow-lg);
}
.hero-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(246,242,233,0.22);
}
.gloss-scene {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(140% 70% at 50% 118%, #1c4132 0%, transparent 62%),
    linear-gradient(178deg, #0c1e17 0%, #10261d 46%, #06120d 100%);
}
/* Reflected sky/tree line across the top of the "paint" — sells a glossy surface. */
.gloss-sky {
  position: absolute; left: 0; right: 0; top: 0; height: 52%;
  pointer-events: none;
  background:
    radial-gradient(90% 120% at 24% -10%, rgba(156,196,172,0.28), transparent 60%),
    radial-gradient(70% 120% at 82% -20%, rgba(203,164,104,0.20), transparent 62%),
    linear-gradient(180deg, rgba(246,242,233,0.10) 0%, transparent 96%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
}
/* The curved car body: a big soft ellipse of lit paint with a bright fender edge. */
.gloss-body {
  position: absolute; left: -18%; right: -18%; bottom: -34%; height: 92%;
  border-radius: 50% 50% 44% 44% / 62% 62% 40% 40%;
  background:
    radial-gradient(120% 90% at 40% 8%, rgba(246,242,233,0.32), transparent 46%),
    linear-gradient(180deg, #2f6a4f 0%, #1c4635 40%, #0a1d15 100%);
  box-shadow:
    inset 0 2px 0 rgba(246,242,233,0.5),
    inset 0 24px 40px -20px rgba(246,242,233,0.35),
    0 -12px 40px -18px rgba(4,12,8,0.7);
}
/* Warm floor bounce grounding the paint. */
.gloss-scene::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 44%;
  pointer-events: none; z-index: 1;
  background: linear-gradient(to top, rgba(4,12,8,0.72), transparent);
}
/* Moving specular streak sweeping across the wet paint. */
.gloss-arc {
  position: absolute; top: -30%; left: -20%; width: 46%; height: 160%; z-index: 2;
  background: linear-gradient(102deg,
    transparent 0%,
    rgba(246,242,233,0.12) 40%,
    rgba(246,242,233,0.55) 50%,
    rgba(203,164,104,0.42) 56%,
    transparent 74%);
  filter: blur(3px);
  transform: translateX(0) skewX(-11deg);
  animation: sweep 7.5s ease-in-out infinite;
}
/* Beaded water droplets catching the light on the fresh finish. */
.bead {
  position: absolute; z-index: 2; border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(246,242,233,0.95), rgba(180,210,192,0.35) 42%, rgba(6,18,13,0.55) 78%);
  box-shadow: 0 1px 2px rgba(4,12,8,0.55), inset 0 -1px 2px rgba(4,12,8,0.4);
}
.bead::after {
  content: ""; position: absolute; top: 16%; left: 22%;
  width: 26%; height: 26%; border-radius: 50%;
  background: rgba(255,255,255,0.9); filter: blur(0.4px);
}
.bead.b1 { width: 16px; height: 16px; top: 30%; left: 22%; }
.bead.b2 { width: 10px; height: 10px; top: 44%; left: 40%; opacity: 0.9; }
.bead.b3 { width: 22px; height: 22px; top: 52%; left: 66%; }
.bead.b4 { width: 8px;  height: 8px;  top: 34%; left: 74%; opacity: 0.85; }
.bead.b5 { width: 13px; height: 13px; top: 63%; left: 30%; opacity: 0.92; }
.bead.b6 { width: 7px;  height: 7px;  top: 58%; left: 52%; opacity: 0.8; }
@keyframes sweep {
  0%, 100% { transform: translateX(-30%) skewX(-9deg); opacity: 0.55; }
  50% { transform: translateX(230%) skewX(-9deg); opacity: 0.95; }
}
.hero-steam {
  position: absolute; bottom: -14%; border-radius: 50%; z-index: 2;
  background: radial-gradient(circle, rgba(246,242,233,0.45), transparent 70%);
  filter: blur(16px); opacity: 0;
  animation: rise 7s ease-in-out infinite;
}
.hero-steam.hs1 { width: 110px; height: 110px; left: 20%; animation-delay: 0.4s; }
.hero-steam.hs2 { width: 80px; height: 80px; left: 50%; animation-delay: 2s; }
.hero-steam.hs3 { width: 64px; height: 64px; left: 70%; animation-delay: 3.6s; }
.hero-card-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.22em; font-weight: 700;
  color: var(--cream);
  background: rgba(12,30,23,0.55);
  border: 1px solid rgba(203,164,104,0.45);
  padding: 0.4rem 0.8rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hero-card-caption {
  position: absolute; left: 1.2rem; bottom: 1.2rem; z-index: 2;
  display: flex; flex-direction: column; gap: 0.1rem;
}
.hero-card-caption strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); line-height: 1.05;
  color: var(--cream);
}
.hero-card-caption span { font-size: 0.85rem; letter-spacing: 0.02em; color: var(--sage); }
.hero-card-note {
  display: flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em;
  font-weight: 650; color: var(--brass-soft);
  padding: 0.95rem 0.6rem 0.35rem;
}
.note-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--moss);
  box-shadow: 0 0 0 0 rgba(63,125,95,0.6);
  animation: notePulse 2.6s ease-out infinite;
}
@keyframes notePulse {
  0% { box-shadow: 0 0 0 0 rgba(63,125,95,0.55); }
  70%, 100% { box-shadow: 0 0 0 7px rgba(63,125,95,0); }
}

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--brass);
  color: #1c1206;
  overflow: hidden;
  border-block: 1px solid rgba(28,18,6,0.15);
}
.strip-track {
  display: inline-flex; align-items: center; gap: 1.4rem;
  white-space: nowrap;
  padding-block: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  animation: marquee 26s linear infinite;
}
.strip-track .dot { opacity: 0.5; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about { padding-block: var(--space-section); background: var(--paper); }
.about-grid {
  display: grid; grid-template-columns: 1.25fr 0.9fr; gap: clamp(2.5rem, 4vw, 5.5rem);
  align-items: start;
}
.about-copy p { color: color-mix(in srgb, var(--ink) 80%, transparent); margin-bottom: 1.1rem; }
.about-assure {
  display: grid; gap: 0.85rem;
  margin-top: 2rem; padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.about-assure li {
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 0.98rem; color: color-mix(in srgb, var(--ink) 78%, transparent);
}
.about-assure strong { color: var(--pine); font-weight: 650; }
.assure-ico {
  flex: none; display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--cream); border: 1px solid var(--sand-deep);
  color: var(--moss);
}
.about-panel {
  background: var(--pine);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 1rem + 2vw, 2.6rem);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 1.6rem;
  position: relative; top: 0.5rem;
}
.panel-row { display: flex; gap: 1.1rem; align-items: flex-start; }
.panel-row + .panel-row { border-top: 1px solid rgba(246,242,233,0.14); padding-top: 1.5rem; }
.panel-num {
  font-family: var(--font-display); font-size: 1.2rem; color: var(--brass-soft);
  border: 1.5px solid rgba(203,164,104,0.5); border-radius: 50%;
  width: 44px; height: 44px; display: grid; place-items: center; flex: none;
}
.panel-row h3 { font-size: 1.15rem; margin-bottom: 0.25rem; color: var(--cream); }
.panel-row p { font-size: 0.94rem; color: color-mix(in srgb, var(--cream) 78%, transparent); line-height: 1.5; }

/* ---------- Services ---------- */
.services {
  padding-block: var(--space-section);
  background: var(--pine-deep);
  color: var(--cream);
  position: relative;
}
.services::before, .contact::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(203,164,104,0.5), transparent);
}
.services-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.services-head-main { max-width: none; }
.services-head .section-title { margin-bottom: 0; max-width: 15ch; }
.services-intro {
  color: color-mix(in srgb, var(--cream) 76%, transparent);
  font-size: 1.08rem; max-width: 42ch;
  padding-bottom: 0.35rem;
  border-left: 2px solid rgba(203,164,104,0.4);
  padding-left: 1.4rem;
}
.service-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.service-card {
  background: color-mix(in srgb, var(--cream) 6%, transparent);
  border: 1px solid rgba(246,242,233,0.13);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1rem + 1.5vw, 2.2rem);
  display: flex; flex-direction: column;
  min-height: 100%;
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), background-color 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  background: color-mix(in srgb, var(--cream) 10%, transparent);
  border-color: rgba(203,164,104,0.55);
  box-shadow: var(--shadow-lg);
}
.service-index {
  font-family: var(--font-display); font-size: 0.95rem; color: var(--brass-soft);
  letter-spacing: 0.1em; margin-bottom: 1.4rem;
}
.service-card h3 { font-size: var(--fs-h3); color: var(--cream); margin-bottom: 0.7rem; line-height: 1.15; }
.service-card p { font-size: 0.96rem; color: color-mix(in srgb, var(--cream) 74%, transparent); line-height: 1.55; margin-bottom: 1.4rem; }
.service-tag {
  margin-top: auto; align-self: flex-start;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700;
  color: var(--sage); border: 1px solid rgba(156,196,172,0.35);
  padding: 0.35rem 0.75rem; border-radius: 999px;
}
.service-card--accent { background: linear-gradient(155deg, rgba(184,137,74,0.28), rgba(63,125,95,0.14)); border-color: rgba(203,164,104,0.4); }
.service-card--accent .service-tag { color: var(--brass-soft); border-color: rgba(203,164,104,0.5); }
.services-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  margin-top: clamp(2.2rem, 3vw, 3rem);
  padding-top: clamp(2rem, 3vw, 2.8rem);
  border-top: 1px solid rgba(246,242,233,0.14);
}
.services-foot p { font-family: var(--font-display); font-size: clamp(1.1rem, 0.95rem + 0.8vw, 1.5rem); color: color-mix(in srgb, var(--cream) 90%, transparent); max-width: 30ch; line-height: 1.3; }

/* ---------- Why steam ---------- */
.why { padding-block: var(--space-section); background: var(--cream); }
.why-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
}
.why-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 90% at 30% 20%, #2c5a44 0%, transparent 60%),
    linear-gradient(160deg, var(--pine) 0%, var(--pine-deep) 100%);
  display: grid; place-content: center; text-align: center;
  overflow: hidden; box-shadow: var(--shadow-md);
  color: var(--cream);
  padding: 2rem;
}
.why-stat { position: relative; z-index: 2; }
.why-big { font-family: var(--font-display); font-size: clamp(6rem, 4rem + 12vw, 11rem); line-height: 0.9; color: var(--brass-soft); display: block; }
.why-small { display: block; margin-top: 1rem; font-size: 0.95rem; letter-spacing: 0.02em; color: var(--sage); max-width: 18ch; margin-inline: auto; }
.why-steam {
  position: absolute; bottom: -10%; border-radius: 50%;
  background: radial-gradient(circle, rgba(246,242,233,0.4), transparent 70%);
  filter: blur(18px); opacity: 0.5;
  animation: rise 7s ease-in-out infinite;
}
.why-steam.s1 { width: 120px; height: 120px; left: 18%; animation-delay: 0s; }
.why-steam.s2 { width: 90px; height: 90px; left: 52%; animation-delay: 1.6s; }
.why-steam.s3 { width: 70px; height: 70px; left: 72%; animation-delay: 3.1s; }
@keyframes rise {
  0% { transform: translateY(30px) scale(0.9); opacity: 0; }
  40% { opacity: 0.5; }
  100% { transform: translateY(-120px) scale(1.3); opacity: 0; }
}
.why-list { display: flex; flex-direction: column; gap: 1.6rem; margin-top: 0.5rem; }
.why-list li {
  display: grid; gap: 0.35rem;
  padding-left: 1.5rem; position: relative;
  border-left: 2px solid var(--sand-deep);
}
.why-list li::before { content: ""; position: absolute; left: -6px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--brass); }
.why-key { font-family: var(--font-display); font-size: 1.2rem; color: var(--pine); }
.why-val { color: color-mix(in srgb, var(--ink) 78%, transparent); font-size: 1rem; }

/* ---------- Proof ---------- */
.proof {
  padding-block: var(--space-section);
  background: var(--pine);
  color: var(--cream);
}
.proof .section-title { margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.proof-item {
  text-align: center;
  padding: clamp(1.5rem, 1rem + 1.5vw, 2.4rem) 1rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--cream) 6%, transparent);
  border: 1px solid rgba(246,242,233,0.12);
}
.proof-num {
  font-family: var(--font-display); font-size: clamp(2.2rem, 1.6rem + 2.5vw, 3.4rem); font-weight: 600;
  color: var(--brass-soft); display: inline-flex; align-items: baseline; gap: 0.15rem;
}
.proof-star { font-size: 0.5em; }
.proof-label { display: block; margin-top: 0.6rem; font-size: 0.85rem; letter-spacing: 0.03em; color: var(--sage); }

/* ---------- Service area ---------- */
.area { padding-block: var(--space-section); background: var(--paper); }
.area-grid { display: grid; grid-template-columns: 1.2fr 0.85fr; gap: clamp(2.5rem, 4vw, 5rem); align-items: center; }
.area-pills { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.area-pills li {
  border: 1.5px solid var(--sand-deep);
  border-radius: 999px; padding: 0.5rem 1.1rem;
  font-size: 0.9rem; font-weight: 550; color: var(--pine);
  background: var(--cream);
  transition: border-color 0.3s, background-color 0.3s, transform 0.3s;
}
.area-pills li:hover { border-color: var(--brass); background: #fff; transform: translateY(-2px); }
.area-card {
  background: var(--pine);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 1.2rem + 2vw, 2.6rem);
  box-shadow: var(--shadow-md);
}
.area-card-kicker { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--brass-soft); font-weight: 700; }
.area-card-place { font-family: var(--font-display); font-size: 1.7rem; margin-top: 0.4rem; margin-bottom: 0.3rem; }
.area-card-addr { color: var(--sage); font-size: 0.95rem; margin-bottom: 1.6rem; }
.area-card-hours { border-top: 1px solid rgba(246,242,233,0.16); padding-top: 1.3rem; margin-bottom: 1.6rem; display: grid; gap: 0.2rem; }
.hours-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--brass-soft); font-weight: 700; }
.hours-val { font-size: 1rem; color: var(--cream); }

/* ---------- Contact ---------- */
.contact {
  padding-block: var(--space-section);
  background: linear-gradient(160deg, #16342a 0%, #0f221b 100%);
  color: var(--cream);
  position: relative; overflow: hidden; isolation: isolate;
}
.contact-inner { position: relative; text-align: center; max-width: 44rem; margin-inline: auto; }
.contact-bg { position: absolute; inset: -40% -10% auto; z-index: -1; }
.orb-3 { width: 60vw; height: 60vw; margin-inline: auto; position: relative; background: radial-gradient(circle, rgba(184,137,74,0.35), transparent 62%); filter: blur(60px); }
.contact-title { font-size: var(--fs-h2); line-height: 1.1; margin-bottom: 1.3rem; text-wrap: balance; }
.contact-lead { font-size: var(--fs-lede); color: color-mix(in srgb, var(--cream) 82%, transparent); margin-bottom: 2.4rem; max-width: 42ch; margin-inline: auto; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding-top: clamp(3.5rem, 3rem + 3vw, 5rem); }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
}
.footer-brand .brand-name { color: var(--cream); font-size: 1.4rem; display: block; margin-bottom: 0.8rem; }
.footer-brand p { color: color-mix(in srgb, var(--cream) 62%, transparent); font-size: 0.95rem; max-width: 40ch; }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-head { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--brass-soft); font-weight: 700; margin-bottom: 0.3rem; }
.footer-col a, .footer-plain { color: color-mix(in srgb, var(--cream) 70%, transparent); font-size: 0.95rem; }
.footer-col a { transition: color 0.25s; }
.footer-col a:hover { color: var(--brass-soft); }
.footer-base {
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between;
  border-top: 1px solid rgba(246,242,233,0.12);
  padding-block: 1.5rem;
  font-size: 0.82rem; color: color-mix(in srgb, var(--cream) 55%, transparent);
}
.footer-tag { letter-spacing: 0.02em; }

/* ---------- Spec footer (mandatory) ---------- */
.spec-footer {
  background: #0b1712;
  color: #7d9488;
  font-size: 0.82rem;
  text-align: center;
  padding: 1.5rem var(--gutter);
  line-height: 1.6;
}
.spec-footer a { color: var(--brass-soft); text-decoration: underline; }

/* ---------- Reveal animation ---------- */
/* Default (no-JS): fully visible. JS adds .js-ready to enable the hidden start. */
.reveal { transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2,0.7,0.2,1); }
.js-ready .reveal { opacity: 0; transform: translateY(26px); }
.js-ready .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal { opacity: 1 !important; transform: none !important; }
  .strip-track, .why-steam, .orb, .gloss-arc, .hero-steam { animation: none !important; }
  .hero-steam { opacity: 0.5; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 3rem); }
  .hero-copy { max-width: 46rem; }
  .hero-card { max-width: 440px; width: 100%; }
  .services-head { grid-template-columns: 1fr; align-items: start; gap: 1.6rem; }
  .services-head-main { max-width: none; }
  .services-intro { max-width: 52ch; }
  .about-grid { grid-template-columns: 1fr; }
  .about-panel { top: 0; }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { max-width: 420px; margin-inline: auto; aspect-ratio: 16/12; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .service-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-base { flex-direction: column; }
  .services-foot { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn, .contact-actions .btn { width: 100%; justify-content: center; }
}
