/* Gold Standard Services — Jay Dorgelo, Licensed Builder
   Design source: approved dc.html mockup (gold leaf palette, hero A) */

:root {
  --bg: #0A0C11;
  --panel: #0F1219;
  --panel-2: #141824;
  --gold-light: #F0DBA0;
  --gold: #C9A227;
  --gold-dark: #A8841A;
  --gold-text: #E9D08A;
  --cream: #F7F1E2;
  --ivory: #EDE7D8;
  --parchment: #F2E9D2;
  --muted: #A8A28F;
  --dim: #8F8874;
  --faint: #7C7563;
  --hairline: rgba(201, 162, 39, .2);
  --hairline-strong: rgba(201, 162, 39, .35);
  --wiz-bg: #FBF7EC;
  --wiz-field: #F3EEDF;
  --ink: #10131c;
  --ink-soft: #5A564D;
  --serif: 'EB Garamond', Georgia, serif;
  --sans: 'Archivo', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
[id] { scroll-margin-top: 96px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--gold); color: #14100A; font-weight: 700;
  padding: 12px 20px; border-radius: 1px; transition: top .2s;
}
.skip-link:focus { top: 12px; color: #14100A; }

:is(a, button, input, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .carousel { scroll-behavior: auto; }
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-text); }
::selection { background: var(--gold); color: var(--bg); }
img { max-width: 100%; }

.wrap { max-width: 1240px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }

.kicker {
  font-size: 10.5px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold-dark);
}
h2.section-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4vw, 54px); line-height: 1.08;
  margin: 16px 0 0; color: var(--cream);
}

/* ---------- Buttons ---------- */
.btn-gold {
  display: inline-block;
  background: linear-gradient(160deg, var(--gold-light), var(--gold) 58%, var(--gold-dark));
  color: #14100A; border: none; cursor: pointer;
  font-family: var(--sans); font-weight: 700; font-size: 13.5px;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 20px 42px; border-radius: 1px;
  box-shadow: 0 1px 0 rgba(255,246,214,.55) inset, 0 18px 40px -20px rgba(201,162,39,.95);
  transition: filter .2s, transform .2s;
}
.btn-gold:hover { filter: brightness(1.09); transform: translateY(-1px); color: #14100A; }
.btn-outline {
  display: inline-block; background: none; cursor: pointer;
  border: 1px solid rgba(201,162,39,.5); color: var(--gold-text);
  font-family: var(--sans); font-weight: 600; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 16px 28px; border-radius: 1px; transition: all .2s;
}
.btn-outline:hover { background: rgba(201,162,39,.1); border-color: var(--gold); color: var(--gold-text); }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,12,17,.93); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,162,39,.22);
}
header.site .bar {
  display: flex; align-items: center; gap: 18px; padding-top: 14px; padding-bottom: 14px;
}
header.site img.crest { height: 50px; width: auto; display: block; }
.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand .name {
  font-family: var(--serif); font-size: 21px; letter-spacing: .2em;
  color: var(--parchment); text-transform: uppercase;
}
.brand .sub {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: #857E6B; margin-top: 5px;
}
header.site .spacer { flex: 1; }
.site-nav { display: flex; gap: 26px; margin-right: 10px; }
.site-nav a {
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); padding: 6px 0; transition: color .2s;
}
.site-nav a:hover { color: var(--gold-text); }
header.site .btn-gold { padding: 14px 24px; font-size: 12px; }

