/* ============================================================
   COASTLINE DETAIL STUDIO - Clearline demo template
   System: cinematic-dark lane, golden-guide architecture.
   ============================================================ */

/* ---------- BRAND TOKENS - swap this block per prospect ---------- */
:root {
  --bg: #0b0d10;            /* deep blue-black */
  --bg-2: #0f1216;
  --surface: #14181d;
  --ink: #f4f2ec;           /* warm bone */
  --dim: #b9b5aa;
  --mut: #8f8b80;
  --accent: #d8b56c;        /* champagne brass */
  --accent-deep: #b8934a;
  --accent-ink: #17120a;
  --hairline: rgba(244, 242, 236, 0.09);
  --hairline-2: rgba(244, 242, 236, 0.16);

  --display: "Clash Display", "Avenir Next", sans-serif;
  --text: "Switzer", -apple-system, "Helvetica Neue", sans-serif;

  --r-lg: 22px; --r-md: 14px; --r-sm: 10px;
  --shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.75);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --sec: clamp(88px, 10vw, 150px);
}

/* ---------- base ---------- */
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--text); font-weight: 400;
  font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -0.015em; line-height: 1.05; text-wrap: balance; }
h2 { font-size: clamp(34px, 4.6vw, 56px); }
.prose { color: var(--dim); max-width: 62ch; text-wrap: pretty; }

