/* ============================================================
   DETAILING SANCTUARY - Core stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #f0b429;
  --gold-light: #ffd166;
  --gold-deep: #b8860b;
  --gold-glow: rgba(240, 180, 41, 0.25);

  --black: #08080a;
  --surface-1: #101013;
  --surface-2: #17171c;
  --surface-3: #202027;

  --text: #f4f4f5;
  --text-dim: #b4b4bb;
  --text-muted: #7c7c86;

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --display: 'Oswald', 'Segoe UI Semibold', 'Arial Narrow', sans-serif;
  --body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --shell: 1240px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold); color: #000; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* ---------- Layout ---------- */
.shell { max-width: var(--shell); margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 78px 0; }
.section--alt { background: var(--surface-1); }
.section--edge { border-top: 1px solid var(--line); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: 0.005em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); opacity: 0.7; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 28px; height: 1px; background: var(--gold); opacity: 0.7; }

.h-xl { font-size: clamp(40px, 6.4vw, 74px); text-transform: uppercase; }
.h-lg { font-size: clamp(30px, 4.2vw, 46px); text-transform: uppercase; }
.h-md { font-size: clamp(23px, 2.6vw, 30px); text-transform: uppercase; }
.h-sm { font-size: 19px; text-transform: uppercase; letter-spacing: 0.02em; }

.gold { color: var(--gold); }
.lede { font-size: 17.5px; color: var(--text-dim); line-height: 1.75; }
.muted { color: var(--text-muted); }

.section-head { max-width: 660px; margin: 0 auto 62px; text-align: center; }
.section-head p { margin: 18px 0 0; color: var(--text-dim); font-size: 16.5px; }
.section-head--left { margin-left: 0; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--radius); border: 1px solid transparent; background: transparent; cursor: pointer;
  font-family: var(--display); font-size: 14px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.28s var(--ease); position: relative; overflow: hidden;
}
.btn--gold { background: var(--gold); color: #0a0a0a; }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 30px -8px var(--gold-glow); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--dark { background: #0a0a0a; color: var(--gold); border-color: var(--gold-deep); }
.btn--dark:hover { background: var(--gold); color: #0a0a0a; }
.btn--sm { padding: 11px 20px; font-size: 12.5px; }
.btn--full { width: 100%; }
.btn[disabled] { opacity: 0.5; pointer-events: none; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-row--center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: all 0.35s var(--ease);
  background: linear-gradient(180deg, rgba(8,8,10,0.92), rgba(8,8,10,0.35));
  backdrop-filter: blur(2px);
}
.site-header.scrolled {
  background: rgba(8, 8, 10, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 40px -20px #000;
}
.header-inner {
  max-width: var(--shell); margin: 0 auto; padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: padding 0.35s var(--ease);
}
.site-header.scrolled .header-inner { padding: 9px 28px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 48px; width: auto; transition: height 0.35s var(--ease); }
.site-header.scrolled .brand img { height: 38px; }

.main-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: block; padding: 10px 15px; font-family: var(--display);
  font-size: 13.5px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim); transition: color 0.2s; position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--gold); }

/* Dropdown */
.main-nav .has-sub { position: relative; }
.main-nav .has-sub > a::before {
  content: ""; position: absolute; right: 2px; top: 50%; margin-top: -2px;
  border: 4px solid transparent; border-top-color: currentColor; opacity: 0.55;
}
.main-nav .has-sub > a { padding-right: 22px; }
.sub-menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 224px;
  background: rgba(16,16,19,0.98); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 8px !important; display: block !important;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.28s var(--ease); box-shadow: 0 24px 50px -20px #000;
}
.main-nav .has-sub:hover .sub-menu,
.main-nav .has-sub:focus-within .sub-menu { opacity: 1; visibility: visible; transform: none; }
.sub-menu li { display: block; width: 100%; }
.sub-menu a { padding: 11px 14px; font-size: 13px; color: var(--text-dim); border-radius: 3px; }
.sub-menu a::after { display: none; }
.sub-menu a:hover { background: rgba(240,180,41,0.1); color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 9px; font-family: var(--display);
  font-size: 14px; letter-spacing: 0.06em; color: var(--text);
  transition: color 0.2s;
}
.header-phone:hover { color: var(--gold); }
.header-phone svg { width: 16px; height: 16px; stroke: var(--gold); }

