/* ============================================================================
   EXOLUTIS FLOORING — "spec-sheet craft" design system
   Warm paper, ink, terracotta. Bricolage Grotesque display, Hanken body,
   JetBrains Mono for the spec tables. Deliberately distinct from the
   quiet-luxury dark-serif direction used elsewhere on shared hosting.
   ========================================================================== */

:root {
  --paper:        #F4EEE1;
  --paper-2:      #EBE3D2;
  --paper-3:      #E3D9C4;
  --ink:          #211C15;
  --ink-2:        #2E2820;
  --ink-soft:     #6A6153;
  --ink-faint:    #8C8474;
  --terracotta:   #BC5A34;
  --terracotta-d: #9C4525;
  --terracotta-t: rgba(188,90,52,0.12);
  --sage:         #6E7358;
  --line:         rgba(33,28,21,0.16);
  --line-soft:    rgba(33,28,21,0.09);
  --line-strong:  rgba(33,28,21,0.34);
  --paper-line:   rgba(244,238,225,0.18);

  --display: 'Bricolage Grotesque', 'Arial Narrow', sans-serif;
  --sans:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 60px);
  --radius: 3px;
  --shadow: 0 1px 0 var(--line), 0 18px 40px -28px rgba(33,28,21,0.5);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  /* faint hairline blueprint grid — the spec-sheet substrate */
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 46px 46px;
  background-position: -1px -1px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 6.2vw, 76px); }
h2 { font-size: clamp(28px, 4vw, 46px); }
h3 { font-size: clamp(19px, 2vw, 23px); }