.lbl {
  display: inline-block; font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--text); font-weight: 600; font-size: 15.5px;
  border-radius: 999px; padding: 15px 15px 15px 26px;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform 0.5s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn .chip {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: 14px;
  transition: transform 0.5s var(--ease);
}
.btn:hover .chip { transform: translateX(3px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary .chip { background: rgba(23, 18, 10, 0.14); color: var(--accent-ink); }
.btn--primary:hover { background: var(--accent-deep); }
.btn--ghost { border-color: var(--hairline-2); color: var(--ink); padding: 15px 26px; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 40; width: min(1120px, calc(100% - 32px));
  display: flex; align-items: center; gap: 26px;
  padding: 10px 12px 10px 24px; border-radius: 999px;
  background: rgba(11, 13, 16, 0.62);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--hairline);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav[data-scrolled] { background: rgba(11, 13, 16, 0.86); border-color: var(--hairline-2); }
.brand { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: 0.01em; }
.brand em { font-style: normal; color: var(--accent); }
.nav__links { display: flex; gap: 22px; margin-left: auto; }
.nav__links a { font-size: 14.5px; font-weight: 500; color: var(--dim); transition: color 0.3s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__tel { font-weight: 600; font-size: 14.5px; color: var(--ink); white-space: nowrap; }
.nav .btn { padding: 11px 12px 11px 20px; font-size: 14px; }
.nav .btn .chip { width: 26px; height: 26px; }
.nav__burger { display: none; }

/* mobile nav overlay */
.mnav {
  position: fixed; inset: 0; z-index: 39; display: grid; place-content: center; gap: 8px;
  background: rgba(9, 11, 14, 0.9); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  opacity: 0; pointer-events: none; transition: opacity 0.45s var(--ease);
}
.mnav.open { opacity: 1; pointer-events: auto; }
.mnav a {
  font-family: var(--display); font-weight: 600; font-size: 34px; text-align: center; padding: 8px;
  opacity: 0; transform: translateY(18px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.mnav.open a { opacity: 1; transform: none; }
.mnav.open a:nth-child(2) { transition-delay: 0.05s; } .mnav.open a:nth-child(3) { transition-delay: 0.1s; }
.mnav.open a:nth-child(4) { transition-delay: 0.15s; } .mnav.open a:nth-child(5) { transition-delay: 0.2s; }
.mnav.open a:nth-child(6) { transition-delay: 0.25s; } .mnav.open a:nth-child(7) { transition-delay: 0.3s; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__img { position: absolute; inset: 0; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 50%; }
.hero__img::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,13,16,0.92) 0%, rgba(11,13,16,0.55) 38%, rgba(11,13,16,0.08) 68%),
    linear-gradient(0deg, rgba(11,13,16,0.95) 0%, rgba(11,13,16,0) 34%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; padding-bottom: clamp(56px, 8vw, 96px); }
.hero__kicker { font-weight: 600; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim); margin-bottom: 22px; }
.hero__kicker b { color: var(--accent); font-weight: 600; }
.hero h1 { font-size: clamp(42px, 6.6vw, 88px); font-weight: 700; max-width: 13ch; }
.hero__sub { margin-top: 22px; font-size: clamp(16.5px, 1.6vw, 19px); max-width: 52ch; }
.hero__cta { display: flex; align-items: center; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.hero__proof { display: flex; align-items: center; gap: 8px 10px; margin-top: 30px; font-size: 14.5px; color: var(--dim); font-weight: 500; flex-wrap: wrap; }
.hero__proof span { white-space: nowrap; }
.hero__proof .stars { color: var(--accent); letter-spacing: 2px; font-size: 13px; }
.hero__proof b { color: var(--ink); font-weight: 600; }

/* ---------- proof bar ---------- */
.proofbar { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--bg-2); }
.proofbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 20px; padding-bottom: 20px; flex-wrap: wrap; }
.proofbar span { font-size: 13.5px; font-weight: 500; color: var(--mut); letter-spacing: 0.04em; }
.proofbar b { color: var(--dim); font-weight: 600; }

/* ---------- sections ---------- */
section { padding-top: var(--sec); }
/* the section right after the proof banner sits closer - the banner already provides separation */
.proofbar + section { padding-top: clamp(60px, 7.5vw, 100px); }
.sechead { margin-bottom: clamp(36px, 5vw, 60px); }
.sechead .prose { margin-top: 16px; }

/* ---------- services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.svc {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--hairline); aspect-ratio: 4 / 3.4;
  transition: border-color 0.45s var(--ease), transform 0.6s var(--ease);
}
.svc:hover { border-color: rgba(216, 181, 108, 0.45); transform: translateY(-4px); }
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.svc:hover img { transform: scale(1.045); }
.svc::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,11,14,0.92) 0%, rgba(9,11,14,0.12) 46%, rgba(9,11,14,0) 65%); }
.svc__txt { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 22px 24px; }
/* photo-overlay text is lane-independent: always light on the dark scrim */
.svc__txt h3 { font-size: 21px; color: #f4f2ec; }
.svc__txt p { margin-top: 6px; font-size: 14.5px; color: rgba(244, 242, 236, 0.78); }

/* ---------- before / after ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.ba-item figcaption { margin-top: 12px; font-size: 14px; color: var(--mut); font-weight: 500; }
.ba-item figcaption b { color: var(--dim); font-weight: 600; }
.ba {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--hairline); touch-action: pan-y; --pos: 50%;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__line { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: var(--accent); transform: translateX(-1px); }
.ba__grip {
  position: absolute; top: 50%; left: var(--pos); transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; font-size: 13px; font-weight: 700; letter-spacing: 1px;
  box-shadow: 0 8px 26px -8px rgba(0, 0, 0, 0.8);
}
.ba__tag {
  position: absolute; bottom: 12px; z-index: 2; font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
  background: rgba(9, 11, 14, 0.72); color: var(--dim); backdrop-filter: blur(6px);
}
.ba__tag--b { left: 12px; } .ba__tag--a { right: 12px; color: var(--accent); }
.ba input[type="range"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}

/* ---------- pricing ---------- */
.sizes { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid var(--hairline-2); border-radius: 999px; margin-bottom: 34px; }
.sizes button {
  font-family: var(--text); font-weight: 600; font-size: 14px; color: var(--dim);
  background: none; border: 0; border-radius: 999px; padding: 9px 20px; cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.sizes button[aria-pressed="true"] { background: var(--accent); color: var(--accent-ink); }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.tier {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-lg);
  padding: 30px 28px; display: flex; flex-direction: column; position: relative;
}
.tier--hot { border-color: rgba(216, 181, 108, 0.5); background: linear-gradient(180deg, rgba(216,181,108,0.06), rgba(216,181,108,0)) , var(--surface); }
.tier__badge {
  position: absolute; top: -12px; left: 28px; background: var(--accent); color: var(--accent-ink);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.tier h3 { font-size: 22px; }
.tier__price { font-family: var(--display); font-weight: 700; font-size: 44px; margin-top: 14px; letter-spacing: -0.01em; }
.tier__price small { font-family: var(--text); font-weight: 500; font-size: 13.5px; color: var(--mut); letter-spacing: 0; margin-right: 6px; vertical-align: 8px; }
.tier__meta { font-size: 13.5px; color: var(--mut); margin-top: 2px; }
.tier ul { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 10px; }
.tier li { padding-left: 26px; position: relative; font-size: 15px; color: var(--dim); }
.tier li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.tier .btn { margin-top: auto; justify-content: center; }

/* guarantee line under the tiers */
.tiers-note { margin-top: 22px; text-align: center; font-size: 14.5px; color: var(--mut); }
.tiers-note b { color: var(--dim); font-weight: 600; }

/* protection panel: media object - beading photo left, offer right */
.protect {
  margin-top: 34px; border-radius: var(--r-lg); border: 1px solid var(--hairline);
  background: var(--bg-2); padding: clamp(24px, 3vw, 36px);
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(24px, 4vw, 52px); align-items: center;
}
.protect__img { margin: 0; }
.protect__img img { width: 100%; height: auto; aspect-ratio: 4 / 3.1; object-fit: cover; border-radius: var(--r-md); border: 1px solid var(--hairline); }
.protect h3 { font-size: clamp(24px, 2.8vw, 32px); }
.protect .prose { margin-top: 14px; font-size: 15.5px; }
.protect__row { display: flex; align-items: center; gap: 18px; margin-top: 24px; flex-wrap: wrap; }
.protect__note { font-size: 13.5px; color: var(--mut); max-width: 30ch; }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { padding: 6px 26px 0 0; }
.step + .step { border-left: 1px solid var(--hairline); padding-left: 26px; }
.step__n { font-family: var(--display); font-weight: 700; font-size: 44px; color: var(--accent); line-height: 1; }
.step h3 { font-size: 18.5px; margin-top: 14px; }
.step p { font-size: 14.5px; color: var(--dim); margin-top: 8px; }

/* ---------- reviews ---------- */
.rev-head { display: flex; align-items: baseline; gap: 22px; flex-wrap: wrap; }
.rev-head .score { font-family: var(--display); font-weight: 700; font-size: clamp(56px, 7vw, 84px); line-height: 1; }
.rev-head .of { color: var(--mut); font-size: 15px; font-weight: 500; }
.rev-head .stars { color: var(--accent); font-size: 18px; letter-spacing: 3px; }
.rev-head a { color: var(--dim); font-size: 14.5px; font-weight: 500; border-bottom: 1px solid var(--hairline-2); transition: color 0.3s, border-color 0.3s; }
.rev-head a:hover { color: var(--accent); border-color: var(--accent); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.rev {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-lg);
  padding: 26px 26px 22px; display: flex; flex-direction: column; gap: 14px;
}
.rev .stars { color: var(--accent); font-size: 13px; letter-spacing: 2px; }
.rev p { font-size: 15.5px; color: var(--ink); text-wrap: pretty; }
.rev footer { margin-top: auto; font-size: 13.5px; color: var(--mut); }
.rev footer b { color: var(--dim); font-weight: 600; display: block; font-size: 14.5px; }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about__img { border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 8px; background: rgba(244, 242, 236, 0.03); }
.about__img img { border-radius: calc(var(--r-lg) - 8px); aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%; }
.about h2 { max-width: 12ch; }
.about .prose + .prose { margin-top: 14px; }
.about__sig { margin-top: 22px; font-size: 14.5px; color: var(--mut); }
.about__sig b { color: var(--accent); font-weight: 600; }

/* ---------- faq ---------- */
.faq { max-width: 760px; }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--display); font-weight: 600; font-size: 19px; padding: 22px 2px;
  transition: color 0.3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--accent); transition: transform 0.4s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--accent); }