/* ---------- Hero (variant A: crest centerpiece) ---------- */
.hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 112px 40px 124px;
  background: radial-gradient(ellipse 90% 70% at 50% -10%, #1A1D28 0%, #0F1219 45%, #0A0C11 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 40% at 50% 8%, rgba(201,162,39,.2), transparent 70%);
}
.hero .drop-line {
  position: absolute; left: 50%; top: 0; width: 1px; height: 92px;
  background: linear-gradient(var(--gold), transparent); opacity: .5;
}
.hero .inner {
  position: relative; max-width: 940px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.hero img.crest {
  width: 250px; max-width: 54vw; height: auto;
  filter: drop-shadow(0 26px 54px rgba(0,0,0,.7)) drop-shadow(0 0 46px rgba(201,162,39,.2));
}
.hero .locale {
  display: flex; align-items: center; gap: 18px;
  font-size: 10.5px; letter-spacing: .4em; text-transform: uppercase; color: var(--dim);
}
.hero .locale::before, .hero .locale::after {
  content: ""; width: 44px; height: 1px;
}
.hero .locale::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.hero .locale::after { background: linear-gradient(90deg, var(--gold), transparent); }
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 6.6vw, 82px); line-height: 1.02; letter-spacing: -.015em;
  color: var(--cream); margin: 0; text-wrap: balance;
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--gold-text); }
.hero p.lede {
  max-width: 600px; margin: 0; font-size: 18px; line-height: 1.75;
  color: var(--muted); text-wrap: pretty;
}
.hero .promise { font-size: 12.5px; color: var(--dim); }
.hero .marks {
  display: flex; flex-wrap: wrap; gap: 14px 0; justify-content: center;
  margin-top: 20px; padding-top: 26px; border-top: 1px solid rgba(201,162,39,.18);
  width: 100%; max-width: 820px;
}
.hero .marks span {
  flex: 1; min-width: 170px; font-size: 10.5px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--dim);
}

/* ---------- Services (warm light band) ---------- */
.services { background: #F5EFDE; padding: 104px 0 110px; }
.services .head { margin-bottom: 48px; }
.services .kicker { color: var(--gold-ink); }
.services .section-title { color: var(--ink); }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px;
}
.svc {
  position: relative; background: #FDFAF1; border: 1px solid rgba(168,132,26,.25);
  border-radius: 2px; padding: 36px 30px 30px; cursor: pointer; text-align: left;
  display: flex; flex-direction: column; gap: 13px; font-family: var(--sans);
  transition: transform .2s, box-shadow .25s, border-color .25s;
}
.svc:hover {
  transform: translateY(-4px); border-color: var(--gold);
  box-shadow: 0 22px 44px -22px rgba(107,79,10,.35);
}
.svc .icon { width: 38px; height: 38px; color: var(--gold-dark); }
.svc .icon svg { width: 100%; height: 100%; }
.svc h3 { font-family: var(--serif); font-weight: 500; font-size: 25px; margin: 0; color: var(--ink); }
.svc p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.svc .go {
  margin-top: auto; padding-top: 14px; font-size: 11.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-ink);
  transition: color .2s;
}
.svc:hover .go { color: #6B4F0A; }

.pricing-strip {
  margin-top: 18px; border-radius: 2px;
  background: var(--ink); padding: 36px 38px;
  display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between;
  box-shadow: 0 26px 50px -28px rgba(16,19,28,.55);
}
.pricing-strip .headline { font-family: var(--serif); font-size: 24px; color: var(--gold-text); letter-spacing: .02em; }
.pricing-strip p { margin: 8px 0 0; font-size: 15px; line-height: 1.7; color: #B9B29E; max-width: 660px; }

/* ---------- Showcase carousel ---------- */
.showcase { background: var(--bg); padding: 104px 0 96px; overflow: hidden; }
.showcase .head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 44px;
}
.nav-arrows { display: flex; gap: 10px; }
.arrow {
  width: 52px; height: 52px; background: none; cursor: pointer;
  border: 1px solid rgba(201,162,39,.5); color: var(--gold-text);
  font-size: 20px; border-radius: 1px; transition: all .2s;
}
.arrow:hover { background: rgba(201,162,39,.12); border-color: var(--gold); }
.carousel {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 0 max(40px, calc((100vw - 1240px) / 2 + 40px)) 8px;
  scroll-padding: 0 max(40px, calc((100vw - 1240px) / 2 + 40px));
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.carousel::-webkit-scrollbar { display: none; }
.slide {
  flex: 0 0 min(680px, 82vw); margin: 0; scroll-snap-align: start;
}
.slide img {
  width: 100%; height: 430px; object-fit: cover; display: block;
  border: 1px solid rgba(201,162,39,.25);
}
.slide figcaption {
  display: flex; flex-direction: column; gap: 6px; padding: 18px 4px 0;
}
.slide .t { font-family: var(--serif); font-size: 21px; color: var(--parchment); letter-spacing: .02em; }
.slide .d { font-size: 13.5px; line-height: 1.65; color: var(--dim); max-width: 560px; }

/* ---------- Before / After ---------- */
.ba { background: var(--bg); padding: 72px 0 0; }
.ba .frame {
  position: relative; overflow: hidden; border: 1px solid rgba(201,162,39,.18);
  height: 440px; user-select: none;
}
.ba .frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
  pointer-events: none;
}
.ba .after-wrap { position: absolute; inset: 0; overflow: hidden; }
.ba .divider {
  position: absolute; top: 0; bottom: 0; width: 2px;
  background: var(--gold); box-shadow: 0 0 18px rgba(201,162,39,.8);
  pointer-events: none;
}
.ba .divider::after {
  content: "◂ ▸"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold); color: #14100A; font-size: 11px; font-weight: 700;
  padding: 8px 10px; border-radius: 999px; white-space: nowrap;
}
.ba input[type="range"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}
.ba .tag {
  position: absolute; top: 16px; font-size: 10px; letter-spacing: .28em;
  text-transform: uppercase; padding: 8px 12px; background: rgba(10,12,17,.75); color: var(--parchment);
}
.ba .tag.before { left: 16px; }
.ba .tag.after { right: 16px; }