p { margin: 0 0 1em; }
a { color: var(--terracotta-d); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
img { max-width: 100%; display: block; }
strong, b { font-weight: 700; }
small { font-size: 0.82em; }

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

/* ---- mono utility label / eyebrow (spec-sheet tag) ------------------------ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--terracotta-d);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--terracotta);
  display: inline-block;
}
.eyebrow--plain::before { display: none; }
.on-ink .eyebrow, .eyebrow--ink { color: #E7A98C; }
.on-ink .eyebrow::before { background: #E7A98C; }

.muted, .fine { color: var(--ink-soft); }
.fine { font-size: 13px; line-height: 1.55; }

/* ---- buttons -------------------------------------------------------------- */
.btn {
  --bg: var(--terracotta); --fg: #FBF6EC; --bd: var(--terracotta);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--mono);
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 26px; border: 1px solid var(--bd); border-radius: var(--radius);
  background: var(--bg); color: var(--fg); cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.25s, color 0.25s, box-shadow 0.35s var(--ease);
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 14px 26px -14px rgba(156,69,37,0.7); }
.btn:active { transform: translateY(0); }
.btn-primary { --bg: var(--terracotta); --fg: #FBF6EC; --bd: var(--terracotta); }
.btn-outline { --bg: transparent; --fg: var(--ink); --bd: var(--line-strong); }
.btn-outline:hover { --bg: var(--ink); --fg: var(--paper); --bd: var(--ink); box-shadow: none; }
.btn-ink { --bg: var(--ink); --fg: var(--paper); --bd: var(--ink); }
.btn-ink:hover { box-shadow: 0 14px 26px -16px rgba(33,28,21,0.8); }
.on-ink .btn-outline { --fg: var(--paper); --bd: var(--paper-line); }
.on-ink .btn-outline:hover { --bg: var(--paper); --fg: var(--ink); --bd: var(--paper); }
.btn-lg { padding: 18px 34px; font-size: 14px; }

/* ---- header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244,238,225,0.86);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.brand { display: inline-flex; align-items: baseline; gap: 10px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark {
  font-family: var(--display); font-weight: 800; font-size: 24px;
  letter-spacing: -0.03em; color: var(--ink); line-height: 1;
}
.brand-mark em { color: var(--terracotta); font-style: normal; }
.brand-sub {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-soft);
}

nav.primary { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 26px); }
nav.primary > a, .dropdown > a {
  font-family: var(--sans); font-size: 14.5px; font-weight: 600; color: var(--ink);
  text-decoration: none; position: relative; padding: 6px 0; letter-spacing: 0.01em;
}
nav.primary > a:hover, .dropdown > a:hover { color: var(--terracotta-d); text-decoration: none; }
nav.primary > a::after, .dropdown > a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--terracotta); transition: width 0.3s var(--ease);
}
nav.primary > a:hover::after, .dropdown:hover > a::after { width: 100%; }
nav.primary a.btn::after { display: none; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 22px 50px -24px rgba(33,28,21,0.5);
  padding: 8px; min-width: 264px; opacity: 0; visibility: hidden;
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease);
  display: grid; gap: 1px;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 10px 12px; font-size: 14px; font-weight: 600; color: var(--ink);
  border-radius: 2px; text-decoration: none;
}
.dropdown-menu a span { font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); font-weight: 500; }
.dropdown-menu a:hover { background: var(--terracotta-t); color: var(--terracotta-d); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: 0.3s var(--ease); }

/* ---- section bands -------------------------------------------------------- */
.band { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.band-alt { background: var(--paper-2); }
.band-alt::before, .band-ink::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 46px 46px;
}
.band-ink {
  background: var(--ink); color: var(--paper); position: relative;
}
.band-ink h1, .band-ink h2, .band-ink h3, .band-ink h4 { color: var(--paper); }
.band-ink p { color: rgba(244,238,225,0.74); }
.band-ink::before { background-image: linear-gradient(var(--paper-line) 1px, transparent 1px), linear-gradient(90deg, var(--paper-line) 1px, transparent 1px); opacity: 0.5; }

.section-head { max-width: 720px; margin-bottom: clamp(30px, 4vw, 52px); }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 18px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.band-ink .section-head p { color: rgba(244,238,225,0.7); }

/* index tag — "§ 01 / MATERIALS" style ------------------------------------- */
.index-tag {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint); display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.index-tag b { color: var(--terracotta-d); font-weight: 500; }

/* ---- home hero ------------------------------------------------------------ */
.hero { position: relative; border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: min(84vh, 760px); }
.hero-copy { padding: clamp(48px, 7vw, 104px) var(--gutter) clamp(48px, 7vw, 96px); display: flex; flex-direction: column; justify-content: center; max-width: 720px; margin-left: auto; }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--terracotta); }
.hero-lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-soft); max-width: 46ch; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-media { position: relative; background: var(--ink); }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(33,28,21,0.28), transparent 45%);
}
.hero-spec {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  background: var(--paper); border-top: 1px solid var(--line); border-right: 1px solid var(--line);
  border-top-right-radius: var(--radius);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--ink);
  padding: 14px 20px; display: flex; gap: 22px; flex-wrap: wrap; max-width: 92%;
}
.hero-spec b { color: var(--terracotta-d); font-weight: 500; }

/* trust strip */
.trust-strip { border-bottom: 1px solid var(--line); background: var(--paper-2); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: space-between; padding-block: 18px; }
.trust-strip span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 9px; }
.trust-strip span::before { content: ""; width: 6px; height: 6px; background: var(--terracotta); transform: rotate(45deg); }