.faq details p { padding: 0 2px 24px; color: var(--dim); max-width: 60ch; }

/* ---------- quote / final CTA ---------- */
.quote { padding-bottom: var(--sec); }
.quote__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.quote h2 { max-width: 12ch; }
.quote__trust { margin-top: 28px; border-left: none; border-top: 1px solid var(--hairline); padding-top: 22px; max-width: 44ch; }
.quote__trust .stars { color: var(--accent); font-size: 13px; letter-spacing: 2px; }
.quote__trust p { margin-top: 8px; font-size: 15px; color: var(--dim); }
.quote__trust footer { margin-top: 6px; font-size: 13px; color: var(--mut); }
.quote__guarantee { margin-top: 14px; font-size: 14px; color: var(--dim); }
.quote__guarantee b { color: var(--accent); font-weight: 600; }
.quote__alt { margin-top: 26px; font-size: 15px; color: var(--mut); }
.quote__alt a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--hairline-2); }
.quote__alt a:hover { color: var(--accent); border-color: var(--accent); }
.qform {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-lg);
  padding: clamp(24px, 3.4vw, 38px); display: grid; gap: 14px;
}
.qform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qform label { display: grid; gap: 7px; font-size: 13px; font-weight: 600; color: var(--dim); letter-spacing: 0.02em; }
.qform input, .qform select {
  font-family: var(--text); font-size: 15.5px; color: var(--ink);
  background: var(--bg-2); border: 1px solid var(--hairline-2); border-radius: var(--r-sm);
  padding: 13px 14px; width: 100%; transition: border-color 0.3s var(--ease);
}
.qform input:focus, .qform select:focus { outline: none; border-color: var(--accent); }
.qform select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--mut) 50%), linear-gradient(135deg, var(--mut) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 15px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.qform .btn { justify-content: center; margin-top: 6px; }
.qform__note { font-size: 13px; color: var(--mut); text-align: center; }
.qform__done { text-align: center; padding: 40px 10px; display: grid; gap: 10px; justify-items: center; }
.qform__done .tick { width: 46px; height: 46px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; font-size: 20px; font-weight: 700; }
.qform__done h3 { font-size: 22px; }
.qform__done p { color: var(--dim); font-size: 15px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--hairline); background: var(--bg-2); padding: 54px 0 110px; }
.footer .wrap { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 36px; }
.footer h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mut); margin-bottom: 14px; }
.footer p, .footer a { font-size: 14.5px; color: var(--dim); }
.footer a { display: block; padding: 3px 0; }
.footer a:hover { color: var(--accent); }
.footer .brand { margin-bottom: 12px; display: block; }
.footer__legal { grid-column: 1 / -1; border-top: 1px solid var(--hairline); margin-top: 26px; padding-top: 20px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--mut); }
.footer__legal a { display: inline; color: var(--mut); border-bottom: 1px solid var(--hairline); }
.footer__legal a:hover { color: var(--accent); }