/* ---------- Light band shared language ---------- */
:root {
  --gold-ink: #7A5E0E; /* 5.3:1 on parchment — #A8841A fails at 3.1:1 */
  --band-light: #F5EFDE;
  --card-light: #FDFAF1;
  --card-border: rgba(168, 132, 26, .25);
}
.band-light { background: var(--band-light); }
.band-light .kicker { color: var(--gold-ink); }
.band-light .section-title { color: var(--ink); }

/* ---------- Job stages (inside showcase) ---------- */
.stages-section { background: var(--bg); padding: 96px 0 104px; }
.stages-head { margin-bottom: 36px; }
.stages-title {
  font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1; margin: 14px 0 0; color: var(--cream);
}
.stages-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.stage { position: relative; margin: 0; }
.stage img {
  width: 100%; height: 350px; object-fit: cover; display: block;
  border: 1px solid rgba(201,162,39,.25);
}
.stage-num {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--serif); font-style: italic; font-size: 15px; letter-spacing: .1em;
  color: #14100A; background: linear-gradient(160deg, var(--gold-light), var(--gold));
  padding: 6px 12px; border-radius: 1px;
}
.stage figcaption { display: flex; flex-direction: column; gap: 5px; padding: 14px 4px 0; }
.stage .t { font-family: var(--serif); font-size: 19px; color: var(--parchment); }
.stage .d { font-size: 13px; line-height: 1.6; color: var(--dim); }

/* ---------- What to expect (process rail) ---------- */
.process-band { padding: 88px 0 94px; }
.process-label {
  margin: 0 0 34px; font-size: 10.5px; letter-spacing: .4em;
  text-transform: uppercase; color: var(--gold-ink);
}
.process-rail {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 34px;
  counter-reset: none;
}
.process-rail li { position: relative; display: flex; flex-direction: column; gap: 9px; }
.p-num {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 18px; color: #14100A;
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  border-radius: 50%; margin-bottom: 6px;
  box-shadow: 0 8px 18px -8px rgba(201,162,39,.7);
}
.process-rail li::before {
  content: ""; position: absolute; top: 20px; left: 52px; right: -22px; height: 1px;
  background: linear-gradient(90deg, rgba(168,132,26,.55), rgba(168,132,26,.15));
}
.process-rail li:last-child::before { display: none; }
.p-t { font-family: var(--serif); font-size: 20px; color: var(--ink); }
.p-d { font-size: 13.5px; line-height: 1.65; color: var(--ink-soft); }
.process-cta { margin-top: 40px; padding: 18px 38px; font-size: 12.5px; }