.nav-toggle {
  display: none; width: 44px; height: 44px; background: none; border: 1px solid var(--line-strong);
  border-radius: var(--radius); position: relative; padding: 0;
}
.nav-toggle span {
  position: absolute; left: 12px; width: 20px; height: 1.5px; background: var(--text);
  transition: all 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 190; background: rgba(8,8,10,0.98);
  backdrop-filter: blur(20px); display: flex; flex-direction: column;
  /* Top-aligned, not centred: the menu is taller than a phone screen, and centring pushes the
     first and last links off both ends where nothing can reach them. */
  justify-content: flex-start;
  overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  padding: 90px 32px 40px;
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.mobile-nav > * { flex-shrink: 0; }
body.nav-open .mobile-nav { opacity: 1; visibility: visible; }
.mobile-nav ul { list-style: none; margin: 0 0 34px; padding: 0; }
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav a {
  display: block; padding: 17px 0; font-family: var(--display); font-size: 22px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--text);
  transform: translateY(14px); opacity: 0; transition: all 0.4s var(--ease);
}
body.nav-open .mobile-nav a { transform: translateY(0); opacity: 1; }
.mobile-nav li:nth-child(1) a { transition-delay: 0.06s; }
.mobile-nav li:nth-child(2) a { transition-delay: 0.10s; }
.mobile-nav li:nth-child(3) a { transition-delay: 0.14s; }
.mobile-nav li:nth-child(4) a { transition-delay: 0.18s; }
.mobile-nav li:nth-child(5) a { transition-delay: 0.22s; }
.mobile-nav li:nth-child(6) a { transition-delay: 0.26s; }
.mobile-nav li:nth-child(7) a { transition-delay: 0.30s; }
.mobile-nav li:nth-child(8) a { transition-delay: 0.34s; }
.mobile-nav li:nth-child(9) a { transition-delay: 0.38s; }
.mobile-nav li:nth-child(10) a { transition-delay: 0.42s; }
.mobile-nav li:nth-child(11) a { transition-delay: 0.46s; }
.mobile-nav a.active { color: var(--gold); }
.mobile-nav-foot { display: flex; flex-direction: column; gap: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.hero--full { min-height: calc(100vh - 32px); }
.hero--page { min-height: 62vh; padding-top: 120px; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0.72) 0%, rgba(8,8,10,0.35) 35%, rgba(8,8,10,0.88) 82%, var(--black) 100%);
}
.hero-media--dim img { filter: brightness(0.72); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 0 0 88px; }
.hero--page .hero-inner { padding-bottom: 62px; }
.hero-copy { max-width: 760px; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy .lede { max-width: 560px; margin-bottom: 34px; }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--text-muted);
}
.hero-scroll i { display: block; width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* Breadcrumb */
.crumb { display: flex; gap: 10px; align-items: center; font-size: 12.5px; color: var(--text-muted); margin-bottom: 20px; letter-spacing: 0.05em; }
.crumb a:hover { color: var(--gold); }

/* ---------- Stat bar ---------- */
.statbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface-1); }
.statbar-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 38px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat b { display: block; font-family: var(--display); font-size: 42px; font-weight: 600; color: var(--gold); line-height: 1; }
.stat span { display: block; margin-top: 9px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.svc-card {
  background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 30px 32px; transition: all 0.35s var(--ease); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.svc-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.svc-card:hover { background: var(--surface-2); border-color: rgba(240,180,41,0.35); transform: translateY(-6px); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card img.badge { height: 74px; width: auto; align-self: flex-start; margin-bottom: 22px; }
.hero-badge { height: 96px; width: auto; display: block; margin: 0 0 18px; filter: drop-shadow(0 10px 24px rgba(0,0,0,0.6)); }
.split-badge { height: 66px; width: auto; display: block; margin: 0 0 16px; }
.svc-card h3 { margin-bottom: 12px; }
.svc-card p { color: var(--text-dim); font-size: 15px; margin: 0 0 22px; flex: 1; }
.svc-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); }
.svc-price { font-family: var(--display); font-size: 17px; color: var(--gold); letter-spacing: 0.04em; }
.svc-link { font-family: var(--display); font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); display: flex; align-items: center; gap: 7px; transition: all 0.25s; }
.svc-card:hover .svc-link { color: var(--gold); gap: 12px; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius); }
.split-media .frame-tag {
  position: absolute; bottom: 22px; left: 22px; background: rgba(8,8,10,0.85);
  backdrop-filter: blur(8px); border: 1px solid var(--line-strong); padding: 10px 16px;
  font-family: var(--display); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
}
.split-body h2 { margin-bottom: 20px; }
.split-body p { color: var(--text-dim); margin: 0 0 24px; }

.ticklist { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.ticklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.2px; color: var(--text-dim); }
.ticklist li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; stroke: var(--gold); }

/* ---------- Before / After slider ---------- */
.ba {
  position: relative; width: 100%; aspect-ratio: 3 / 2; overflow: hidden;
  border-radius: var(--radius); user-select: none; cursor: ew-resize;
  border: 1px solid var(--line);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; will-change: width; }