/* ---------- sticky mobile bar ---------- */
.sticky {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 45;
  display: none; gap: 10px;
  transform: translateY(140%); transition: transform 0.5s var(--ease);
}
.sticky.on { transform: none; }
.sticky a {
  flex: 1; display: grid; place-items: center; font-weight: 600; font-size: 15px;
  border-radius: 999px; padding: 16px;
}
.sticky__call { background: rgba(15, 18, 22, 0.92); color: var(--ink); border: 1px solid var(--hairline-2); backdrop-filter: blur(14px); }
.sticky__quote { background: var(--accent); color: var(--accent-ink); }

/* ---------- service pages ---------- */
.spage-hero { padding-top: clamp(118px, 15vh, 156px); }
.spage-hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.crumb { font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mut); margin-bottom: 18px; }
.crumb a { color: var(--mut); } .crumb a:hover { color: var(--accent); }
.crumb b { color: var(--accent); font-weight: 600; }
.spage-hero h1 { font-size: clamp(36px, 4.4vw, 62px); font-weight: 700; max-width: 16ch; }
.spage-hero .hero__sub { margin-top: 20px; }
.spage-hero .hero__cta { margin-top: 30px; }
.spage-hero__img { border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 8px; background: rgba(244, 242, 236, 0.03); }
.spage-hero__img img { width: 100%; height: auto; aspect-ratio: 4 / 3.4; object-fit: cover; border-radius: calc(var(--r-lg) - 8px); }

.ticks { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; max-width: 860px; }
.ticks li { padding-left: 30px; position: relative; color: var(--dim); font-size: 16px; }
.ticks li b { color: var(--ink); font-weight: 600; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.opts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.opt { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 26px 24px; position: relative; display: flex; flex-direction: column; }
.opt--hot { border-color: rgba(216, 181, 108, 0.5); }
.opt h3 { font-size: 19px; }
.opt .cover { font-size: 13px; color: var(--mut); margin-top: 4px; }
.opt p { font-size: 14.5px; color: var(--dim); margin-top: 12px; }
.opt .price { margin-top: auto; padding-top: 18px; font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--accent); }

.sgal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sgal figure { margin: 0; }
.sgal img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-md); border: 1px solid var(--hairline); }
.sgal figcaption { margin-top: 10px; font-size: 13.5px; color: var(--mut); }
@media (max-width: 680px) { .sgal { grid-template-columns: 1fr; } }

.spage-review { border-left: 2px solid var(--accent); padding-left: 24px; max-width: 640px; }
.spage-review .stars { color: var(--accent); font-size: 13px; letter-spacing: 2px; }
.spage-review p { font-family: var(--display); font-weight: 500; font-size: clamp(19px, 2.2vw, 24px); line-height: 1.35; margin-top: 10px; }
.spage-review footer { margin-top: 10px; font-size: 13.5px; color: var(--mut); }