/* ---------- Why Jay (light band) ---------- */
.why { padding: 104px 0 112px; }
.why .cols {
  display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: 84px; align-items: center;
}
.why h2 { margin-bottom: 22px; }
.why p.body { margin: 0; font-size: 17.5px; line-height: 1.78; color: var(--ink-soft); text-wrap: pretty; }
.pillars {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px;
}
.pillar {
  background: var(--card-light); border: 1px solid var(--card-border); border-radius: 2px;
  padding: 34px 30px; display: flex; flex-direction: column; gap: 11px;
  transition: transform .2s, box-shadow .25s, border-color .25s;
}
.pillar:hover {
  transform: translateY(-3px); border-color: var(--gold);
  box-shadow: 0 20px 40px -22px rgba(107,79,10,.3);
}
.pillar .t { font-family: var(--serif); font-size: 20px; color: var(--ink); letter-spacing: .02em; }
.pillar .t::after {
  content: ""; display: block; width: 34px; height: 2px; margin-top: 9px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.pillar p { margin: 0; font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); }

/* ---------- Service area (photo band + ZIP checker) ---------- */
.area.photo-band { position: relative; padding: 116px 0 120px; overflow: hidden; }
.area.photo-band .bg {
  position: absolute; inset: 0;
  background: url(../assets/photos/deck-stained.webp) center 62% / cover no-repeat;
}
.area.photo-band .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,12,17,.96) 0%, rgba(10,12,17,.88) 42%, rgba(10,12,17,.42) 100%);
}
.area.photo-band .wrap { position: relative; }
.area.photo-band .panel { max-width: 560px; }
.area .section-title { font-size: clamp(30px, 3.4vw, 46px); }
.area-lede { margin: 18px 0 26px; font-size: 16.5px; line-height: 1.7; color: var(--muted); max-width: 460px; }
.zip-check { display: flex; gap: 10px; max-width: 400px; }
.zip-check input {
  flex: 1; min-width: 0; font-family: var(--sans); font-size: 17px; padding: 16px 16px;
  border: 1px solid rgba(201,162,39,.4); background: rgba(10,12,17,.85);
  color: var(--ivory); border-radius: 1px; outline: none; letter-spacing: .04em;
}
.zip-check input::placeholder { color: var(--faint); }
.zip-check input:focus { border-color: var(--gold); }
.zip-check .btn-gold { padding: 16px 30px; font-size: 12.5px; }
.zip-result { margin-top: 16px; font-size: 15px; line-height: 1.65; color: var(--muted); min-height: 24px; }
.zip-result strong { color: var(--parchment); font-weight: 600; }
.zip-result.ok strong { color: var(--gold-text); }
.zip-result .zip-cta { margin-top: 12px; padding: 13px 22px; font-size: 11px; }
.towns-line {
  margin: 26px 0 0; padding-top: 22px; border-top: 1px solid rgba(201,162,39,.3);
  font-size: 12.5px; line-height: 2; letter-spacing: .04em; color: var(--muted); max-width: 500px;
}
@media (max-width: 960px) {
  .area.photo-band .scrim {
    background: linear-gradient(180deg, rgba(10,12,17,.95) 0%, rgba(10,12,17,.88) 70%, rgba(10,12,17,.55) 100%);
  }
}

/* ---------- CTA ---------- */
.cta {
  position: relative; padding: 118px 40px 126px; text-align: center; overflow: hidden;
  background: radial-gradient(ellipse 80% 90% at 50% 50%, #171B26 0%, #0F1219 55%, #0A0C11 100%);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
}
.cta .watermark {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: .06; pointer-events: none;
}
.cta .watermark img { width: 700px; max-width: 130%; height: auto; }
.cta .inner {
  position: relative; max-width: 700px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.cta h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.6vw, 60px); line-height: 1.06; margin: 0;
  color: var(--cream); text-wrap: balance;
}
.cta h2 em { font-style: italic; font-weight: 500; color: var(--gold-text); }
.cta p { margin: 0; max-width: 520px; font-size: 17.5px; line-height: 1.7; color: var(--muted); }
.cta .btn-gold { font-size: 14px; padding: 23px 54px; letter-spacing: .18em; }
.cta .fine { font-size: 10.5px; letter-spacing: .32em; text-transform: uppercase; color: var(--faint); }