.ba-after-wrap img { width: auto; height: 100%; max-width: none; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--gold);
  transform: translateX(-1px); pointer-events: none; z-index: 4; will-change: left;
  box-shadow: 0 0 22px rgba(240,180,41,0.6);
}
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; gap: 3px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
}
.ba-knob svg { width: 20px; height: 20px; stroke: #0a0a0a; }
.ba-label {
  position: absolute; top: 18px; z-index: 5; background: rgba(8,8,10,0.8); backdrop-filter: blur(6px);
  padding: 7px 14px; font-family: var(--display); font-size: 11.5px; letter-spacing: 0.18em;
  text-transform: uppercase; border: 1px solid var(--line-strong); pointer-events: none;
}
.ba-label--before { left: 18px; }
.ba-label--after { right: 18px; color: var(--gold); border-color: rgba(240,180,41,0.4); }

/* ---------- Before / After cross-fade ---------- */
.compare { position: relative; }
.compare-stage {
  position: relative; aspect-ratio: 3 / 2; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface-2);
}
.compare-stage--portrait { aspect-ratio: 4 / 5; max-width: 470px; margin: 0 auto; }
.compare-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.04); transition: opacity 0.7s var(--ease), transform 1.4s var(--ease);
}
.compare-img.is-active { opacity: 1; transform: scale(1); }
.compare-badge {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  background: rgba(8,8,10,0.82); backdrop-filter: blur(6px); border: 1px solid var(--line-strong);
  padding: 7px 15px; font-family: var(--display); font-size: 11.5px;
  letter-spacing: 0.2em; text-transform: uppercase; transition: color 0.3s, border-color 0.3s;
}
.compare-badge.after { color: var(--gold); border-color: rgba(240,180,41,0.45); }
.compare-tabs {
  display: flex; gap: 0; margin-top: 14px; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.compare-tab {
  flex: 1; padding: 13px 10px; background: transparent; border: none; color: var(--text-muted);
  font-family: var(--display); font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  transition: all 0.25s;
}
.compare-tab:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.compare-tab.active { background: var(--gold); color: #0a0a0a; }
.compare-caption { margin-top: 12px; font-size: 13px; color: var(--text-muted); text-align: center; }

/* ---------- Feature video (home) ---------- */
.feature-video { position: relative; }
.feature-video video { display: block; width: 100%; max-height: 760px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); background: #000; }
.feature-video .frame-tag { bottom: auto; top: 18px; }

/* ---------- Gallery panes (photos | videos) ---------- */
.pane-tabs { display: flex; max-width: 360px; margin: 0 auto 36px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pane-tab { flex: 1; padding: 13px 10px; background: transparent; border: none; color: var(--text-muted); font-family: var(--display); font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; transition: all 0.25s; }
.pane-tab:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.pane-tab.active { background: var(--gold); color: #0a0a0a; }
.pane[hidden] { display: none; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto 44px; }
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 42px; }
.filter-btn {
  padding: 11px 22px; background: transparent; border: 1px solid var(--line);
  border-radius: 100px; color: var(--text-dim); font-family: var(--display);
  font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; transition: all 0.25s;
}
.filter-btn:hover { border-color: var(--line-strong); color: var(--text); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #0a0a0a; }

.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gal-item {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius);
  cursor: pointer; background: var(--surface-2); border: 1px solid transparent; transition: all 0.35s var(--ease);
}
.gal-item.hide { display: none; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gal-item:hover img { transform: scale(1.07); }
.gal-item:hover { border-color: rgba(240,180,41,0.4); }
.gal-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; background: linear-gradient(180deg, transparent 45%, rgba(8,8,10,0.92));
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay b { font-family: var(--display); font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; }
.gal-overlay span { font-size: 12px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.gal-item.tall { grid-row: span 2; aspect-ratio: 2 / 3; }
.gal-item.wide { grid-column: span 2; aspect-ratio: 8 / 3; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 500; background: rgba(4,4,6,0.97);
  display: flex; align-items: center; justify-content: center; padding: 60px 70px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: var(--radius); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,0.06); border: 1px solid var(--line-strong);
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; transition: all 0.25s; color: var(--text);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-close svg, .lb-prev svg, .lb-next svg { width: 20px; height: 20px; stroke: currentColor; }
.lb-caption {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); text-align: center;
  font-family: var(--display); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim);
}
.lb-caption span { color: var(--gold); }

/* ---------- Video reels ---------- */
.reel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.reel {
  position: relative; aspect-ratio: 9 / 16; border-radius: var(--radius); overflow: hidden;
  background: #000; border: 1px solid var(--line); cursor: pointer; transition: all 0.35s var(--ease);
}
.reel:hover { border-color: rgba(240,180,41,0.45); transform: translateY(-5px); }
.reel video { width: 100%; height: 100%; object-fit: cover; }
.reel-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(8,8,10,0.25), rgba(8,8,10,0.7));
  transition: opacity 0.3s;
}
.reel.playing .reel-play { opacity: 0; pointer-events: none; }
.reel-play i {
  width: 62px; height: 62px; border-radius: 50%; border: 1.5px solid var(--gold);
  background: rgba(8,8,10,0.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
}
.reel-play i::after { content: ""; border-left: 15px solid var(--gold); border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 4px; }
.reel-tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 3; font-family: var(--display);
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(8,8,10,0.75); padding: 6px 12px; border: 1px solid var(--line);
  transition: opacity 0.3s;
}
.reel.playing .reel-tag { opacity: 0; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.step { padding: 34px 28px; border-left: 1px solid var(--line); position: relative; transition: background 0.3s; }
.step:hover { background: var(--surface-1); }
.step:last-child { border-right: 1px solid var(--line); }
.step b {
  display: block; font-family: var(--display); font-size: 46px; font-weight: 300;
  color: var(--gold); opacity: 0.35; line-height: 1; margin-bottom: 16px;
}
.step h4 { font-size: 17px; text-transform: uppercase; margin-bottom: 10px; }
.step p { font-size: 14.4px; color: var(--text-muted); margin: 0; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 42px 32px 34px; display: flex; flex-direction: column; position: relative;
  transition: all 0.35s var(--ease);
}
.price-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.price-card--feature {
  background: linear-gradient(170deg, rgba(240,180,41,0.09), var(--surface-1) 55%);
  border-color: rgba(240,180,41,0.45);
}
.price-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0a0a0a; font-family: var(--display); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 16px; border-radius: 2px; white-space: nowrap;
}
.price-card h3 { margin-bottom: 6px; }
.price-card .sub { font-size: 13.5px; color: var(--text-muted); margin-bottom: 22px; }
.price-amount { font-family: var(--display); font-size: 46px; font-weight: 600; color: var(--gold); line-height: 1; }
.price-amount small { font-size: 15px; color: var(--text-muted); font-weight: 400; letter-spacing: 0.04em; margin-left: 6px; }
.price-note { font-size: 12.5px; color: var(--text-muted); margin: 10px 0 26px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 30px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.price-card ul li { display: flex; gap: 12px; font-size: 14.6px; color: var(--text-dim); align-items: flex-start; }
.price-card ul li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; stroke: var(--gold); }
.price-card ul li.off { color: var(--text-muted); opacity: 0.55; }
.price-card ul li.off svg { stroke: var(--text-muted); }

/* Price table */
.ptable { width: 100%; border-collapse: collapse; font-size: 15px; }
.ptable th, .ptable td { padding: 17px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.ptable th { font-family: var(--display); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.ptable tbody tr { transition: background 0.2s; }
.ptable tbody tr:hover { background: var(--surface-1); }
.ptable td.price { font-family: var(--display); color: var(--gold); font-size: 17px; white-space: nowrap; }
.ptable td.svc { color: var(--text); font-weight: 500; }
.ptable td small { display: block; color: var(--text-muted); font-size: 13px; margin-top: 3px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-1); }

/* ---------- Testimonials ---------- */
.tst-track { position: relative; overflow: hidden; }
.tst-slides { display: flex; transition: transform 0.55s var(--ease); }
.tst-slide { min-width: 100%; padding: 0 4px; }
.tst-card {
  background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 46px 48px; text-align: center; max-width: 800px; margin: 0 auto;
}
.tst-stars { color: var(--gold); letter-spacing: 5px; font-size: 16px; margin-bottom: 22px; }
.tst-card blockquote { margin: 0 0 26px; font-size: 20px; line-height: 1.6; color: var(--text); font-weight: 300; }
.tst-who { font-family: var(--display); font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; }
.tst-car { font-size: 13px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 3px; }
.tst-nav { display: flex; justify-content: center; gap: 14px; margin-top: 32px; align-items: center; }
.tst-arrow {
  width: 44px; height: 44px; border-radius: 50%; background: transparent; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; color: var(--text-dim); transition: all 0.25s;
}
.tst-arrow:hover { background: var(--gold); border-color: var(--gold); color: #0a0a0a; }
.tst-arrow svg { width: 17px; height: 17px; stroke: currentColor; }
.tst-dots { display: flex; gap: 8px; }
.tst-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--surface-3); border: none; padding: 0; transition: all 0.25s; }
.tst-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ---------- Accordion ---------- */
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%; background: none; border: none; color: var(--text); text-align: left;
  padding: 24px 46px 24px 0; font-family: var(--display); font-size: 17px;
  text-transform: uppercase; letter-spacing: 0.03em; position: relative; transition: color 0.25s;
}
.acc-head:hover { color: var(--gold); }
.acc-head::after, .acc-head::before {
  content: ""; position: absolute; right: 8px; top: 50%; background: var(--gold); transition: transform 0.3s var(--ease);
}
.acc-head::after { width: 15px; height: 1.5px; transform: translateY(-50%); }
.acc-head::before { width: 1.5px; height: 15px; right: 15px; transform: translateY(-50%); }
.acc-item.open .acc-head::before { transform: translateY(-50%) rotate(90deg); opacity: 0; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.acc-body div { padding: 0 40px 26px 0; color: var(--text-dim); font-size: 15.4px; }

/* ---------- Forms ---------- */
.form-card { background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--display); font-size: 11.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 9px;
}
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--black); border: 1px solid var(--line); color: var(--text);
  padding: 14px 16px; border-radius: var(--radius); font-family: var(--body); font-size: 15px;
  transition: all 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240,180,41,0.12);
}
.field textarea { resize: vertical; min-height: 118px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e0574a; }
.field .err { display: none; color: #e0574a; font-size: 12.5px; margin-top: 7px; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.choice {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; cursor: pointer; transition: all 0.25s; background: var(--black);
}
.choice:hover { border-color: var(--line-strong); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice b { display: block; font-family: var(--display); font-size: 14.5px; text-transform: uppercase; letter-spacing: 0.05em; }
.choice span { display: block; font-size: 12.5px; color: var(--text-muted); margin-top: 3px; }
.choice.selected { border-color: var(--gold); background: rgba(240,180,41,0.07); }
.choice.selected b { color: var(--gold); }

.form-steps { display: flex; gap: 8px; margin-bottom: 32px; }
.form-step-dot { flex: 1; height: 3px; background: var(--surface-3); border-radius: 2px; overflow: hidden; position: relative; }
.form-step-dot.done::after, .form-step-dot.current::after {
  content: ""; position: absolute; inset: 0; background: var(--gold);
}
.form-panel { display: none; }
.form-panel.active { display: block; animation: fadeUp 0.4s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.form-nav { display: flex; gap: 12px; margin-top: 8px; }

.estimate {
  background: var(--black); border: 1px solid rgba(240,180,41,0.3); border-radius: var(--radius);
  padding: 22px 24px; margin-bottom: 24px; display: flex; justify-content: space-between; align-items: center;
}
.estimate span { font-family: var(--display); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }
.estimate b { font-family: var(--display); font-size: 30px; color: var(--gold); line-height: 1; }

.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; animation: fadeUp 0.5s var(--ease); }
.form-success .tick {
  width: 72px; height: 72px; border-radius: 50%; border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.form-success .tick svg { width: 32px; height: 32px; stroke: var(--gold); }

/* ---------- Contact info ---------- */
.info-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-item:last-child { border-bottom: none; }
.info-ic {
  width: 44px; height: 44px; border-radius: var(--radius); background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-ic svg { width: 19px; height: 19px; stroke: var(--gold); }
.info-item b { display: block; font-family: var(--display); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.info-item a, .info-item p { font-size: 16px; color: var(--text); margin: 0; transition: color 0.2s; }
.info-item a:hover { color: var(--gold); }

/* ---------- Trust / badges ---------- */
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; }
.trust-chip {
  display: flex; align-items: center; gap: 10px; padding: 12px 18px;
  border: 1px solid var(--line); border-radius: 100px; font-size: 13.5px; color: var(--text-dim);
  background: var(--surface-1);
}
.trust-chip svg { width: 16px; height: 16px; stroke: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.cta-band-bg { position: absolute; inset: 0; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.28) grayscale(0.3); }
.cta-band-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--black) 5%, rgba(8,8,10,0.55) 60%, var(--black)); }
.cta-band .shell { position: relative; z-index: 2; padding-top: 92px; padding-bottom: 92px; text-align: center; }
.cta-band h2 { margin-bottom: 18px; }
.cta-band p { color: var(--text-dim); max-width: 540px; margin: 0 auto 34px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface-1); border-top: 1px solid var(--line); padding: 72px 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 46px; padding-bottom: 56px; }
.foot-brand img { height: 58px; width: auto; margin-bottom: 20px; }
.foot-brand p { color: var(--text-muted); font-size: 14.5px; max-width: 300px; margin: 0 0 20px; }
.foot-col h4 { font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col a, .foot-col li { font-size: 14.5px; color: var(--text-muted); transition: color 0.2s; }
.foot-col a:hover { color: var(--gold); }
.foot-bottom {
  border-top: 1px solid var(--line); padding: 24px 0 30px; display: flex;
  justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-muted);
}
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: all 0.25s;
}
.social-row a:hover { border-color: var(--gold); background: var(--gold); }
.social-row svg { width: 17px; height: 17px; stroke: var(--text-dim); transition: stroke 0.25s; }
.social-row a:hover svg { stroke: #0a0a0a; }

/* Test-site notice */
  background: var(--gold); color: #0a0a0a; text-align: center; padding: 7px 16px;
  font-family: var(--display); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  position: relative; z-index: 300;
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 150; width: 46px; height: 46px;
  border-radius: 50%; background: var(--gold); border: none; display: flex;
  align-items: center; justify-content: center; opacity: 0; visibility: hidden;
  transform: translateY(12px); transition: all 0.3s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold-light); }