.spage-cta { margin: var(--sec) 0; }
.spage-cta__panel { border-radius: var(--r-lg); border: 1px solid var(--hairline); background: var(--bg-2); padding: clamp(36px, 5vw, 64px); text-align: center; }
.spage-cta__panel h2 { max-width: 18ch; margin-inline: auto; }
.spage-cta__panel .prose { margin: 14px auto 26px; }
.spage-cta__panel .protect__note { margin-top: 14px; max-width: none; }
.related { margin-top: 28px; text-align: center; font-size: 15px; color: var(--mut); }
.related a { color: var(--dim); font-weight: 600; border-bottom: 1px solid var(--hairline-2); transition: color 0.3s var(--ease), border-color 0.3s var(--ease); }
.related a:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 1000px) {
  .opts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .spage-hero__grid { grid-template-columns: 1fr; }
  .opts { grid-template-columns: 1fr; }
  .ticks { grid-template-columns: 1fr; }
}

/* ---------- reveal motion ---------- */
.js .rv { opacity: 0; transform: translateY(26px); filter: blur(6px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease); transition-delay: var(--d, 0s); }
.js .rv.in { opacity: 1; transform: none; filter: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js .rv { opacity: 1; transform: none; filter: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .svc-grid, .ba-grid, .tiers, .rev-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .step:nth-child(3) { border-left: 0; padding-left: 0; }
  .protect { grid-template-columns: 1fr; }
  .nav__links, .nav__tel { display: none; }
  .nav__burger {
    display: grid; place-items: center; gap: 5px; width: 44px; height: 44px;
    background: none; border: 0; cursor: pointer; margin-left: auto;
  }
  .nav__burger span { display: block; width: 20px; height: 2px; background: var(--ink); transition: transform 0.4s var(--ease), opacity 0.3s; }
  .nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
}
@media (max-width: 680px) {
  .svc-grid, .ba-grid, .tiers, .rev-grid, .about, .quote__grid, .footer .wrap { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step + .step { border-left: 0; padding-left: 0; border-top: 1px solid var(--hairline); padding-top: 26px; margin-top: 8px; }
  .qform .row { grid-template-columns: 1fr; }
  .hero__img img { object-position: 66% 50%; }
  .sticky { display: flex; }
  .tier--hot { order: -1; }
  body { padding-bottom: 70px; }
}

/* ============ BOOKING PAGE ============ */
.bk-hero { padding-top: clamp(118px, 15vh, 156px); }
.bk-hero h1 { font-size: clamp(38px, 4.6vw, 64px); font-weight: 700; }
.bk-hero .hero__sub { margin-top: 16px; max-width: 52ch; }
.bk-hero .hero__proof { margin-top: 18px; }
.bk-wrap { padding-top: 0; margin: clamp(36px, 4.5vw, 60px) 0 var(--sec); }
.bk { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(24px, 3.5vw, 48px); align-items: start; }

.bk__card { border: 1px solid var(--hairline); border-radius: var(--r-lg); background: var(--bg-2); padding: clamp(24px, 3.5vw, 44px); }
.bk__prog { display: flex; gap: clamp(10px, 2vw, 22px); list-style: none; padding: 0; margin: 0 0 28px; }
.bk__prog li { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--mut); white-space: nowrap; }
.bk__prog li span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--hairline-2); font-size: 12px; }
.bk__prog li.on { color: var(--ink); }
.bk__prog li.on span { background: var(--accent); border-color: var(--accent); color: #17120a; }

.bk__hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.bk__step { display: none; border: 0; padding: 0; margin: 0; }
html.no-js .bk__step { display: block; }
.bk__step.on { display: block; animation: bkIn 0.5s var(--ease) both; }
@keyframes bkIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.bk__step h2 { font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 20px; }
.bk__sub { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mut); margin: 22px 0 10px; }

.bk__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.tile { padding: 14px 12px; border: 1px solid var(--hairline-2); border-radius: var(--r-sm); background: transparent; color: var(--dim); font: 600 14.5px/1.3 var(--text); text-align: center; cursor: pointer; transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease); }
.tile:hover { border-color: var(--accent); color: var(--ink); }
.tile[aria-pressed="true"] { border-color: var(--accent); background: rgba(216, 181, 108, 0.1); color: var(--ink); }
.tile--wide { grid-column: 1 / -1; }