/* ---------- FAQ (light band) ---------- */
.faq { padding: 96px 0 104px; }
.faq .list { max-width: 820px; margin-top: 44px; }
.faq details {
  border: 1px solid var(--card-border); border-bottom: none; background: var(--card-light);
}
.faq details:first-child { border-radius: 2px 2px 0 0; }
.faq details:last-child { border-bottom: 1px solid var(--card-border); border-radius: 0 0 2px 2px; }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 26px;
  font-family: var(--serif); font-size: 19px; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: background .2s;
}
.faq summary:hover { background: #FFF8E2; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-ink); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq .a { padding: 0 26px 24px; font-size: 15px; line-height: 1.75; color: var(--ink-soft); }
.faq .a p { margin: 0 0 10px; }

/* ---------- Footer ---------- */
footer.site { background: var(--bg); padding: 56px 0 60px; }
footer.site .bar {
  display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between;
}
footer.site .id { display: flex; align-items: center; gap: 16px; }
footer.site img.crest { height: 56px; width: auto; }
footer.site .name {
  font-family: var(--serif); font-size: 18px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--parchment); display: block; margin-bottom: 6px;
}
footer.site .sub { font-size: 12.5px; color: var(--faint); }
footer.site .marks {
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--faint);
}
footer.site .footer-links {
  display: flex; flex-wrap: wrap; gap: 12px 30px; justify-content: center;
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(201,162,39,.15);
}
footer.site .footer-links a {
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--dim);
}
footer.site .footer-links a:hover { color: var(--gold-text); }
footer.site .attribution {
  margin-top: 22px; text-align: center;
}
footer.site .attribution a {
  font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--faint);
}
footer.site .attribution a:hover { color: var(--gold-text); }

/* ---------- Sticky quote bar (mobile) ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  border-top: 1px solid rgba(201,162,39,.45);
  box-shadow: 0 -14px 34px -18px rgba(0,0,0,.9);
}
body.wizard-open .sticky-bar { display: none; }
.sticky-bar button {
  width: 100%;
  background: linear-gradient(160deg, var(--gold-light), var(--gold) 58%, var(--gold-dark));
  color: #14100A; border: none; cursor: pointer;
  font-family: var(--sans); font-weight: 700; font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 19px 12px calc(19px + env(safe-area-inset-bottom, 0px));
}

/* ---------- Quote wizard ---------- */
@keyframes jdFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes jdScrim { from { opacity: 0; } to { opacity: 1; } }
@keyframes jdRise { from { opacity: 0; transform: translateY(22px) scale(.985); } to { opacity: 1; transform: none; } }

