/* =========================================================
   Seal Detail — shared stylesheet
   Performance: 1 font file, no resets bloat, no frameworks.
   ========================================================= */

:root {
  /* Luxury Minimal — warm near-black with gold accent */
  --bg:        #19181e;   /* deep warm near-black */
  --bg-2:      #1e1c25;   /* alt section background */
  --surface:   #252333;   /* cards, panels */
  --surface-2: #2c2a3c;   /* elevated panels (hover, featured) */
  --line:      #38364a;   /* borders */
  --line-soft: #302e3e;   /* subtle dividers */
  --ink:       #f2efe8;   /* primary text — warm white */
  --ink-dim:   #c4bfb0;   /* secondary text */
  --ink-soft:  #8a8578;   /* tertiary text */
  --accent:    #c9a96e;   /* warm gold */
  --accent-hi: #e0c48a;   /* lighter gold */
  --accent-2:  #e8e0d0;   /* warm platinum */
  --warn:      #f0b84a;   /* gold star */
  --glow:      rgba(201, 169, 110, 0.22); /* gold halo */
  --radius:    14px;
  --maxw:      1240px;
  --pad:       clamp(20px, 4vw, 40px);
  /* System font stacks — zero network requests, instant render */
  --font-display: ui-serif, "Iowan Old Style", "Apple Garamond", "Baskerville", "Times New Roman", "Droid Serif", Times, serif;
  --font-sans:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  background-image:
    radial-gradient(1200px 600px at 90% -10%, rgba(201,169,110,0.04), transparent 60%),
    radial-gradient(900px 500px at -10% 60%, rgba(201,169,110,0.03), transparent 60%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 15, 20, 0.85);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.5px;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: grid; place-items: center;
  overflow: hidden;
  flex: none;
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px; color: var(--ink-dim);
}
.nav-links a {
  position: relative; padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content:""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #1a1208;
  padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: transform .15s ease, box-shadow .2s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 30px -10px var(--accent); }
.nav-toggle {
  display: none; background: none; border: 0; color: var(--ink);
  font-size: 22px; padding: 8px; cursor: pointer;
}

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 10px var(--pad);
  }
  .nav-links.open a {
    padding: 14px 0; border-bottom: 1px solid var(--line);
  }
  .nav-links.open a:last-child { border-bottom: 0; }
}

/* ---------- Sticky Book Now ---------- */
.book-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  background: var(--accent); color: #1a1208;
  border-radius: 999px; font-weight: 700; font-size: 15px;
  box-shadow: 0 18px 40px -10px rgba(201, 169, 110, 0.50), 0 2px 6px rgba(0,0,0,.4);
  transition: transform .2s ease;
}
.book-fab:hover { transform: translateY(-2px) scale(1.02); }
.book-fab svg { width: 16px; height: 16px; }
@media (max-width: 640px) {
  .book-fab { padding: 11px 16px; font-size: 13px; right: 12px; bottom: 12px; }
  .book-fab svg { width: 14px; height: 14px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 0 clamp(50px, 8vw, 90px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 80% 10%, rgba(201,169,110,.16), transparent 60%),
    radial-gradient(600px 500px at 10% 90%, rgba(201,169,110,.09), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent-hi);
  margin-bottom: 18px;
}
.eyebrow::before {
  content:""; width: 24px; height: 1px; background: var(--accent-hi);
}
.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.h-display em {
  font-style: italic; color: var(--accent-2);
  font-weight: 400;
}
.lede {
  color: var(--ink-dim); font-size: clamp(16px, 1.6vw, 18px);
  max-width: 52ch; margin: 0 0 32px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn-primary {
  background: var(--accent); color: #1a1208;
  box-shadow: 0 6px 20px -8px var(--glow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -8px var(--glow);
}
.btn-ghost {
  border: 1px solid var(--line); color: var(--ink);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-hi); }

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #2c3344, #1a1d24);
  border: 1px solid var(--line);
}
.hero-visual img,
.hero-visual .hero-video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hero-video { background: var(--bg); }
.hero-stat {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  background: rgba(12,15,20,.78);
  backdrop-filter: blur(8px);
  padding: 14px 18px; border-radius: 10px;
  border: 1px solid var(--line);
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 13px;
}
.hero-stat strong { display:block; color: var(--accent-hi); font-size: 18px; font-family: var(--font-display); }
.hero-stat span { color: var(--ink-soft); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { aspect-ratio: 4/3; overflow: visible; }
  /* On mobile, move the stat card BELOW the photo so the photo is fully visible */
  .hero-stat {
    position: static;
    margin-top: 14px;
    padding: 14px 16px;
    gap: 16px;
    justify-content: space-between;
  }
  .hero-stat > div { flex: 1 1 auto; min-width: 90px; }
  .hero-stat strong { font-size: 16px; }
  .hero-stat span { font-size: 12px; }
}

/* ---------- Sections ---------- */
section { padding: clamp(60px, 8vw, 100px) 0; }
.section-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent-hi);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1; letter-spacing: -0.01em;
  margin: 0 0 16px; max-width: 22ch;
}
.section-sub {
  color: var(--ink-dim); max-width: 60ch; margin: 0 0 50px;
}