.to-top svg { width: 18px; height: 18px; stroke: #0a0a0a; }

/* ---------- Reveal animation ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle { display: block; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 1px solid var(--line); }
  .reel-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
}
@media (max-width: 860px) {
  .hero-badge { height: 74px; margin-bottom: 14px; }
  .split-badge { height: 56px; }
  .section { padding: 78px 0; }
  .shell { padding: 0 20px; }
  .grid-3, .grid-2, .price-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 38px; }
  .split--reverse .split-media { order: 0; }
  .statbar-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item.wide { grid-column: span 2; }
  .gal-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .reel-grid { grid-template-columns: repeat(2, 1fr); }
  .tst-card { padding: 34px 24px; }
  .tst-card blockquote { font-size: 17px; }
  .lightbox { padding: 60px 16px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .form-card { padding: 26px 20px; }
  .field-row, .choice-grid { grid-template-columns: 1fr; }
  .hero--full { min-height: 92vh; }
}
@media (max-width: 860px) {
  .hero-scroll { display: none; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 1px solid var(--line); }
  .gal-grid { grid-template-columns: 1fr; }
  .gal-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .reel-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; }
  .btn-row .btn, .btn--full { width: 100%; }
  .header-inner { padding: 12px 18px; gap: 12px; }
  .header-cta { gap: 8px; }
  .header-cta .btn { padding: 10px 14px; font-size: 11px; letter-spacing: 0.08em; }
  .brand img { height: 40px; }
  .site-header.scrolled .brand img { height: 34px; }
  .nav-toggle { width: 40px; height: 40px; }
  .nav-toggle span { left: 10px; }
  .nav-toggle span:nth-child(1) { top: 14px; }
  .nav-toggle span:nth-child(2) { top: 19px; }
  .nav-toggle span:nth-child(3) { top: 24px; }
  body.nav-open .nav-toggle span:nth-child(1),
  body.nav-open .nav-toggle span:nth-child(3) { top: 19px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ---------- Slim hero for text-only pages ---------- */
.hero--slim { min-height: 0; padding-top: 148px; }
.hero--slim .hero-inner { padding-bottom: 44px; }
.hero--slim .lede { max-width: 640px; }

/* ---------- Long-form legal / policy copy ---------- */
.legal { color: var(--text-dim); font-size: 15.5px; line-height: 1.85; }
.legal h2 { color: var(--white); margin: 46px 0 16px; }
.legal h2:first-of-type { margin-top: 8px; }
.legal p { margin: 0 0 18px; }
.legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--white); }
.legal strong { color: var(--text); }
.legal .ticklist { margin: 0 0 22px; }
.legal .ticklist li { align-items: flex-start; }
.legal .ticklist li::before {
  content: ""; flex: none; width: 6px; height: 6px; margin: 10px 14px 0 0;
  border-radius: 50%; background: var(--gold);
}
.legal .muted { font-size: 13.5px; letter-spacing: 0.04em; text-transform: uppercase; }
.notice {
  border: 1px solid rgba(240,180,41,0.35); background: rgba(240,180,41,0.07);
  border-radius: var(--radius); padding: 20px 24px; margin: 0 0 34px; color: var(--text);
}
.notice strong { color: var(--gold); }

