/* ============================================================
   L & J DETAILING — site styles
   Palette: deep black · metallic gold · chrome silver · whisper of red
   ============================================================ */

:root {
  /* base blacks */
  --black:    #0b0a09;
  --black-1:  #100e0c;
  --black-2:  #16130f;
  --panel:    #181511;
  --panel-2:  #1f1b15;
  --line:     rgba(216, 178, 95, 0.16);
  --line-soft:rgba(255, 255, 255, 0.06);

  /* gold */
  --gold-1:   #f6e6b4;  /* highlight */
  --gold-2:   #e7c878;
  --gold-3:   #c8a14f;
  --gold-4:   #9a7a3c;
  --gold:     #d8b25f;
  --gold-deep:#8a6a2e;
  --gold-glow:rgba(216, 178, 95, 0.30);

  /* chrome */
  --chrome-1: #f3f3f0;
  --chrome-2: #cfcfca;
  --chrome-3: #8d8d86;

  /* red accent (from the ring) */
  --red:      #9a2020;
  --red-soft: rgba(154, 32, 32, 0.5);

  /* text */
  --cream:    #f2ead9;
  --cream-2:  #cabfa9;
  --muted:    rgba(242, 234, 217, 0.55);
  --muted-2:  rgba(242, 234, 217, 0.38);

  /* type */
  --display: "Marcellus", "Times New Roman", serif;
  --sans:    "Manrope", system-ui, sans-serif;
  --script:  "Pinyon Script", cursive;

  --maxw: 1200px;
  --radius: 14px;
  --gold-grad: linear-gradient(180deg, #f6e6b4 0%, #e7c878 34%, #c19a45 66%, #8a6a2e 100%);
  --gold-grad-soft: linear-gradient(135deg, #e7c878 0%, #b98c3f 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

/* page-wide ambient texture: faint warm vignette + grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 600px at 12% -5%, rgba(216,178,95,0.08), transparent 60%),
    radial-gradient(800px 700px at 100% 8%, rgba(216,178,95,0.05), transparent 55%),
    radial-gradient(700px 700px at 50% 120%, rgba(216,178,95,0.06), transparent 60%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/></svg>");
}

img { max-width: 100%; display: block; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; z-index: 1; }
.section-pad { padding: clamp(72px, 11vw, 140px) 0; }

/* ---------- type helpers ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.04; margin: 0; letter-spacing: 0.01em; }
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.chrome-text {
  background: linear-gradient(180deg, #ffffff 0%, #d6d6d2 45%, #9a9a93 70%, #e6e6e2 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.script { font-family: var(--script); font-weight: 400; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 13px;
  color: var(--gold-2);
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-3), transparent);
}
.eyebrow.left::before { display: none; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 68px); }
.section-head h2 { font-size: clamp(34px, 5.2vw, 58px); margin: 18px 0 0; }
.section-head p { color: var(--muted); margin: 18px auto 0; max-width: 560px; }

.hr-gold { height: 1px; border: 0; background: linear-gradient(90deg, transparent, var(--gold-3), transparent); }

/* ---------- buttons ---------- */
.btn {
  --b: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 15px;
  letter-spacing: 0.02em;
  padding: 16px 30px;
  border-radius: 999px;
  cursor: pointer; border: 0; text-decoration: none;
  transition: transform .18s ease, box-shadow .25s ease, filter .2s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-grad-soft);
  color: #20170a;
  box-shadow: 0 8px 28px -8px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.5); filter: brightness(1.06); }
.btn-gold:active { transform: translateY(0) scale(0.98); }
.btn-ghost {
  background: rgba(255,255,255,0.02);
  color: var(--cream);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.btn-ghost:hover { border-color: var(--gold-3); color: var(--gold-1); transform: translateY(-2px); background: rgba(216,178,95,0.06); }
.btn-ghost:active { transform: translateY(0) scale(0.98); }
.btn-sm { padding: 11px 20px; font-size: 14px; }

/* icon set as inline svg uses currentColor */
.ic { width: 1em; height: 1em; flex: none; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11,10,9,0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  height: 44px; width: 44px; object-fit: cover; border-radius: 50%; flex: none;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 70%, transparent 100%);
  mask-image: radial-gradient(circle at 50% 50%, #000 70%, transparent 100%);
}
.brand .mark {
  font-family: var(--display); font-size: 22px; letter-spacing: 0.04em;
  line-height: 1;
}
.brand .sub { font-family: var(--display); font-size: 9px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold-3); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { color: var(--cream-2); text-decoration: none; font-size: 14.5px; font-weight: 600; letter-spacing: 0.01em; transition: color .2s; }
.nav-links a:hover { color: var(--gold-1); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  color: #16130f; text-decoration: none; font-weight: 800; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  background: #ffffff; padding: 11px 20px; border-radius: 999px;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
}
.nav-phone:hover { color: #16130f; background: #fff; transform: translateY(-1px); box-shadow: 0 10px 26px -8px rgba(216,178,95,0.5), inset 0 1px 0 rgba(255,255,255,0.8); }
.nav-phone .ic { color: var(--gold-deep); }
.nav-toggle { display: none; background: none; border: 0; color: var(--cream); cursor: pointer; padding: 8px; }

/* ---------- hero ---------- */
.hero { padding-top: 76px; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(11,10,9,0.72) 0%, rgba(11,10,9,0.80) 45%, rgba(11,10,9,0.96) 100%),
    url("assets/photos/truck-denali.png");
  background-size: cover, cover;
  background-position: center, center 28%;
  background-repeat: no-repeat, no-repeat;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 30%, transparent 40%, rgba(11,10,9,0.65) 100%);
}
.hero-glow {
  position: absolute; top: 8%; left: 50%; transform: translateX(-50%);
  width: min(1100px, 96vw); height: 620px; pointer-events: none; z-index: 0;
  background: radial-gradient(closest-side, rgba(216,178,95,0.20), rgba(216,178,95,0.05) 55%, transparent 75%);
}
.hero-inner { text-align: center; padding: 24px 0 70px; position: relative; z-index: 2; }
.hero-logo {
  width: min(560px, 84%); margin: 0 auto clamp(2px, 1.4vw, 14px);
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.9));
  -webkit-mask-image: radial-gradient(ellipse 62% 60% at 50% 50%, #000 40%, rgba(0,0,0,0.5) 66%, transparent 82%);
  mask-image: radial-gradient(ellipse 62% 60% at 50% 50%, #000 40%, rgba(0,0,0,0.5) 66%, transparent 82%);
}
.hero-logo-wrap {
  position: relative; display: flex; justify-content: center;
}
.hero-logo-wrap::before {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 78%; height: 116%; z-index: -1;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(8,7,5,0.92) 0%, rgba(8,7,5,0.6) 45%, transparent 72%);
}
.hero h1 { font-size: clamp(38px, 6.4vw, 76px); line-height: 1.0; margin-bottom: 8px; }
.hero .lead { color: var(--cream-2); font-size: clamp(17px, 2.1vw, 21px); max-width: 620px; margin: 22px auto 0; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.hero-trust { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 44px; color: var(--muted); font-size: 14px; }
.hero-trust .t { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust .t b { color: var(--cream); font-weight: 700; }
.stars { color: var(--gold-2); letter-spacing: 2px; }

/* ---------- marquee strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--black-1); overflow: hidden; }
.marquee { display: flex; gap: 56px; padding: 22px 0; width: max-content; animation: scrollx 32s linear infinite; }
.marquee span { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.28em; font-size: 15px; color: var(--cream-2); display: inline-flex; align-items: center; gap: 56px; }
.marquee span::after { content: "✦"; color: var(--gold-3); font-size: 12px; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat .num { font-family: var(--display); font-size: clamp(38px, 5vw, 56px); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.16em; margin-top: 12px; }

/* ---------- services ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.cards.four { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin: 0 auto; }
.cat-label {
  display: flex; align-items: center; gap: 16px; margin: 0 auto clamp(28px,4vw,40px);
  max-width: 920px; font-family: var(--display); text-transform: uppercase;
  letter-spacing: 0.26em; font-size: 14px; color: var(--gold-2);
}
.cat-label::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold-3), transparent); }
.cat-label .ci { width: 20px; height: 20px; color: var(--gold-2); }

/* ---------- vehicle selector ---------- */
.veh-select { max-width: 920px; margin: 0 auto clamp(34px,5vw,48px); text-align: center; }
.veh-select .vs-label {
  font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.veh-seg {
  display: inline-flex; gap: 6px; padding: 7px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  max-width: 100%; flex-wrap: wrap; justify-content: center;
}
.veh-opt {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 14.5px; letter-spacing: 0.01em;
  color: var(--cream-2); background: transparent; border: 0; cursor: pointer;
  padding: 12px 22px; border-radius: 999px; white-space: nowrap;
  transition: color .2s ease, background .25s ease, box-shadow .25s ease;
}
.veh-opt svg { width: 22px; height: 22px; flex: none; opacity: .85; }
.veh-opt:hover { color: var(--gold-1); }
.veh-opt.active {
  color: #20170a; background: var(--gold-grad-soft);
  box-shadow: 0 6px 18px -6px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.4);
}
.veh-opt.active svg { opacity: 1; }
.veh-hint { color: var(--muted-2); font-size: 13px; margin-top: 14px; }
.card .price { transition: opacity .18s ease; }
.card .price.flash { opacity: 0.35; }

/* bundle regular price + savings */
.price-save { display: flex; align-items: center; gap: 12px; margin: 2px 0 6px; min-height: 24px; flex-wrap: wrap; }
.price-save s { color: var(--muted); font-size: 18px; text-decoration-color: var(--red); text-decoration-thickness: 2px; font-family: "Baloo 2", var(--display); font-weight: 700; }
.save-badge {
  font-family: var(--sans); font-weight: 800; font-size: 12px; letter-spacing: 0.06em;
  color: #1a3a1f; background: linear-gradient(180deg, #cfe9b9, #a9d98a);
  padding: 5px 12px; border-radius: 999px; text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
@media (max-width:560px){ .veh-opt { padding:11px 16px; font-size:13.5px; } .veh-opt svg{ display:none; } }

/* ---------- basic vs premium guide ---------- */
.svc-guide {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(24px,4vw,44px);
  align-items: center; max-width: 920px; margin: 0 auto clamp(38px,5vw,52px);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)); 
  border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(24px,3.4vw,34px) clamp(26px,4vw,40px);
}
.svc-guide .sg-item { display: flex; flex-direction: column; gap: 12px; }
.sg-tag {
  align-self: flex-start; font-family: var(--display); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 12px; color: var(--cream-2);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px;
}
.sg-tag.prem { color: var(--gold-1); border-color: rgba(216,178,95,0.4); background: rgba(216,178,95,0.08); }
.svc-guide p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.svc-guide p b { color: var(--cream); font-weight: 700; }
.sg-div { width: 1px; align-self: stretch; background: linear-gradient(180deg, transparent, var(--gold-3), transparent); }
@media (max-width:680px){
  .svc-guide { grid-template-columns: 1fr; gap: 24px; }
  .sg-div { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-3), transparent); }
}
.card {
  position: relative;
  background: linear-gradient(180deg, var(--panel-2), var(--panel) 70%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 38px 32px;
  display: flex; flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 24px 50px -30px rgba(0,0,0,0.9);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold-3); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 30px 60px -28px rgba(0,0,0,0.95), 0 0 0 1px rgba(216,178,95,0.12); }