/* ---------- Service cards ---------- */
.svc-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.svc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .25s ease, background .25s ease;
}
.svc-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 12px 32px -16px var(--glow);
  background: var(--surface-2);
}
.svc-card .icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(201,169,110,.14);
  color: var(--accent-hi);
  margin-bottom: 18px;
}
.svc-card h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; margin: 0 0 8px;
}
.svc-card p { color: var(--ink-dim); margin: 0 0 18px; font-size: 15px; }
.svc-card .link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--accent); font-weight: 600;
}
.svc-card .link:hover { gap: 10px; }

/* ---------- Packages ---------- */
.pkg-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.pkg {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, box-shadow .25s ease;
}
.pkg:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 14px 36px -18px var(--glow);
}
.pkg.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(201,169,110,.10), var(--surface));
  box-shadow: 0 10px 30px -16px var(--glow);
}
.pkg-tag {
  position: absolute; top: -10px; left: 24px;
  background: var(--accent); color: #1a1208;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px -4px var(--glow);
}
.pkg h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; margin: 0 0 4px;
}
.pkg .duration { color: var(--ink-soft); font-size: 13px; margin-bottom: 18px; }
.pkg .price {
  font-family: var(--font-display);
  font-size: 42px; line-height: 1; margin: 4px 0 6px;
  letter-spacing: -0.02em;
  color: var(--accent-hi);
}
.pkg .price small { font-size: 13px; color: var(--ink-soft); font-family: var(--font-sans); margin-left: 4px; }
.pkg p.desc { color: var(--ink-dim); font-size: 14px; margin: 14px 0 20px; }
.pkg ul {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
}
.pkg ul li {
  position: relative; padding-left: 22px; color: var(--ink-dim);
}
.pkg ul li::before {
  content:""; position: absolute; left: 0; top: 8px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.pkg .btn { margin-top: auto; justify-content: center; }

/* ---------- Feature rows ---------- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
  padding: 50px 0;
  border-top: 1px solid var(--line);
}
.feature-row:first-of-type { border-top: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row .visual {
  border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid var(--line);
}
.feature-row .visual img { width: 100%; height: 100%; object-fit: cover; }
.feature-row h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(24px, 3vw, 34px); margin: 0 0 14px;
}
.feature-row p { color: var(--ink-dim); margin: 0 0 16px; }

@media (max-width: 880px) {
  .feature-row { grid-template-columns: 1fr; gap: 24px; padding: 30px 0; }
  .feature-row.reverse { direction: ltr; }
}

/* ---------- Process steps ---------- */
.steps {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  transition: border-color .2s ease, background .2s ease;
}
.step:hover {
  border-color: var(--line);
  background: var(--surface-2);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 16px; color: var(--accent-hi);
  font-weight: 500;
  letter-spacing: 2px;
  display: block; margin-bottom: 14px;
}
.step h4 { margin: 0 0 6px; font-size: 16px; }
.step p { margin: 0; color: var(--ink-dim); font-size: 14px; }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.stars {
  color: var(--warn); font-size: 14px; letter-spacing: 2px;
  margin-bottom: 14px;
}
.review p {
  font-family: var(--font-display); font-weight: 400;
  font-size: 18px; line-height: 1.45; margin: 0 0 18px;
  color: var(--ink);
}
.review .who { font-size: 13px; color: var(--ink-soft); }
.review .who strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 2px; }