/* ---------- Keyboard access ---------- */
.skip-link {
  position: fixed; left: 14px; top: -70px; z-index: 999;
  background: var(--gold); color: #0a0a0a;
  padding: 13px 22px; border-radius: 10px;
  font-family: var(--font-head); font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 14px; }
main:focus { outline: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }
.gal-item:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

/* ---------- Cookie consent (only rendered when analytics is enabled) ---------- */
.consent {
  position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 400;
  background: var(--surface-2); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius); box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.consent.show { opacity: 1; transform: none; }
.consent-inner {
  max-width: var(--shell); margin: 0 auto;
  padding: 20px 26px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}
.consent p { margin: 0; flex: 1 1 320px; color: var(--text-dim); font-size: 14.5px; line-height: 1.7; }
.consent a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.consent-actions { display: flex; gap: 12px; flex: none; }
@media (max-width: 560px) {
  .consent-inner { padding: 18px 20px; gap: 16px; }
  .consent-actions { width: 100%; }
  .consent-actions .btn { flex: 1; justify-content: center; }
}

/* ---------- Wide services dropdown ---------- */
.sub-menu--wide { min-width: 460px; display: grid; grid-template-columns: 1fr 1fr; column-gap: 8px; }
.sub-menu--wide li { break-inside: avoid; }
.mobile-nav .mobile-sub a { padding-left: 34px; font-size: 15px; opacity: 0.85; }

/* ---------- Footer proof line ---------- */
.foot-proof { color: var(--gold); font-size: 13.5px; letter-spacing: 0.02em; margin: -6px 0 18px; }

/* ---------- Sticky call / quote bar (mobile only) ---------- */
.sticky-cta { display: none; }
@media (max-width: 860px) {
  .sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 350;
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(8,8,10,0.94); backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .sticky-cta .btn { justify-content: center; min-height: 48px; padding: 12px 10px; font-size: 13px; }
  body { padding-bottom: 76px; }
  .consent { bottom: 84px; }
  .to-top { bottom: 92px; }
}
/* Tap targets */
.main-nav a, .mobile-nav a, .foot-col a, .trust-chip, .acc-head, .filter-btn { min-height: 44px; display: inline-flex; align-items: center; }
.foot-col li { margin-bottom: 4px; }

/* ---------- Instagram in the header / mobile menu ---------- */
.header-ig { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; margin-right: 4px; color: var(--text-muted); border-radius: 50%; transition: color 0.25s, background 0.25s; }
.header-ig svg { width: 20px; height: 20px; stroke: currentColor; }
.header-ig:hover { color: var(--gold); background: rgba(255,255,255,0.05); }
.mobile-social a { display: inline-flex; align-items: center; gap: 10px; }
.mobile-social svg { width: 18px; height: 18px; stroke: currentColor; }
@media (max-width: 1024px) { .header-ig { display: none; } }