.card.featured { border-color: rgba(216,178,95,0.45); background: linear-gradient(180deg, #221c12, #16130f 75%); }
.card .tier { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.2em; font-size: 13px; color: var(--gold-2); }
.card .pill { display:inline-flex; align-items:center; gap:7px; align-self:flex-start; font-family:var(--sans); font-weight:700; font-size:11px; letter-spacing:0.14em; text-transform:uppercase; color:var(--cream-2); background:rgba(255,255,255,0.04); border:1px solid var(--line); padding:6px 12px; border-radius:999px; margin-bottom:18px; }
.card.featured .pill { color:var(--gold-1); border-color:rgba(216,178,95,0.35); background:rgba(216,178,95,0.08); }
.card .price { font-family: "Baloo 2", var(--display); font-weight: 800; font-size: 54px; line-height: 1; margin: 16px 0 4px; letter-spacing: 0.005em; }
.card .price small { font-size: 16px; color: var(--muted); letter-spacing: 0.04em; }
.card .desc { color: var(--muted); font-size: 14.5px; min-height: 44px; }
.card ul { list-style: none; padding: 0; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 13px; }
.card li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--cream-2); }
.card li .ck { color: var(--gold-2); flex: none; margin-top: 3px; }
.card .btn { width: 100%; margin-top: auto; }
.badge-pop {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold-grad-soft); color: #20170a; font-weight: 800; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px;
  box-shadow: 0 6px 18px -6px var(--gold-glow);
}
.addons { margin-top: 36px; text-align: center; color: var(--muted); font-size: 14.5px; }
.addons b { color: var(--cream); font-weight: 700; }