.bk__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chipbtn { padding: 14px 18px; border: 1px solid var(--hairline-2); border-radius: 999px; background: transparent; color: var(--dim); font: 600 14px/1 var(--text); cursor: pointer; transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease); }
.chipbtn:hover { border-color: var(--accent); color: var(--ink); }
.chipbtn[aria-pressed="true"] { border-color: var(--accent); background: rgba(216, 181, 108, 0.1); color: var(--ink); }

.bk__label { display: block; margin-top: 18px; font-size: 13.5px; font-weight: 600; color: var(--dim); }
.bk__label em { font-style: normal; font-weight: 500; color: var(--mut); }
.bk__label input, .bk__label textarea { display: block; width: 100%; margin-top: 8px; padding: 13px 14px; border: 1px solid var(--hairline-2); border-radius: var(--r-sm); background: var(--bg); color: var(--ink); font: 500 16px/1.4 var(--text); transition: border-color 0.25s var(--ease); }
.bk__label input:focus, .bk__label textarea:focus { outline: none; border-color: var(--accent); }
.bk__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bk__row .bk__label { margin-top: 18px; }

.bk__upload { display: flex; gap: 14px; align-items: center; margin-top: 18px; padding: 16px; border: 1px dashed var(--hairline-2); border-radius: var(--r-sm); cursor: pointer; color: var(--mut); font-size: 14px; line-height: 1.45; transition: border-color 0.25s var(--ease); position: relative; }
.bk__upload:hover { border-color: var(--accent); }
.bk__upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.bk__upload b { color: var(--dim); }
.bk__upload em { font-style: normal; color: var(--mut); }
.bk__upload-ico { display: grid; place-items: center; flex: 0 0 40px; height: 40px; border-radius: 50%; border: 1px solid var(--hairline-2); font-size: 20px; color: var(--accent); }
.bk__upload-count { font-weight: 600; color: var(--accent); white-space: nowrap; }

.bk__err { margin-top: 14px; color: #c0604a; font-size: 14px; font-weight: 500; }
.qform__note a { color: var(--dim); font-weight: 600; border-bottom: 1px solid var(--hairline-2); transition: color 0.3s var(--ease), border-color 0.3s var(--ease); }
.qform__note a:hover { color: var(--accent); border-color: var(--accent); }
.bk__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; }
.bk__fine { margin-top: 14px; font-size: 13px; color: var(--mut); text-align: center; }

.bk__trust { border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: clamp(20px, 2.5vw, 30px); position: sticky; top: 96px; }
.bk__trust .hero__proof { margin: 0 0 16px; }
.bk__trust blockquote { border-left: 2px solid var(--accent); padding-left: 14px; margin: 0 0 16px; }
.bk__trust blockquote p { font-size: 15px; line-height: 1.55; color: var(--dim); }
.bk__trust blockquote footer { margin-top: 8px; font-size: 13px; color: var(--mut); }
.bk__gtee { font-size: 14px; line-height: 1.55; color: var(--dim); padding-top: 14px; border-top: 1px solid var(--hairline); }
.bk__gtee b { color: var(--ink); }
.bk__alt { margin-top: 14px; font-size: 14px; color: var(--mut); }
.bk__alt a { color: var(--ink); font-weight: 600; }
.bk__alt span { font-size: 13px; }

.bk__done { text-align: center; padding: clamp(20px, 4vw, 40px) 0; }
.bk__done .tick { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 50%; background: var(--accent); color: #17120a; font-size: 24px; font-weight: 700; }
.bk__done h2 { font-size: clamp(24px, 2.6vw, 32px); }
.bk__done > p { margin: 12px auto 0; max-width: 44ch; color: var(--dim); line-height: 1.6; }
.bk__done ol { margin: 22px auto 0; max-width: 40ch; text-align: left; list-style: none; padding: 0; counter-reset: n; }
.bk__done ol li { counter-increment: n; display: flex; gap: 12px; padding: 9px 0; color: var(--dim); font-size: 15px; line-height: 1.5; }
.bk__done ol li::before { content: counter(n); flex: 0 0 24px; height: 24px; display: grid; place-items: center; border: 1px solid var(--hairline-2); border-radius: 50%; font-size: 12px; font-weight: 600; color: var(--accent); }

@media (max-width: 900px) {
  .bk { grid-template-columns: 1fr; }
  .bk__trust { position: static; order: 2; }
  .bk__tiles { grid-template-columns: 1fr 1fr; }
  .bk__row { grid-template-columns: 1fr; gap: 0; }
}