/* ---------- Areas ---------- */
.area-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
  gap: 10px;
}
.area-pill {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.area-pill:hover {
  border-color: var(--accent);
  background: var(--surface-2);
  transform: translateY(-1px);
}
.area-pill::before {
  content:""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, #2a2535 0%, #1e1c25 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 70px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px;
  align-items: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content:""; position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  opacity: .25;
  pointer-events: none;
}
.cta-strip h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(26px, 3.4vw, 40px); margin: 0 0 12px;
  line-height: 1.1;
}
.cta-strip p { color: var(--ink-dim); margin: 0; }
.cta-strip .cta-row { justify-content: flex-end; }
@media (max-width: 880px) {
  .cta-strip { grid-template-columns: 1fr; }
  .cta-strip .cta-row { justify-content: flex-start; }
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block; font-size: 12px; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  background: #1c2028;
}
.field textarea { min-height: 110px; resize: vertical; }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%239aa3b2' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact two-column ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .form-card { padding: 22px 18px; border-radius: 12px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
  color: var(--ink-dim);
}
.foot-grid {
  display: grid; gap: 40px;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin-bottom: 40px;
}
.foot-grid h5 {
  color: var(--ink); font-size: 13px;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin: 0 0 16px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: 10px; font-size: 14px; }
.foot-grid a:hover { color: var(--accent); }
.foot-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 16px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 13px;
}
.socials { display: flex; gap: 14px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: border-color .2s ease, color .2s ease;
}
.socials a:hover { border-color: var(--accent); color: var(--accent); }
.socials svg { width: 16px; height: 16px; }

@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Page hero (lighter than home hero) ---------- */
.page-hero {
  padding: clamp(80px, 10vw, 130px) 0 clamp(40px, 6vw, 70px);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content:""; position: absolute; inset: 0;
  background: radial-gradient(700px 300px at 70% 0%, rgba(201,169,110,.11), transparent 60%);
  pointer-events: none;
}
.page-hero .inner { position: relative; max-width: 760px; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(38px, 6vw, 68px); line-height: 1.05;
  letter-spacing: -0.02em; margin: 14px 0 18px;
}
.page-hero p { color: var(--ink-dim); font-size: 18px; max-width: 56ch; margin: 0; }

/* ---------- Add-ons table-ish ---------- */
.addons {
  display: grid; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.addon {
  background: var(--surface);
  padding: 22px 24px;
}
.addon-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  margin-bottom: 6px;
}
.addon-head h4 { margin: 0; font-size: 16px; }
.addon-head .price { color: var(--accent); font-weight: 700; font-size: 16px; }
.addon p { margin: 0; font-size: 13px; color: var(--ink-soft); }

/* ---------- Misc ---------- */
.divider {
  height: 1px; background: var(--line);
  max-width: var(--maxw); margin: 0 auto;
}

.kbd {
  font-family: var(--font-display);
  font-size: 13px; color: var(--ink-soft);
  letter-spacing: 1.5px;
}

/* Accessibility: visible focus */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Footer heading — avoids heading hierarchy issues */
.foot-heading {
  color: var(--ink); font-size: 13px;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin: 0 0 16px; font-weight: 600;
}

/* ---------- Video showcase (packages page) ---------- */
.video-showcase {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 10px 30px -16px var(--glow);
}
.video-showcase video {
  width: 100%;
  max-width: 360px;
  border-radius: 10px;
  background: var(--bg);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line-soft);
}
@media (max-width: 760px) {
  .video-showcase {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .video-showcase video { max-width: 280px; }
  .video-showcase-text p { margin-left: auto; margin-right: auto; }
}

/* ---------- Inline photo blocks (ceramic & paint pages) ---------- */
.photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  margin: clamp(28px, 5vw, 50px) 0;
}
.photo-row figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.photo-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}
.photo-row figcaption {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--ink-dim);
  border-top: 1px solid var(--line-soft);
}
@media (max-width: 680px) {
  .photo-row { grid-template-columns: 1fr; }
}