/* ---------- extras / add-ons ---------- */
.extras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 920px; margin: 0 auto; }
.extra {
  background: linear-gradient(180deg, var(--panel-2), var(--panel) 80%);
  border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: border-color .25s ease, transform .25s ease;
}
.extra:hover { border-color: var(--gold-3); transform: translateY(-3px); }
.extra-top { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.extra-name { font-family: var(--display); font-size: 20px; color: var(--cream); }
.extra-price { font-family: "Baloo 2", var(--display); font-weight: 800; font-size: 22px; color: var(--gold-1); white-space: nowrap; }
.extra p { margin: 8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.extra p b { color: var(--gold-1); font-weight: 700; }
@media (max-width:600px){ .extras-grid { grid-template-columns: 1fr; } }

/* ---------- safety band ---------- */
.safety {
  margin-top: clamp(48px,7vw,72px);
  background: linear-gradient(180deg, #221c12, #14110d 80%);
  border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(36px,5vw,52px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.safety .lead-row { text-align:center; max-width:680px; margin:0 auto clamp(30px,4vw,44px); }
.safety h3 { font-size: clamp(26px,3.4vw,38px); }
.safety .lead-row p { color: var(--cream-2); margin: 14px auto 0; }
.safety-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.safety-item { text-align:center; padding:0 10px; }
.safety-item .si {
  width:58px; height:58px; border-radius:50%; margin:0 auto 18px;
  display:grid; place-items:center; border:1px solid var(--line);
  background:var(--panel); color:var(--gold-1);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.06);
}
.safety-item .si svg { width:26px; height:26px; }
.safety-item h4 { font-family:var(--display); font-weight:400; font-size:20px; color:var(--cream); margin-bottom:8px; }
.safety-item p { color:var(--muted); font-size:14px; margin:0; }
@media (max-width:780px){ .safety-grid{ grid-template-columns:1fr; gap:34px; } }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { text-align: center; padding: 0 8px; position: relative; }
.step .n {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 22px;
  display: grid; place-items: center;
  border: 1px solid var(--line); background: var(--panel);
  font-family: var(--display); font-size: 26px; color: var(--gold-1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.step h3 { font-size: 22px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- heads-up notice ---------- */
.notice {
  display: flex; gap: clamp(18px,3vw,28px); align-items: flex-start;
  max-width: 900px; margin: clamp(48px,7vw,72px) auto 0;
  background: linear-gradient(180deg, #221c12, #16130f 85%);
  border: 1px solid rgba(216,178,95,0.35); border-radius: 20px;
  padding: clamp(26px,3.6vw,38px) clamp(28px,4vw,40px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 24px 50px -34px rgba(0,0,0,0.9);
}
.notice-ic {
  flex: none; width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; color: #20170a;
  background: var(--gold-grad-soft);
  box-shadow: 0 8px 22px -8px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.4);
}
.notice-ic svg { width: 28px; height: 28px; }
.notice-body h3 { font-size: clamp(22px,2.8vw,28px); margin-bottom: 10px; }
.notice-body p { margin: 0; color: var(--cream-2); font-size: 15.5px; line-height: 1.65; }
.notice-body p b { color: var(--gold-1); font-weight: 700; }
@media (max-width:560px){ .notice { flex-direction: column; gap: 18px; } }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px,3vw,32px); max-width: 880px; margin: 0 auto; }
.ga-photo {
  margin: 0; background: #fff; padding: 12px 12px 0; border-radius: 14px;
  box-shadow: 0 26px 55px -26px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.5), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform .28s ease, box-shadow .28s ease;
  overflow: hidden;
}
.ga-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; border-radius: 8px; transition: transform .5s ease; }
.ga-photo figcaption {
  padding: 16px 8px 18px; text-align: center;
  font-family: var(--display); letter-spacing: 0.04em;
  font-size: clamp(16px,2vw,19px); color: #1a1712;
}
.ga-photo:hover { transform: translateY(-7px); box-shadow: 0 36px 70px -26px rgba(0,0,0,0.95), 0 0 0 1px rgba(216,178,95,0.4), 0 0 36px -10px rgba(216,178,95,0.4); }
.ga-photo:hover img { transform: scale(1.05); }
.ga-note { text-align: center; color: var(--muted-2); font-size: 13px; margin-top: 30px; }
@media (max-width:600px){ .gallery { grid-template-columns: 1fr; max-width: 420px; } }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-photo { margin: 0; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 5; box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 30px 60px -34px rgba(0,0,0,0.9); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about h2 { font-size: clamp(32px, 4.6vw, 52px); margin: 18px 0 0; }
.about p { color: var(--cream-2); margin: 20px 0 0; }
.about .sign { font-family: var(--script); font-size: 46px; color: var(--gold-1); margin-top: 18px; line-height: 1; }
.about-loc { display:inline-flex; align-items:center; gap:10px; margin-top:24px; margin-right:12px; padding:10px 18px; border:1px solid var(--line); border-radius:999px; background:rgba(216,178,95,0.05); color:var(--cream-2); font-size:14.5px; }
.about-loc b { color:var(--cream); font-weight:700; }

/* ---------- testimonials ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: linear-gradient(180deg, var(--panel-2), var(--panel) 80%);
  border: 1px solid var(--line); border-radius: 18px; padding: 32px 30px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.review .stars { font-size: 17px; }
.review p { color: var(--cream); font-size: 15.5px; margin: 18px 0 24px; }
.review .who { display: flex; align-items: center; gap: 13px; }
.review .av { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-grad-soft); display: grid; place-items: center; font-family: var(--display); color: #20170a; font-size: 18px; flex: none; }
.review .who b { display: block; color: var(--cream); font-size: 15px; }
.review .who span { color: var(--muted); font-size: 13px; }

/* ---------- review CTA ---------- */
.review-cta { padding-top: 0; }
.rc-card {
  position: relative; overflow: hidden; text-align: center;
  max-width: 760px; margin: 0 auto;
  background: linear-gradient(180deg, #211b11, #100e0b 82%);
  border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(40px,5.5vw,60px) clamp(28px,4vw,48px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 36px 70px -40px rgba(0,0,0,0.9);
}
.rc-card .glow { position:absolute; inset:0; pointer-events:none; background: radial-gradient(460px 220px at 50% 0%, rgba(216,178,95,0.16), transparent 70%); }
.rc-logo { display:inline-flex; align-items:center; gap:10px; position:relative; margin-bottom: 6px; }
.rc-logo svg { width: 30px; height: 30px; }
.rc-logo span { font-family: var(--display); font-size: 22px; letter-spacing: 0.02em; color: var(--cream); }
.rc-stars { position:relative; color: var(--gold-2); font-size: 26px; letter-spacing: 6px; margin: 14px 0 4px; }
.rc-card h2 { position:relative; font-size: clamp(28px,4vw,44px); margin-top: 12px; }
.rc-card p { position:relative; color: var(--cream-2); max-width: 480px; margin: 16px auto 30px; }
.rc-card .btn { position:relative; }
.cta-final { text-align: center; }
.cta-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #221b11, #100e0b);
  border: 1px solid var(--line); border-radius: 26px;
  padding: clamp(48px, 7vw, 88px) 32px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 40px 80px -40px rgba(0,0,0,0.9);
}
.cta-card .glow { position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% 0%, rgba(216,178,95,0.18), transparent 70%); pointer-events: none; }
.cta-card h2 { font-size: clamp(36px, 5.6vw, 64px); position: relative; }
.cta-card p { color: var(--cream-2); max-width: 540px; margin: 20px auto 36px; position: relative; }
.cta-card .hero-actions { margin-top: 0; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--black-1); padding: 72px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { font-family: var(--sans); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold-2); margin-bottom: 18px; }
.footer a { color: var(--cream-2); text-decoration: none; display: block; margin-bottom: 11px; font-size: 14.5px; }
.footer a:hover { color: var(--gold-1); }
.footer .blurb { color: var(--muted); font-size: 14.5px; margin-top: 16px; max-width: 280px; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--cream-2); margin: 0; transition: all .2s; }
.socials a:hover { border-color: var(--gold-3); color: var(--gold-1); background: rgba(216,178,95,0.06); transform: translateY(-2px); }
.foot-bottom { border-top: 1px solid var(--line-soft); margin-top: 52px; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 18px; color: var(--muted); font-size: 13px; flex-wrap: wrap; }

/* ---------- sticky mobile bar ---------- */
.mbar { display: none; }

/* ---------- reveal anim ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .cards, .reviews { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .about { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  body { padding-bottom: 76px; }
  .mbar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: rgba(11,10,9,0.92); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line); padding: 12px 16px; gap: 12px;
  }
  .mbar .btn { flex: 1; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 16px 20px; }
  .nav-mobile.open { display: flex; }
}

/* mobile menu panel */
.nav-mobile {
  display: none; position: fixed; inset: 76px 0 auto 0; z-index: 49;
  background: rgba(11,10,9,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line); flex-direction: column; padding: 20px 28px 28px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--cream); text-decoration: none; font-size: 18px; font-family: var(--display); padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.nav-mobile .btn { margin-top: 20px; }

/* ---------- booking modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(6,5,4,0.72); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  position: relative; width: 100%; max-width: 520px;
  background: linear-gradient(180deg, #211b11, #100e0b 80%);
  border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(30px,4vw,42px);
  box-shadow: 0 50px 90px -40px rgba(0,0,0,0.95), inset 0 1px 0 rgba(255,255,255,0.06);
  transform: translateY(18px) scale(0.98); transition: transform .32s cubic-bezier(.2,.8,.2,1);
  max-height: calc(100vh - 48px); overflow-y: auto;
}
.modal-overlay.open .modal { transform: none; }
.modal-glow { position:absolute; inset:0; border-radius:24px; pointer-events:none; background: radial-gradient(360px 180px at 50% 0%, rgba(216,178,95,0.16), transparent 70%); }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px;
  border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,0.03);
  color: var(--cream-2); cursor: pointer; display: grid; place-items: center; transition: all .2s; z-index:2;
}
.modal-close:hover { color: var(--gold-1); border-color: var(--gold-3); transform: rotate(90deg); }
.modal .m-eyebrow { position: relative; }
.modal .m-pkg {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 6px;
  font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-1);
  background: rgba(216,178,95,0.08); border: 1px solid rgba(216,178,95,0.35);
  padding: 7px 15px; border-radius: 999px; position: relative;
}
.modal h3 { font-size: clamp(26px,3.6vw,34px); margin: 14px 0 0; position: relative; }
.modal .m-sub { color: var(--cream-2); font-size: 15px; margin: 12px 0 0; position: relative; }
.modal-checklist { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 14px; position: relative; }
.modal-checklist li { display: flex; gap: 14px; align-items: flex-start; }
.modal-checklist .mc-ic {
  flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--gold-grad-soft); color: #20170a; box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}
.modal-checklist .mc-ic svg { width: 21px; height: 21px; }
.modal-checklist b { display: block; color: var(--cream); font-size: 15px; }
.modal-checklist span { color: var(--muted); font-size: 13.5px; }
.modal-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; position: relative; }
.modal-actions .btn { width: 100%; }
.modal-fine { text-align: center; color: var(--muted-2); font-size: 12.5px; margin: 18px 0 0; position: relative; }
.modal-note {
  display: flex; align-items: flex-start; gap: 11px; position: relative;
  margin: 20px 0 0; padding: 14px 16px; border-radius: 13px;
  background: rgba(216,178,95,0.07); border: 1px solid rgba(216,178,95,0.3);
  color: var(--cream-2); font-size: 13.5px; line-height: 1.5;
}
.modal-note svg { flex: none; width: 20px; height: 20px; color: var(--gold-1); margin-top: 1px; }
.modal-note b { color: var(--gold-1); font-weight: 700; }
.modal-accom { position: relative; margin: 18px 0 0; color: var(--cream-2); font-size: 13.5px; line-height: 1.55; text-align: center; }
.modal-accom::before { content: "✓"; color: var(--gold-1); font-weight: 800; margin-right: 7px; }