.wizard-scrim {
  position: fixed; inset: 0; z-index: 120; display: none; overflow-x: hidden;
  align-items: flex-start; justify-content: center;
  padding: 40px 20px; overflow-y: auto;
  background: rgba(6,7,11,.82); animation: jdScrim .2s ease both;
}
.wizard-scrim.open { display: flex; }
.wizard {
  width: 100%; max-width: 680px; min-width: 0; background: var(--wiz-bg);
  border: 1px solid rgba(201,162,39,.55);
  box-shadow: 0 60px 120px -32px rgba(0,0,0,.9), 0 0 0 1px rgba(201,162,39,.15);
  animation: jdRise .28s cubic-bezier(.2,.8,.3,1) both;
}
.wizard .head {
  display: flex; align-items: center; gap: 16px; padding: 18px 26px; background: var(--panel);
  min-width: 0;
  border-bottom: 2px solid rgba(201,162,39,.55);
}
.step-bars { display: flex; gap: 5px; margin-left: auto; }
.step-bar {
  width: 26px; height: 5px; padding: 0; border: none; border-radius: 2px;
  background: rgba(237,231,216,.18); cursor: default; transition: background .2s, transform .15s;
}
.step-bar.done {
  background: linear-gradient(90deg, var(--gold), var(--gold-light)); cursor: pointer;
}
.step-bar.done:hover { transform: scaleY(1.7); }
.step-bar.current { background: var(--gold-text); box-shadow: 0 0 8px rgba(201,162,39,.6); }
.step-bar:disabled { cursor: default; }
.wizard .head img { height: 38px; width: auto; }
.wizard .head .t {
  font-family: var(--serif); font-size: 15px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--parchment);
}
.wizard .head .step-label {
  font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase; color: #857E6B; white-space: nowrap;
}
.wizard .head .close {
  background: none; border: 1px solid rgba(201,162,39,.4); color: var(--gold-text);
  font-family: var(--sans); font-size: 15px; line-height: 1;
  width: 44px; height: 44px; cursor: pointer; border-radius: 1px;
}
.wizard .head .close:hover { background: rgba(201,162,39,.12); }
.wizard .body { padding: 42px 36px 46px; min-height: 330px; }
.wizard .pane { animation: jdFade .3s ease both; }
.wizard h3 {
  font-family: var(--serif); font-weight: 500; font-size: 31px;
  margin: 0 0 8px; color: var(--ink);
}
.wizard .sub { margin: 0 0 24px; font-size: 15px; color: var(--ink-soft); }
.wizard .opt-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.wizard .opt-grid .opt:last-child:nth-child(odd) { grid-column: 1 / -1; }
.wizard .opt-col { display: flex; flex-direction: column; gap: 10px; }
.wizard .opt {
  text-align: left; background: #FFFDF6; border: 1px solid rgba(16,19,28,.16);
  border-left: 3px solid rgba(201,162,39,.35);
  padding: 18px 19px; font-family: var(--sans); font-size: 15px; font-weight: 500;
  color: var(--ink); cursor: pointer; border-radius: 1px;
  transition: border-color .16s, background .16s, transform .16s, box-shadow .2s;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.wizard .opt:hover {
  border-color: var(--gold); border-left-color: var(--gold); background: #FFF8E2;
  transform: translateX(2px); box-shadow: 0 8px 18px -12px rgba(107,79,10,.4);
}
.wizard .opt .note { font-size: 13px; font-weight: 400; color: #9A9384; }
.wizard label { display: flex; flex-direction: column; gap: 8px; }
.wizard label .lbl {
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: #7A7461;
}
.wizard input[type="text"], .wizard input[type="tel"], .wizard input[type="email"] {
  font-family: var(--sans); font-size: 17px; padding: 15px 17px;
  border: 1px solid rgba(16,19,28,.22); background: #FFFDF6;
  color: var(--ink); border-radius: 1px; outline: none; width: 100%;
}
.wizard input:focus { border-color: var(--gold); }
.wizard .fields { display: flex; flex-direction: column; gap: 16px; max-width: 460px; }
.wizard .fields-2col { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.wizard .fields-2col .full { grid-column: 1 / -1; }
.wizard .zip-msg { margin-top: 12px; font-size: 14px; line-height: 1.6; min-height: 22px; }
.wizard .zip-msg.ok { color: #3E6B2E; }
.wizard .zip-msg.travel { color: #8A6A14; }
.wizard .nav { display: flex; gap: 18px; margin-top: 30px; align-items: center; flex-wrap: wrap; }
.wizard .btn-continue {
  background: var(--ink); color: var(--parchment); border: none;
  font-family: var(--sans); font-weight: 700; font-size: 13px;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 18px 36px; cursor: pointer; border-radius: 1px; transition: all .2s;
}
.wizard .btn-continue:hover:not(:disabled) { background: var(--gold); color: #14100A; }
.wizard .btn-continue:disabled { opacity: .5; cursor: not-allowed; }
.wizard .btn-skip {
  background: none; border: 1px solid rgba(16,19,28,.18);
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft);
  padding: 18px 28px; cursor: pointer; border-radius: 1px;
}
.wizard .btn-skip:hover { border-color: var(--ink); color: var(--ink); }
.wizard .btn-back {
  background: none; border: none; font-family: var(--sans); font-size: 11.5px;
  letter-spacing: .2em; text-transform: uppercase; color: #9A9384; cursor: pointer;
}
.wizard .btn-back:hover { color: var(--ink); }
.wizard .btn-send {
  background: linear-gradient(160deg, var(--gold-light), var(--gold) 58%, var(--gold-dark));
  color: #14100A; border: none; font-family: var(--sans); font-weight: 700;
  font-size: 13.5px; letter-spacing: .16em; text-transform: uppercase;
  padding: 19px 42px; cursor: pointer; border-radius: 1px;
  box-shadow: 0 1px 0 rgba(255,246,214,.55) inset; transition: filter .2s, opacity .2s;
}
.wizard .btn-send:hover:not(:disabled) { filter: brightness(1.08); }
.wizard .btn-send:disabled { opacity: .5; cursor: not-allowed; }
.wizard .privacy { margin: 18px 0 0; font-size: 12.5px; color: #9A9384; }

.wizard .drop {
  border: 1px dashed rgba(201,162,39,.6); background: var(--wiz-field);
  padding: 48px 24px; text-align: center; border-radius: 1px; cursor: pointer;
  transition: background .2s;
}
.wizard .drop:hover, .wizard .drop.drag { background: #FFF8E2; }
.wizard .drop .big { display: block; font-family: var(--serif); font-size: 22px; color: var(--ink); }
.wizard .drop .small { display: block; margin-top: 7px; font-size: 13.5px; color: #9A9384; }
.wizard .file-list { margin: 14px 0 0; font-size: 13.5px; color: var(--ink-soft); }

.wizard .pane.done { text-align: center; padding: 26px 0; }
.wizard .pane.done img { width: 112px; height: auto; margin: 0 auto 22px; display: block; }
.wizard .pane.done h3 { font-size: 35px; margin: 0 0 12px; }
.wizard .pane.done p { margin: 0 auto; max-width: 430px; font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.wizard .pane.done .btn-skip { margin-top: 26px; }
.wizard .error-msg { margin-top: 14px; font-size: 14px; color: #8C2B1D; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .site-nav { display: none; }
}
@media (max-width: 960px) {
  .wrap { padding-left: 24px; padding-right: 24px; }
  .hero { padding: 80px 24px 90px; }
  .svc-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .why .cols { grid-template-columns: 1fr; gap: 48px; }
  .carousel { padding-left: 24px; padding-right: 24px; }
  .slide img { height: 340px; }
  .process-rail { grid-template-columns: 1fr; gap: 30px; }
  .process-rail li { padding-left: 58px; }
  .process-rail li .p-num { position: absolute; left: 0; top: 0; margin: 0; }
  .process-rail li::before {
    left: 20px; right: auto; top: 46px; bottom: -26px; width: 1px; height: auto;
    background: linear-gradient(180deg, rgba(168,132,26,.5), rgba(168,132,26,.12));
  }
}
@media (max-width: 640px) {
  body { padding-bottom: 58px; } /* room for sticky bar */
  .sticky-bar { display: block; }
  header.site .btn-gold { display: none; }
  .brand .name { font-size: 17px; }
  .svc-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pricing-strip { padding: 26px 22px; }
  .wizard .opt-grid { grid-template-columns: 1fr; }
  .wizard .fields-2col { grid-template-columns: 1fr; }
  .wizard .body { padding: 32px 22px 38px; }
  .wizard-scrim { padding: 16px 8px; }
  .wizard .head { gap: 10px; padding: 14px 14px; }
  .wizard .head .t { font-size: 12.5px; letter-spacing: .12em; white-space: nowrap; }
  .wizard .head .step-label { display: none; }
  .step-bars { gap: 4px; margin-left: auto; }
  .step-bar { width: 17px; }
  .wizard .head .close { width: 40px; height: 40px; flex-shrink: 0; }
  .showcase .head { flex-direction: column; align-items: flex-start; }
  .slide img { height: 250px; }
}

/* Touch devices: no sticky lift/hover states */
@media (hover: none) {
  .svc:hover, .pillar:hover { transform: none; box-shadow: none; border-color: var(--card-border); }
  .btn-gold:hover { transform: none; filter: none; }
  .slide img { pointer-events: none; }
}