/* ---------- Online booking (/book) ---------- */
.book-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 44px; align-items: start; }
.book-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; list-style: none; padding: 0; margin: 0 0 34px; }
.book-steps li { font-family: var(--display); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); border-top: 2px solid var(--line); padding-top: 10px; display: flex; gap: 8px; align-items: center; }
.book-steps li span { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line-strong); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; }
.book-steps li.is-active { color: var(--text); border-top-color: var(--gold); }
.book-steps li.is-active span { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.book-steps li.is-done { color: var(--gold); border-top-color: rgba(240,180,41,0.5); }
.book-head { margin-bottom: 22px; }
.book-head p { color: var(--text-dim); max-width: 62ch; }
.svc-cat { font-family: var(--display); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 30px 0 12px; }
.size-pick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.size-opt { position: relative; display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-2); cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.size-opt input { position: absolute; opacity: 0; pointer-events: none; }
.size-opt b { font-family: var(--display); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.size-opt small { color: var(--text-muted); font-size: 12.5px; }
.size-opt.is-on { border-color: var(--gold); background: rgba(240,180,41,0.08); }
.size-opt:focus-within { outline: 2px solid var(--gold); outline-offset: 2px; }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.svc-opt { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-2); padding: 18px 18px 16px; display: flex; flex-direction: column; gap: 10px; transition: border-color 0.2s; }
.svc-opt.is-on { border-color: var(--gold); box-shadow: inset 0 0 0 1px rgba(240,180,41,0.35); }
.svc-opt-top { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.svc-opt h4 { font-family: var(--display); font-size: 19px; letter-spacing: 0.02em; text-transform: uppercase; margin: 0; }
.svc-opt-price { font-family: var(--display); color: var(--gold); font-size: 15px; white-space: nowrap; }
.svc-opt p { margin: 0; color: var(--text-dim); font-size: 14.5px; }
.svc-opt ul { margin: 0; padding-left: 18px; color: var(--text-muted); font-size: 13.5px; }
.svc-opt-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 6px; }
.svc-opt-time { font-size: 13px; color: var(--text-muted); }
.addon-grid, .quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.addon-opt { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; font-size: 14.5px; }
.addon-opt input { accent-color: var(--gold); }
.addon-opt span { flex: 1; }
.addon-opt b { font-family: var(--display); color: var(--gold); font-size: 13px; white-space: nowrap; }
.addon-opt.is-on { border-color: var(--gold); }
.quote-opt { display: flex; flex-direction: column; gap: 4px; padding: 12px 14px; border: 1px dashed var(--line-strong); border-radius: var(--radius); color: var(--text); text-decoration: none; }
.quote-opt b { font-family: var(--display); letter-spacing: 0.04em; text-transform: uppercase; font-size: 14px; }
.quote-opt span { color: var(--text-muted); font-size: 13px; }
.quote-opt:hover { border-color: var(--gold); }
.book-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; }
.book-nav .btn:only-child { margin-left: auto; }
.book-note { font-size: 13.5px; color: var(--text-muted); margin-top: 18px; }
.demo-note { border-left: 3px solid var(--gold); padding-left: 12px; }
.cal { border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; background: var(--surface-2); }
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-family: var(--display); letter-spacing: 0.08em; text-transform: uppercase; font-size: 14px; }
.cal-nav { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-strong); background: transparent; color: var(--text); font-size: 20px; cursor: pointer; }
.cal-nav:disabled { opacity: 0.3; cursor: default; }
.cal-dow, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-dow span { text-align: center; font-size: 11px; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; padding: 4px 0; }
.cal-day { min-height: 54px; border: 1px solid var(--line); border-radius: 8px; background: transparent; color: var(--text); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; cursor: pointer; font-family: var(--display); }
.cal-day b { font-size: 15px; }
.cal-day small { font-size: 10.5px; color: var(--text-muted); letter-spacing: 0.04em; }
.cal-day:disabled { opacity: 0.28; cursor: default; }
.cal-day.is-full { opacity: 0.55; }
.cal-day.is-on { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.cal-day.is-on small { color: #0a0a0a; }
.cal-day:not(:disabled):hover { border-color: var(--gold); }
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.slot { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-2); color: var(--text); padding: 12px 10px; display: flex; flex-direction: column; gap: 3px; cursor: pointer; font-family: var(--display); }
.slot b { font-size: 15px; letter-spacing: 0.04em; }
.slot small { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.slot.is-on { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.slot.is-on small { color: #0a0a0a; }
.slot.is-taken { opacity: 0.35; cursor: default; text-decoration: line-through; }
.slot:not(:disabled):hover { border-color: var(--gold); }
.book-form label { display: block; margin-bottom: 14px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); font-family: var(--display); }
.book-form input[type="text"], .book-form input[type="tel"], .book-form input[type="email"], .book-form textarea { display: block; width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--surface-2); color: var(--text); font: inherit; font-size: 15px; letter-spacing: 0; text-transform: none; }
.book-form input:focus, .book-form textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.book-form label.check { display: flex; gap: 10px; align-items: flex-start; text-transform: none; letter-spacing: 0; font-family: inherit; font-size: 14.5px; color: var(--text-dim); }
.book-form label.check input { margin-top: 3px; accent-color: var(--gold); }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.review-grid > div { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; background: var(--surface-2); }
.review-grid h4 { font-family: var(--display); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 0 0 8px; }
.review-grid p, .review-grid ul { margin: 0; font-size: 14.5px; color: var(--text-dim); }
.review-grid ul { padding-left: 18px; }
.book-side { position: sticky; top: 100px; }
.cart { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-2); padding: 20px 22px; }
.cart-lines { margin: 14px 0; }
.cart-line { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.cart-line span { display: flex; flex-direction: column; }
.cart-line small { color: var(--text-muted); font-size: 12px; }
.cart-line--addon span { padding-left: 12px; }
.cart-line b { font-family: var(--display); white-space: nowrap; }
.cart-meta-row, .cart-total-row { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; font-size: 14px; }
.cart-meta-row span, .cart-total-row span { color: var(--text-muted); }
.cart-meta-row b { text-align: right; font-weight: 500; }
.cart-total { border-top: 1px solid var(--line-strong); margin-top: 8px; padding-top: 8px; }
.cart-total-row b { font-family: var(--display); font-size: 18px; }
.cart-total-row--dep b { color: var(--gold); }
.cart-total small { display: block; color: var(--text-muted); font-size: 12px; margin-top: 6px; }
.book-done { text-align: center; padding: 30px 0; }
.done-card { border: 1px solid var(--gold); border-radius: var(--radius); padding: 18px 22px; margin: 18px auto 22px; max-width: 520px; background: rgba(240,180,41,0.06); }
.done-card b { font-family: var(--display); letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.done-card p { margin: 8px 0 0; color: var(--text-dim); }
.modal { position: fixed; inset: 0; z-index: 600; background: rgba(4,4,6,0.85); display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal-box { background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 28px 30px; max-width: 480px; }
.modal-box p { color: var(--text-dim); }
@media (max-width: 1000px) { .book-layout { grid-template-columns: 1fr; } .book-side { position: static; } }
@media (max-width: 720px) { .size-pick, .svc-grid, .addon-grid, .quote-grid, .review-grid { grid-template-columns: 1fr; } .slot-grid { grid-template-columns: repeat(2, 1fr); } .book-steps { grid-template-columns: repeat(2, 1fr); } .cal-day { min-height: 48px; } }

/* ---------- Run sheet (/today, private) ---------- */
.hero--slim-pad { padding-top: 140px; }
.today-head { display: flex; justify-content: space-between; gap: 28px; align-items: flex-end; flex-wrap: wrap; margin-bottom: 30px; }
.today-head p { max-width: 60ch; margin-top: 10px; }
.today-controls { display: flex; gap: 14px; }
.today-controls label { display: flex; flex-direction: column; gap: 6px; font-family: var(--display); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.today-controls input, .today-controls select { padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--surface-2); color: var(--text); font: inherit; font-size: 14px; color-scheme: dark; }
.today-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 36px; align-items: start; }
.job { display: grid; grid-template-columns: 96px 1fr; gap: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-2); padding: 18px 20px; margin-bottom: 12px; transition: border-color 0.2s, opacity 0.2s; }
.job.is-next { border-color: var(--gold); }
.job.is-active { border-color: var(--gold); box-shadow: inset 0 0 0 1px rgba(240,180,41,0.35); }
.job.is-done { opacity: 0.55; }
.job-time { display: flex; flex-direction: column; gap: 2px; font-family: var(--display); }
.job-time b { font-size: 24px; letter-spacing: 0.02em; }
.job-time small { color: var(--text-muted); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.job-time em { font-style: normal; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.job-body h3 { font-family: var(--display); font-size: 20px; letter-spacing: 0.02em; text-transform: uppercase; margin: 0 0 4px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.job-status { font-size: 11px; letter-spacing: 0.14em; color: var(--gold); border: 1px solid rgba(240,180,41,0.4); padding: 3px 8px; border-radius: 4px; }
.job-body p { margin: 2px 0; font-size: 14.5px; color: var(--text-dim); }
.job-money { color: var(--text-muted); font-size: 13.5px; }
.job-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; align-items: center; }
.late-wrap { display: inline-flex; gap: 4px; margin-left: 6px; }
.job-done-tag { font-family: var(--display); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-right: 8px; }
.msg-log { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-2); padding: 18px 20px; position: sticky; top: 100px; max-height: calc(100vh - 130px); overflow: auto; }
.msg-log .demo-note { font-size: 13px; margin: 8px 0 14px; }
.msg { border-top: 1px solid var(--line); padding: 12px 0; }
.msg-top { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; margin-bottom: 8px; }
.msg-top b { font-family: var(--display); letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.msg-top span { color: var(--text-muted); }
.msg p { font-size: 13.5px; color: var(--text-dim); margin: 6px 0; }
.msg p > span { display: inline-block; font-family: var(--display); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); border: 1px solid var(--line); padding: 1px 6px; border-radius: 3px; margin-right: 8px; vertical-align: middle; }
.msg-mail b { display: block; margin: 4px 0 6px; color: var(--text); }
@media (max-width: 960px) { .today-layout { grid-template-columns: 1fr; } .msg-log { position: static; max-height: none; } }
@media (max-width: 640px) { .job { grid-template-columns: 1fr; } .hero--slim-pad { padding-top: 110px; } }

.foot-credit { font-size: 12.5px; color: var(--text-muted); }
.foot-credit a { color: var(--gold); text-decoration: none; }
.foot-credit a:hover { text-decoration: underline; }
.svc-cover { display: inline-block; font-family: var(--display); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(240,180,41,0.35); padding: 3px 8px; border-radius: 4px; align-self: flex-start; }
.svc-blocked { font-size: 12.5px; color: var(--text-muted); font-style: italic; }
.svc-opt.is-covered { opacity: 0.55; }
.book-notice { border-left: 3px solid var(--gold); padding: 10px 14px; background: rgba(240,180,41,0.06); font-size: 14px; color: var(--text-dim); margin: 0 0 18px; }

.svc-note { font-size: 13px; color: var(--text-dim); border-top: 1px dashed var(--line); padding-top: 10px; margin: 4px 0 0; }
.svc-note a { color: var(--gold); }

/* ---------- Phone hero: image block on top (4:3 crop centred on the car), copy below ---------- */
@media (max-width: 640px) {
  .hero--page, .hero--full { display: block; min-height: 0; padding-top: 0; }
  .hero--full { min-height: 0; }
  .hero-media { position: relative; inset: auto; z-index: 0; aspect-ratio: 4 / 3; margin-top: 44px; }
  .hero-media img, .hero-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .hero-media::after { background: linear-gradient(180deg, rgba(8,8,10,0.45) 0%, rgba(8,8,10,0) 26%, rgba(8,8,10,0) 68%, var(--black) 100%); }
  .hero-media--dim img { filter: brightness(0.92); }
  .hero-inner, .hero--page .hero-inner, .hero--full .hero-inner { padding: 6px 0 40px; }
  .hero-copy h1 { margin-bottom: 16px; }
  .hero-copy .lede { margin-bottom: 24px; }
  .hero-scroll { display: none; }
}

/* ---------- Demo banner sits above the fixed header instead of over it ---------- */

/* Next-step button inside the sticky booking summary */
.cart-go { margin-top: 16px; }
.cart-go .btn { width: 100%; }
.cart-go .btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
@media (max-width: 1000px) { .cart-go { display: none; } }

/* Ceramic protections offered alongside a coating */
.addon-grid--ceramic .addon-opt { border-color: rgba(240,180,41,0.4); }
.addon-grid--ceramic .addon-opt.is-on { border-color: var(--gold); }

/* Add-ons now sit above the service list, so they need their own breathing room */
.addon-list:not(:empty) { margin: 26px 0 34px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }

/* Ceramic protections offered inside the booking panel */
.cart-upsell { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.cart-upsell .eyebrow { display: block; margin-bottom: 6px; }
.cart-upsell p { font-size: 12.5px; color: var(--text-muted); margin: 0 0 12px; line-height: 1.5; }
.upsell-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%;
  background: transparent; border: 1px solid var(--line); border-radius: 8px;
  padding: 10px 12px; margin-bottom: 7px; cursor: pointer; text-align: left;
  color: var(--text); font: inherit; font-size: 13.2px; transition: all 0.2s var(--ease);
}
.upsell-row:hover { border-color: var(--gold); background: rgba(240,180,41,0.06); }
.upsell-row:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.upsell-row span { line-height: 1.35; }
.upsell-row em { display: block; font-style: normal; color: var(--text-muted); font-size: 11.5px; }
.upsell-row b { color: var(--gold); white-space: nowrap; font-family: var(--display); font-size: 14px; }
.upsell-row::after { content: "+"; color: var(--gold); font-size: 17px; line-height: 1; margin-left: 2px; }

/* Square card form on the deposit step */
.card-box { margin: 22px 0 6px; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-2); }
.card-box .eyebrow { display: block; margin-bottom: 12px; }
#card-container { min-height: 90px; }
#card-status { margin: 10px 0 0; min-height: 1em; }
#card-status.is-error { color: #ff8a65; }
.slots-loading { color: var(--text-muted); font-size: 14.5px; padding: 14px 0; }
.slots-error { color: #ff8a65; font-size: 14.5px; padding: 14px 0; }

/* Mobile booking summary. The YOUR BOOKING panel is at the foot of the page on a phone, so this
   brings the running total and the next step back to the top of the screen once something is
   chosen. Its top is set from JS to sit flush under the header, which changes height on scroll. */
.cart-bar { display: none; }
@media (max-width: 1000px) {
  .cart-bar {
    position: fixed; left: 0; right: 0; z-index: 190;
    display: flex; align-items: center; gap: 12px;
    padding: 10px 16px;
    background: rgba(8, 8, 10, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  }
  .cart-bar[hidden] { display: none; }
  .cart-bar-sum {
    flex: 1 1 auto; min-width: 0;
    display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
    background: none; border: 0; padding: 0; text-align: left; cursor: pointer; color: inherit;
  }
  .cart-bar-n {
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted);
  }
  .cart-bar-money { display: flex; align-items: baseline; gap: 8px; }
  .cart-bar-money b { font-size: 17px; color: var(--gold); }
  .cart-bar-money small { font-size: 12px; color: var(--text-muted); }
  .cart-bar-go {
    flex: 0 0 auto; padding: 10px 16px; font-size: 13px; white-space: nowrap;
  }
  .cart-bar-go[disabled] { opacity: 0.45; cursor: not-allowed; box-shadow: none; transform: none; }
}
@media (prefers-reduced-motion: no-preference) {
  .cart-bar { transition: transform 0.25s var(--ease), opacity 0.25s var(--ease); }
}

/* The drawer covers the page, so the booking summary must not sit on top of it. */
body.nav-open .cart-bar { display: none; }

/* Collapsible service list in the mobile drawer. Closed by default - expanded it ran the menu
   past the height of a phone screen. */
.mobile-nav li.mobile-sub { display: none; }
.mobile-nav.subs-open li.mobile-sub { display: block; }
.mobile-nav li.mobile-has-sub { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mobile-nav li.mobile-has-sub > a { flex: 1 1 auto; }
.mobile-sub-toggle {
  flex: 0 0 auto; width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 0; padding: 0; cursor: pointer; color: var(--text-muted);
}
.mobile-sub-toggle svg { width: 20px; height: 20px; stroke: currentColor; transition: transform 0.25s var(--ease); }
.mobile-nav.subs-open .mobile-sub-toggle svg { transform: rotate(180deg); }
.mobile-sub-toggle:hover, .mobile-sub-toggle:focus-visible { color: var(--gold); }

/* Shown when a booking cannot go through. Deliberately loud - the old small red line under the
   card box was easy to miss, and there was nothing to act on. */
.book-alert {
  margin: 0 0 22px; padding: 18px 20px;
  border: 1px solid rgba(255, 138, 101, 0.5); border-left: 3px solid #ff8a65;
  border-radius: var(--radius); background: rgba(255, 138, 101, 0.08);
}
.book-alert[hidden] { display: none; }
.book-alert strong {
  display: block; margin-bottom: 8px; color: #ff8a65;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 14px;
}
.book-alert p { margin: 0 0 8px; font-size: 15px; line-height: 1.55; }
.book-alert p:last-child { margin-bottom: 0; }
.book-alert-call { color: var(--text-muted); font-size: 14px; }
.book-alert-call a { color: var(--gold); font-weight: 600; white-space: nowrap; }

/* Weekend enquiries. Saturdays and Sundays are offered but never booked automatically, so they
   read differently on the calendar - available to ask about, not available to take. */
.cal-day.is-ask { border-color: rgba(230, 184, 76, 0.4); }
.cal-day.is-ask small { color: var(--gold); letter-spacing: 0.04em; }
.cal-day.is-ask:not(.is-on):hover { background: rgba(230, 184, 76, 0.08); }
.weekend-note {
  margin: 14px 0 4px; padding: 18px 20px;
  border: 1px solid rgba(230, 184, 76, 0.35); border-left: 3px solid var(--gold);
  border-radius: var(--radius); background: rgba(230, 184, 76, 0.06);
}
.weekend-note strong {
  display: block; margin-bottom: 8px; color: var(--gold);
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 14px;
}
.weekend-note p { margin: 0; font-size: 15px; line-height: 1.6; }