/* ---- page hero (inner pages) --------------------------------------------- */
.page-hero {
  position: relative; padding: clamp(56px, 9vw, 128px) 0 clamp(40px, 6vw, 72px);
  background: var(--ink); color: var(--paper); overflow: hidden; border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--hero-img); background-size: cover; background-position: center;
  opacity: 0.32; filter: grayscale(0.2);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(24,20,15,0.55), rgba(24,20,15,0.86));
}
.page-hero .wrap { position: relative; z-index: 2; max-width: 860px; }
.page-hero .eyebrow { color: #EBB093; margin-bottom: 16px; }
.page-hero .eyebrow::before { background: #EBB093; }
.page-hero h1 { color: var(--paper); margin-bottom: 16px; }
.page-hero p { color: rgba(244,238,225,0.82); font-size: clamp(16px, 1.4vw, 19px); max-width: 62ch; margin: 0; }
.crumbs { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,238,225,0.6); margin: 0 0 20px; }
.crumbs a { color: rgba(244,238,225,0.85); }
.crumbs a:hover { color: #EBB093; }

/* ---- spec table (the signature element) ---------------------------------- */
.spec-table { border-top: 1px solid var(--ink); margin: 0; }
.spec-row {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 16px;
  padding: 16px 2px; border-bottom: 1px solid var(--line);
  transition: background 0.2s, padding-left 0.25s var(--ease);
}
.spec-row:hover { background: var(--terracotta-t); padding-left: 12px; }
.spec-row .sr-main { display: flex; flex-direction: column; gap: 3px; }
.spec-row .sr-name { font-family: var(--display); font-size: clamp(18px, 2vw, 22px); font-weight: 600; letter-spacing: -0.01em; }
.spec-row .sr-desc { font-size: 14.5px; color: var(--ink-soft); }
.spec-row .sr-price { font-family: var(--mono); font-size: 15px; font-weight: 500; color: var(--terracotta-d); white-space: nowrap; text-align: right; }
.spec-row .sr-price small { display: block; font-size: 11px; color: var(--ink-faint); letter-spacing: 0.06em; margin-top: 2px; }

/* ---- material / service card grid ---------------------------------------- */
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.mat-card {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.mat-card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -30px rgba(33,28,21,0.55); border-color: var(--line-strong); }
.mat-card a.card-cover { position: absolute; inset: 0; z-index: 3; }
.mat-card .card-photo { aspect-ratio: 4/3; width: 100%; object-fit: cover; border-bottom: 1px solid var(--line); }
.mat-card .card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.mat-card .card-idx { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--ink-faint); text-transform: uppercase; }
.mat-card h3 { margin: 2px 0; }
.mat-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; flex: 1; }
.mat-card .card-price { font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--terracotta-d); margin-top: 6px; padding-top: 12px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; align-items: center; }
.mat-card .card-price .go { color: var(--ink); font-size: 16px; transition: transform 0.3s var(--ease); }
.mat-card:hover .card-price .go { transform: translateX(4px); color: var(--terracotta); }

/* ---- service page 2-col layout ------------------------------------------- */
.svc-layout { display: grid; grid-template-columns: 1fr 372px; gap: clamp(36px, 5vw, 72px); align-items: start; }
.svc-photo { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 34px; aspect-ratio: 3/2; object-fit: cover; }
.svc-body h2 { margin-bottom: 16px; }
.svc-body > .block { margin-bottom: 40px; }
.svc-body > .block .eyebrow { margin-bottom: 16px; }

.included { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink); }
.included li { display: grid; grid-template-columns: minmax(180px, 240px) 1fr; gap: 20px; padding: 16px 2px; border-bottom: 1px solid var(--line); }
.included li b { font-family: var(--display); font-weight: 600; font-size: 17px; }
.included li span { color: var(--ink-soft); font-size: 15px; }

/* aside price / spec card */
.price-card {
  position: sticky; top: 96px; background: var(--paper); border: 1px solid var(--line-strong);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.price-card .pc-label { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); }
.price-card h3 { margin: 6px 0 14px; font-size: 22px; }
.price-card .big { font-family: var(--display); font-weight: 700; font-size: 40px; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.price-card .big small { font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-soft); display: block; margin-top: 8px; }
.price-card .pc-note { font-size: 14px; color: var(--ink-soft); margin: 14px 0 20px; }
.price-card .btn { width: 100%; }
.price-card .fine { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.price-mini { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 12.5px; color: var(--ink-soft); padding: 7px 0; border-bottom: 1px dashed var(--line); }
.price-mini b { color: var(--terracotta-d); font-weight: 500; }

/* ---- process steps -------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 26px); counter-reset: step; }
.step { position: relative; padding-top: 26px; border-top: 2px solid var(--ink); }
.band-ink .step { border-top-color: var(--terracotta); }
.step .step-n { position: absolute; top: -14px; right: 0; font-family: var(--mono); font-size: 12px; color: var(--ink-faint); letter-spacing: 0.1em; }
.band-ink .step .step-n { color: rgba(244,238,225,0.5); }
.step h3 { margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.band-ink .step p { color: rgba(244,238,225,0.72); }

/* ---- split (about/contact) ----------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.img-frame { position: relative; }
.img-frame img { border: 1px solid var(--line); border-radius: var(--radius); width: 100%; object-fit: cover; }
.img-frame::before { content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--terracotta); border-radius: var(--radius); z-index: -1; }

/* stat row */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--paper); padding: 26px 22px; }
.band-ink .stats { background: var(--paper-line); border-color: var(--paper-line); }
.band-ink .stat { background: var(--ink); }
.stat .num { font-family: var(--display); font-weight: 700; font-size: clamp(30px, 4vw, 44px); color: var(--terracotta); letter-spacing: -0.03em; line-height: 1; }
.stat .lbl { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 10px; }
.band-ink .stat .lbl { color: rgba(244,238,225,0.65); }