/* ---------- SMS consent checkbox ---------- */
.sms-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  cursor: pointer;
}
.sms-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.sms-consent span {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- Background video section (packages page) ---------- */
.video-bg-section {
  position: relative;
  width: 100%;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.video-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(26,29,36,0.92) 0%, rgba(26,29,36,0.75) 45%, rgba(26,29,36,0.25) 100%),
    linear-gradient(180deg, rgba(26,29,36,0.30) 0%, rgba(26,29,36,0.55) 100%);
}
.video-bg-content {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 9vw, 110px) 0;
}
@media (max-width: 760px) {
  .video-bg-section { min-height: 420px; }
  .video-bg-overlay {
    background:
      linear-gradient(180deg, rgba(26,29,36,0.55) 0%, rgba(26,29,36,0.88) 60%, rgba(26,29,36,0.95) 100%);
  }
}

/* ---------- Before / After slider ---------- */
.ba-intro {
  max-width: 60ch;
  color: var(--ink-dim);
  font-size: 15px;
  margin: 0 auto 32px;
  text-align: center;
}
.ba-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 36px -22px var(--glow);
  margin: 0 auto 36px;
  max-width: 880px;
}
.ba-card:last-of-type { margin-bottom: 0; }
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg);
  user-select: none;
  cursor: ew-resize;
  touch-action: none;
}
.ba-card.ba-portrait {
  max-width: 560px;
}
.ba-card.ba-portrait .ba-slider {
  aspect-ratio: 3 / 4;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-before-wrap {
  position: absolute;
  inset: 0;
  width: 50%; /* default split; JS updates */
  overflow: hidden;
  pointer-events: none;
  border-right: 2px solid rgba(255,255,255,0.85);
  box-shadow: 2px 0 8px rgba(0,0,0,0.3);
}
.ba-before-wrap .ba-img {
  /* JS sets explicit width = slider width so image matches the after layer */
  max-width: none;
}
.ba-label {
  position: absolute;
  top: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(26,29,36,0.85);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 3;
}
.ba-label-before { left: 18px; }
.ba-label-after { right: 18px; }
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%; /* default; JS updates */
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--bg);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  pointer-events: none;
  z-index: 3;
  transition: transform 0.15s ease;
}
.ba-handle svg { width: 22px; height: 22px; }
.ba-slider:active .ba-handle { transform: translate(-50%, -50%) scale(1.1); }
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}
.ba-meta {
  padding: 22px 26px 24px;
  border-top: 1px solid var(--line-soft);
}
.ba-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 6px;
}
.ba-sub {
  margin: 0;
  color: var(--ink-dim);
  font-size: 14px;
}
.ba-coming-soon {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  margin: 32px 0 0;
}
@media (max-width: 600px) {
  .ba-label { font-size: 10px; padding: 5px 10px; top: 14px; }
  .ba-handle { width: 38px; height: 38px; }
}

/* ---------- Reviews section header (Allum-style "From Google" badge) ---------- */
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.from-google {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.from-google:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -16px var(--glow);
}
.from-google > svg:first-child { color: var(--accent-hi); flex-shrink: 0; }
.from-google span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}
.from-google strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-hi);
}
.from-google span small,
.from-google span :last-child {
  font-size: 12px;
  color: var(--ink-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  margin-top: 2px;
}
.from-google .arrow { color: var(--ink-soft); flex-shrink: 0; }
.reviews-cta {
  text-align: center;
  margin-top: 36px;
}

/* ---------- Brands / "We work with" section ---------- */
.brands-head {
  margin-bottom: 50px;
}
.brand-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.brand-grid li {
  background: var(--surface);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  min-height: 130px;
  transition: background .25s ease, transform .25s ease;
}
.brand-grid li:hover {
  background: var(--surface-2);
  transform: translateY(-1px);
}
.brand-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
  display: inline-block;
}
.brand-wordmark strong {
  font-weight: 600;
  color: var(--ink);
}
.brand-wordmark sup {
  font-size: 9px;
  color: var(--ink-soft);
  margin-left: 1px;
  vertical-align: super;
  font-weight: 400;
}
.brand-grid li > small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-family: var(--font-sans);
}
@media (max-width: 900px) {
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .brand-grid li { padding: 24px 14px; min-height: 110px; }
  .brand-wordmark { font-size: 18px; }
}