/* value / feature tiles */
.value { text-align: left; }
.value .v-mark { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--terracotta); border-radius: 50%; color: var(--terracotta); margin-bottom: 16px; }
.value h3 { margin-bottom: 8px; }
.value p { color: var(--ink-soft); font-size: 15px; margin: 0; }
.band-ink .value p { color: rgba(244,238,225,0.72); }

/* ---- FAQ ------------------------------------------------------------------ */
.faq { max-width: 860px; border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 44px 22px 2px; position: relative;
  font-family: var(--display); font-weight: 600; font-size: clamp(17px, 1.8vw, 21px); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 22px; color: var(--terracotta); transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { content: "\2013"; }
.faq .faq-a { padding: 0 44px 24px 2px; color: var(--ink-soft); font-size: 15.5px; }
.faq .faq-a a { color: var(--terracotta-d); }

/* ---- cta band ------------------------------------------------------------- */
.cta-band { background: var(--terracotta); color: #FBF4EA; padding: clamp(60px, 8vw, 104px) 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 46px 46px; }
.cta-band .wrap { position: relative; text-align: center; max-width: 760px; }
.cta-band .eyebrow { color: #FBF4EA; justify-content: center; margin-bottom: 18px; }
.cta-band .eyebrow::before { background: #FBF4EA; }
.cta-band h2 { color: #FFF9F1; margin-bottom: 14px; }
.cta-band p { color: rgba(255,244,234,0.9); font-size: 18px; margin-bottom: 30px; }
.cta-band .btn-ink { --bg: var(--ink); --fg: #FBF4EA; --bd: var(--ink); }
.cta-band .btn-outline { --fg: #FBF4EA; --bd: rgba(255,255,255,0.5); }
.cta-band .btn-outline:hover { --bg: #FBF4EA; --fg: var(--terracotta-d); --bd: #FBF4EA; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- footer --------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(244,238,225,0.7); padding: clamp(56px, 7vw, 92px) 0 32px; position: relative; }
.site-footer::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--paper-line) 1px, transparent 1px), linear-gradient(90deg, var(--paper-line) 1px, transparent 1px); background-size: 46px 46px; opacity: 0.4; pointer-events: none; }
.site-footer .wrap { position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 44px; border-bottom: 1px solid var(--paper-line); }
.footer-grid .brand-mark { color: var(--paper); }
.footer-grid p { font-size: 14.5px; color: rgba(244,238,225,0.62); margin-top: 16px; max-width: 34ch; }
.site-footer h4 { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: #E7A98C; margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer ul a, .site-footer ul li { font-size: 14px; color: rgba(244,238,225,0.72); }
.site-footer ul a:hover { color: var(--paper); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; color: rgba(244,238,225,0.5); }

/* ---- policy / long-form --------------------------------------------------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(22px, 2.6vw, 30px); margin: 40px 0 14px; }
.prose h3 { margin: 26px 0 10px; }
.prose p, .prose li { color: var(--ink-2); font-size: 16px; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose .updated { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.prose table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14.5px; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.prose th { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

/* ---- forms ---------------------------------------------------------------- */
.stack { display: grid; gap: 16px; }
label { display: block; font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; }
input, select, textarea {
  width: 100%; font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 12px 14px; transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 3px var(--terracotta-t); }
textarea { resize: vertical; }

/* ---- checkout ------------------------------------------------------------- */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: clamp(32px, 4vw, 60px); align-items: start; }
.checkout-step { margin-bottom: 40px; }
.checkout-step > .eyebrow { margin-bottom: 12px; }
.checkout-step > h2 { font-size: clamp(23px, 2.6vw, 30px); margin-bottom: 20px; }
.cat-label { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin: 22px 0 10px; display: block; }

.select-item {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 8px;
  cursor: pointer; background: var(--paper); transition: border-color 0.2s, background 0.2s;
}
.select-item:hover { border-color: var(--line-strong); }
.select-item input { width: 18px; height: 18px; accent-color: var(--terracotta); flex: 0 0 auto; margin: 0; }
.select-item:has(input:checked) { border-color: var(--terracotta); background: var(--terracotta-t); }
.select-item .si-name { flex: 1; font-size: 15px; font-weight: 600; color: var(--ink); }
.select-item .si-name small { font-weight: 400; color: var(--ink-soft); }
.select-item .si-price { font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--terracotta-d); }

.order-panel {
  position: sticky; top: 92px; background: var(--paper); border: 1px solid var(--line-strong);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
}
.order-panel > .eyebrow { margin-bottom: 8px; }
.order-panel h3 { font-size: 20px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.line-item { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; font-size: 14.5px; color: var(--ink-2); }
.line-item span:last-child { font-family: var(--mono); font-weight: 500; white-space: nowrap; }
.line-item.small { font-size: 12.5px; color: var(--ink-soft); }
.line-item.total { margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--ink); font-family: var(--display); font-size: 17px; font-weight: 700; color: var(--ink); }
.line-item.total span:last-child { font-family: var(--display); color: var(--terracotta-d); }
#schedule-lines { margin-top: 6px; }
#schedule-lines .line-item:first-child { border-top: 1px dashed var(--line); padding-top: 12px; margin-top: 8px; }

.connect-note { font-family: var(--mono); font-size: 12.5px; color: var(--ink-soft); background: var(--paper-2); border: 1px dashed var(--line-strong); border-radius: var(--radius); padding: 14px; line-height: 1.5; }
.pay-note { font-size: 12px; color: var(--ink-soft); line-height: 1.55; margin-top: 14px; }
.pay-note a { color: var(--terracotta-d); }
#card-container { margin: 12px 0; min-height: 44px; }
.booked-note { text-align: center; max-width: 560px; margin: 40px auto; padding: 40px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--paper); }
.booked-note h2 { color: var(--terracotta-d); margin-bottom: 14px; }

/* ---- reveal + chrome ------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.09s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.27s; }

#progressbar { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--terracotta); z-index: 100; transition: width 0.1s linear; }
#backtop { position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--paper); color: var(--ink); font-size: 20px; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s var(--ease); z-index: 90; box-shadow: var(--shadow); }
#backtop.show { opacity: 1; pointer-events: auto; }
#backtop:hover { background: var(--ink); color: var(--paper); transform: translateY(-3px); }

/* ---- responsive ----------------------------------------------------------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 320px; order: -1; }
  .svc-layout { grid-template-columns: 1fr; }
  .price-card { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-panel { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  nav.primary {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px 0 16px;
    max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); box-shadow: var(--shadow);
  }
  nav.primary.open { max-height: 620px; overflow-y: auto; }
  nav.primary > a, .dropdown > a { padding: 13px var(--gutter); border-bottom: 1px solid var(--line-soft); }
  nav.primary > a::after, .dropdown > a::after { display: none; }
  nav.primary a.btn { margin: 12px var(--gutter) 0; }
  .dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; border-radius: 0; background: var(--paper-2); min-width: 0; padding: 4px var(--gutter) 8px; }
  .dropdown:hover .dropdown-menu { transform: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .included li { grid-template-columns: 1fr; gap: 4px; }
  .hero-spec { position: static; max-width: 100%; border-right: 0; border-radius: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