/* ---------- Scroll-reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ---------- Header gold underline on scroll ---------- */
.site-header.scrolled {
  border-bottom-color: rgba(201, 169, 110, 0.25);
  box-shadow: 0 1px 0 0 rgba(201, 169, 110, 0.08);
}

/* ===================================================================
   Tiered packages page (Refresh / Signature / Reserve)
   =================================================================== */

/* Anchor-link tab bar above the category groups */
.pkg-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 48px;
}
.pkg-tabs a {
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-dim);
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.pkg-tabs a:hover {
  border-color: var(--accent);
  color: var(--ink);
  transform: translateY(-1px);
}

/* Section heading per category group */
.category-header {
  text-align: center;
  margin: 64px auto 32px;
  max-width: 60ch;
}
.category-header .section-eyebrow { justify-content: center; }
.category-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  margin: 6px 0 12px;
  color: var(--ink);
}
.category-header p {
  color: var(--ink-dim);
  margin: 0;
}

/* Per-tier pricing grid inside each package card */
.tier-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 0 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
}
.tier-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.tier-price .size {
  font-size: 10.5px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.tier-price .amt {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent);
  font-weight: 500;
  line-height: 1;
}

/* "Save $X" pill on Full Detail cards */
.savings-badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 4px 12px;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.32);
  border-radius: 999px;
  font-size: 12px;
  color: var(--accent-hi);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Italic disclaimer block at the bottom of each card */
.pkg .disclaimer {
  font-style: italic;
  font-size: 12px;
  color: var(--ink-soft);
  margin: 14px 0 18px;
  line-height: 1.55;
}
.pkg .disclaimer span { display: block; }

/* Sub-list label inside Full Detail cards (Interior / Exterior groupings) */
.pkg .list-head {
  margin: 14px 0 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
}
.pkg .list-head:first-of-type { margin-top: 0; }
.pkg ul + .list-head { margin-top: 18px; }

/* Vehicle size guide block */
.size-guide {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  margin: 56px 0 24px;
}
.size-guide h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 16px;
}
.size-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.size-guide-item h4 {
  font-size: 13px;
  color: var(--accent);
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.size-guide-item p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
}

/* Small note above add-ons explaining tier inclusions */
.addons-note {
  max-width: 60ch;
  margin: 0 auto 28px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid var(--accent);
  border-radius: 0 8px 8px 0;
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.55;
}
.addons-note strong { color: var(--ink); font-weight: 500; }

/* Tighter spacing for the 3-up grids on tiered cards */
.pkg-grid.tier-grid {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}

/* ===================================================================
   City landing pages (West Seattle, Bellevue, Mercer Island, etc.)
   =================================================================== */

/* Hero stat tiles (inline in city-page hero) */
.hero-stats-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  margin-bottom: 8px;
}
.hero-stat-tile {
  flex: 1 1 180px;
  min-width: 160px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}
.hero-stat-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--accent-hi);
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-stat-tile span {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Condensed package category cards on city pages */
.pkg-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin: 8px 0 32px;
}
.pkg-summary {
  position: relative;
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}
.pkg-summary.featured {
  border-color: rgba(201, 169, 110, 0.45);
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.06), var(--bg-2) 60%);
}
.pkg-summary .pkg-tag {
  position: absolute;
  top: -10px; left: 20px;
  background: var(--accent);
  color: #1a1208;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pkg-summary h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}
.pkg-summary .from {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  font-weight: 500;
  margin: 4px 0 14px;
}
.pkg-summary .from small {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-soft);
  margin-right: 6px;
  font-weight: 400;
}
.pkg-summary p {
  color: var(--ink-dim);
  font-size: 14px;
  margin: 0 0 18px;
  line-height: 1.55;
}
.pkg-summary .tiers-line {
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
}
.pkg-summary .btn {
  margin-top: auto;
  justify-content: center;
}

/* "Common scenarios" 3-paragraph layout */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 18px;
}
.scenario {
  padding: 0;
}
.scenario h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 10px;
  color: var(--ink);
}
.scenario p {
  color: var(--ink-dim);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* Local testimonial block (single big quote) */
.city-testimonial {
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.city-testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  margin: 16px 0 18px;
  border: 0;
  padding: 0;
}
.city-testimonial blockquote::before { content: "\201C"; color: var(--accent); margin-right: 4px; }
.city-testimonial blockquote::after  { content: "\201D"; color: var(--accent); margin-left: 4px; }
.city-testimonial cite {
  font-style: normal;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.city-testimonial cite strong { color: var(--ink-dim); font-weight: 500; }

/* Service Areas hub page card grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 32px;
}
.area-card {
  padding: 26px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  display: block;
}
.area-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 169, 110, 0.4);
}
.area-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink);
}
.area-card p {
  font-size: 14px;
  color: var(--ink-dim);
  margin: 0 0 16px;
  line-height: 1.55;
}
.area-card .area-arrow {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* 5-column footer (Service areas column added) */
@media (min-width: 920px) {
  .foot-grid.foot-grid-5 {
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  }
}

/* ===================================================================
   Fixed-background image on city landing pages
   Body content scrolls over an image that stays in place.
   Mobile gets a 9:16 portrait crop; desktop gets a 16:9 landscape crop.
   =================================================================== */

body.has-bg-video {
  background: var(--bg);
  /* Mobile-first: portrait image. Desktop overrides below at min-width. */
  background-image: url("city-bg-mobile.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* Desktop / tablet: use the landscape crop */
@media (min-width: 769px) {
  body.has-bg-video {
    background-image: url("city-bg-desktop.jpg");
  }
}

/* iOS Safari doesn't support background-attachment: fixed on body.
   Use a fixed positioned ::before pseudo-element instead so the image
   actually stays put while content scrolls over it. */
body.has-bg-video::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("city-bg-mobile.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (min-width: 769px) {
  body.has-bg-video::before {
    background-image: url("city-bg-desktop.jpg");
  }
}

/* Dark overlay sits between the image and page content so text stays readable.
   Gradient adds depth at the top + bottom edges. */
.page-bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,14,18,0.78) 0%, rgba(15,14,18,0.88) 50%, rgba(15,14,18,0.94) 100%);
  pointer-events: none;
}

/* Header — translucent panel with frosted-glass blur */
body.has-bg-video .site-header {
  background: rgba(25, 24, 30, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
body.has-bg-video .site-header.scrolled {
  background: rgba(25, 24, 30, 0.92);
}

/* Sections that were previously bg-2 become translucent panels */
body.has-bg-video section[style*="--bg-2"] {
  background: rgba(30, 28, 37, 0.82) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Footer */
body.has-bg-video .site-footer {
  background: rgba(20, 19, 24, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Hero text contrast boost over the image */
body.has-bg-video .page-hero h1 {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
body.has-bg-video .page-hero p,
body.has-bg-video .page-hero .eyebrow {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* Cards over the image get a slightly more opaque background */
body.has-bg-video .svc-card,
body.has-bg-video .pkg-summary,
body.has-bg-video .area-card,
body.has-bg-video .hero-stat-tile,
body.has-bg-video .size-guide {
  background: rgba(30, 28, 37, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ===================================================================
   Maintenance Membership callout (packages page + city pages)
   =================================================================== */
.membership-callout {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12) 0%, rgba(201, 169, 110, 0.04) 100%);
  border: 1px solid rgba(201, 169, 110, 0.32);
  border-radius: 16px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 32px;
}
@media (max-width: 720px) {
  .membership-callout {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px;
  }
}
.membership-callout .badge {
  display: inline-block;
  background: var(--accent);
  color: #1a1208;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.membership-callout h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--ink);
}
.membership-callout p {
  color: var(--ink-dim);
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 56ch;
}
.membership-callout .price {
  color: var(--accent-hi);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.membership-callout .btn {
  white-space: nowrap;
}

/* "Everything in [tier], plus:" header on upper-tier package cards */
.pkg .includes-prev {
  font-size: 13px;
  color: var(--accent-hi);
  font-weight: 500;
  margin: 0 0 4px;
  letter-spacing: 0.01em;
}
.pkg .includes-prev strong {
  font-weight: 500;
  color: var(--ink);
}
.pkg .list-head.plus-head {
  margin-top: 2px;
}
