/* ============================================================
   BAZA — Car Wash & Detailing · Al Quoz, Dubai
   Design system: electric yellow on near-black.
   Motifs: monospace technical labels, coordinate readouts,
   crosshair/asterisk glyph, hazard stripes, angular cut corners.
   ============================================================ */

:root {
  /* Palette (from brand logo) */
  --bg:        #0E0E10;
  --bg-deep:   #0A0A0B;
  --surface:   #1A1A1E;
  --surface-2: #222227;
  --text:      #F5F5F4;
  --muted:     #A1A1A6;
  --faint:     #6E6E73;
  --primary:   #FCD80E;
  --secondary: #FFB200;
  --accent:    #23D18B;
  --border:    #2C2C31;
  --focus:     #FCD80E;

  /* Type */
  --display: "Archivo", "Arial Narrow", sans-serif;
  --body:    "Inter", system-ui, sans-serif;
  --mono:    "Space Mono", "SFMono-Regular", monospace;

  /* Rhythm */
  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 11vw, 152px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

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

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

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

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(56px, 8vw, 100px); }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}
.display {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3.2rem, 12vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.h-sec { font-size: clamp(2.1rem, 5.5vw, 4.2rem); }
.h-card { font-size: clamp(1.35rem, 2.4vw, 1.9rem); letter-spacing: -0.01em; }

p { margin: 0 0 1em; }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--muted); line-height: 1.6; max-width: 56ch; }

/* Eyebrow / technical label */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin: 0 0 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--primary);
}
.eyebrow--plain { color: var(--muted); }
.eyebrow--plain::before { background: var(--faint); }

.mono { font-family: var(--mono); }
.amber { color: var(--secondary); }
.yellow { color: var(--primary); }

/* ---------- Brand asterisk glyph ---------- */
.glyph {
  display: inline-block;
  color: var(--primary);
  flex: none;
}
.glyph svg { display: block; width: 100%; height: 100%; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 16px; --pad-x: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  background: none;
  color: inherit;
  transition: transform 0.4s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.4s var(--ease);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--primary); color: #0B0B0C; }
.btn-primary:hover { background: var(--secondary); box-shadow: 0 14px 40px -12px rgba(252,216,14,0.6); }

.btn-ghost { border-color: var(--border); color: var(--text); background: rgba(255,255,255,0.015); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

.btn-wa { background: var(--accent); color: #04150E; }
.btn-wa:hover { background: #2ee79b; box-shadow: 0 14px 40px -12px rgba(35,209,139,0.55); }

.btn-lg { --pad-y: 19px; --pad-x: 36px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn svg { width: 18px; height: 18px; flex: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(14,14,16,0.78);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--border);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 14px;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px; background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 75;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gut);
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  visibility: hidden;
}
.mobile-nav.open { transform: translateY(0); visibility: visible; }
.mobile-nav a {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2rem, 9vw, 3.2rem);
  letter-spacing: -0.02em;
  padding: 10px 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-nav a .idx { font-family: var(--mono); font-size: 0.8rem; color: var(--primary); font-weight: 400; }
.mobile-nav .m-actions { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.15) 32%, rgba(10,10,11,0.78) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(10,10,11,0.7) 0%, transparent 55%);
}
.hero-inner { width: 100%; padding-bottom: clamp(40px, 7vw, 84px); padding-top: 120px; }
.hero h1 { margin-bottom: 0.18em; }
.hero .save { color: var(--primary); display: block; }
.hero-sub {
  max-width: 40ch;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  color: #D9D9DB;
  margin: 1.4rem 0 2.2rem;
  line-height: 1.55;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero corner HUD */
.hud {
  position: absolute;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hud--tr { top: 96px; right: var(--gut); }
.hud .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 56px);
  margin-top: clamp(36px, 5vw, 60px);
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-meta .item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .k { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.hero-meta .v { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0; }

/* ============================================================
   MARQUEE / brand band
   ============================================================ */
.marquee {
  background: var(--primary);
  color: #0B0B0C;
  overflow: hidden;
  border-block: 1px solid #0B0B0C;
  padding-block: 14px;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scroll-x 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  padding-inline: 22px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION header helper
   ============================================================ */
.sec-head { display: grid; gap: 18px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head .lead { margin: 0; }
.sec-head.split {
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .sec-head.split { grid-template-columns: 1.1fr 0.9fr; align-items: end; column-gap: 48px; }
}
.sec-index {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--faint);
  text-transform: uppercase;
}

/* ============================================================
   HUB INTRO (why baza)
   ============================================================ */
.intro-grid { display: grid; gap: clamp(36px, 6vw, 80px); align-items: center; }
@media (min-width: 920px) { .intro-grid { grid-template-columns: 1fr 1fr; } }
.intro-figure { position: relative; }
.framed {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}
.framed img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
/* crop-mark corners */
.crops::before, .crops::after,
.crops > .c-tr, .crops > .c-bl {
  content: ""; position: absolute; width: 16px; height: 16px; z-index: 3; pointer-events: none;
}
.crops::before { top: 10px; left: 10px; border-top: 2px solid var(--primary); border-left: 2px solid var(--primary); }
.crops::after  { bottom: 10px; right: 10px; border-bottom: 2px solid var(--primary); border-right: 2px solid var(--primary); }
.crops > .c-tr { top: 10px; right: 10px; border-top: 2px solid var(--primary); border-right: 2px solid var(--primary); }
.crops > .c-bl { bottom: 10px; left: 10px; border-bottom: 2px solid var(--primary); border-left: 2px solid var(--primary); }

.intro-points { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 2px; }
.intro-points li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.intro-points li:last-child { border-bottom: 1px solid var(--border); }
.intro-points .n { font-family: var(--mono); color: var(--primary); font-size: 0.78rem; padding-top: 4px; flex: none; }
.intro-points h3 { font-size: 1.15rem; margin-bottom: 4px; letter-spacing: 0; }
.intro-points p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   PACKAGES
   ============================================================ */
.pkg-grid { display: grid; gap: 18px; }
@media (min-width: 760px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }
.pkg {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.4s var(--ease), background 0.3s;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}
.pkg:hover { border-color: var(--primary); transform: translateY(-4px); background: var(--surface-2); }
.pkg.featured { background: linear-gradient(180deg, #1f1d12, var(--surface)); border-color: rgba(252,216,14,0.4); }
.pkg-tag {
  position: absolute; top: 0; right: 0;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--primary); color: #0B0B0C; padding: 6px 12px; font-weight: 700;
}
.pkg .num { font-family: var(--mono); font-size: 0.74rem; color: var(--faint); letter-spacing: 0.18em; }
.pkg h3 { font-size: 1.7rem; margin: 8px 0 4px; }
.pkg .price { font-family: var(--mono); font-size: 0.86rem; color: var(--primary); margin-bottom: 18px; letter-spacing: 0.04em; }
.pkg .desc { color: var(--muted); font-size: 0.96rem; margin-bottom: 20px; }
.pkg ul { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 11px; }
.pkg ul li { display: flex; gap: 11px; font-size: 0.94rem; color: #D2D2D4; align-items: flex-start; }
.pkg ul li svg { width: 16px; height: 16px; color: var(--primary); flex: none; margin-top: 4px; }
.pkg .btn { margin-top: auto; }

.detail-banner {
  margin-top: 18px;
  display: grid;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
@media (min-width: 860px) { .detail-banner { grid-template-columns: 1fr 1fr; } }
.detail-banner .media { position: relative; min-height: 280px; }
.detail-banner .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.detail-banner .body { padding: clamp(30px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.detail-banner h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 14px; }
.detail-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 26px; }
.detail-chips span {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.06em;
  border: 1px solid var(--border); padding: 7px 13px; color: var(--muted); text-transform: uppercase;
}

/* ============================================================
   THE HUB
   ============================================================ */
.hub-section { background: var(--bg-deep); border-block: 1px solid var(--border); }
.hub-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .hub-grid { grid-template-columns: repeat(12, 1fr); grid-auto-rows: 230px; } }
.hub-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 240px;
  display: flex;
  isolation: isolate;
}
.hub-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.8s var(--ease); }
.hub-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,11,0.15) 0%, rgba(10,10,11,0.5) 55%, rgba(10,10,11,0.92) 100%);
}
.hub-card:hover img { transform: scale(1.07); }
.hub-card .label { align-self: flex-end; padding: 24px; width: 100%; }
.hub-card .label .tag { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary); }
.hub-card .label h3 { font-size: 1.5rem; margin: 6px 0 6px; }
.hub-card .label p { margin: 0; font-size: 0.92rem; color: #C9C9CC; max-width: 38ch; }
/* bento spans on wide */
@media (min-width: 1040px) {
  .hub-grid { grid-auto-flow: dense; }
  .hub-card.lg { grid-column: span 6; grid-row: span 2; }
  .hub-card.md { grid-column: span 6; }
  .hub-card.sm { grid-column: span 6; }
  .hub-card.w4 { grid-column: span 4; }
  .hub-card.w8 { grid-column: span 8; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.g-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--surface);
}
.g-item.tall { grid-row: span 2; aspect-ratio: 1 / 2.04; }
.g-item.wide { grid-column: span 2; aspect-ratio: 2.04 / 1; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), filter 0.4s; }
.g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,11,0.55) 100%);
  opacity: 0; transition: opacity 0.3s;
}
.g-item:hover img { transform: scale(1.06); }
.g-item:hover::after { opacity: 1; }
.g-item .zoom {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 34px; height: 34px; display: grid; place-items: center;
  background: rgba(14,14,16,0.7); border: 1px solid var(--border); color: var(--primary);
  opacity: 0; transform: translateY(-6px); transition: 0.3s var(--ease);
}
.g-item:hover .zoom { opacity: 1; transform: translateY(0); }
.g-item .zoom svg { width: 15px; height: 15px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(8,8,9,0.94);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s;
  padding: clamp(16px, 4vw, 56px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 84vh; width: auto; border: 1px solid var(--border); }
.lb-close, .lb-nav {
  position: absolute; background: var(--surface); border: 1px solid var(--border); color: var(--text);
  width: 52px; height: 52px; display: grid; place-items: center; cursor: pointer; transition: 0.25s;
}
.lb-close:hover, .lb-nav:hover { background: var(--primary); color: #000; border-color: var(--primary); }
.lb-close { top: clamp(16px,4vw,40px); right: clamp(16px,4vw,40px); }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-prev { left: clamp(8px,2vw,24px); }
.lb-next { right: clamp(8px,2vw,24px); }
.lb-nav svg, .lb-close svg { width: 22px; height: 22px; }
.lb-caption {
  position: absolute; bottom: clamp(16px,4vw,36px); left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  text-align: center;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; gap: 18px; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(28px, 4vw, 44px);
}
.info-rows { display: grid; gap: 2px; margin-top: 8px; }
.info-row {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 0; border-top: 1px solid var(--border);
}
.info-row:first-child { border-top: none; padding-top: 0; }
.info-row .ic { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border: 1px solid var(--border); color: var(--primary); }
.info-row .ic svg { width: 19px; height: 19px; }
.info-row .k { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 3px; }
.info-row .v { font-size: 1.02rem; color: var(--text); line-height: 1.45; }
.info-row .v a { border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.info-row .v a:hover { border-bottom-color: var(--primary); color: var(--primary); }
.note { font-size: 0.8rem; color: var(--faint); }

/* hours */
.hours { display: grid; gap: 0; margin-top: 4px; }
.hours .row { display: flex; justify-content: space-between; padding: 11px 0; border-top: 1px solid var(--border); font-size: 0.95rem; }
.hours .row:first-child { border-top: none; }
.hours .row .d { color: var(--muted); font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.hours .row .t { color: var(--text); }
.hours .open-now { color: var(--accent); font-family: var(--mono); font-size: 0.78rem; }

/* map placeholder */
.map-ph {
  position: relative;
  border: 1px solid var(--border);
  background:
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(255,255,255,0.025) 38px 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255,255,255,0.025) 38px 39px),
    var(--surface);
  min-height: 280px;
  display: grid; place-items: center; text-align: center;
  overflow: hidden;
}
.map-ph .pin { display: grid; gap: 14px; justify-items: center; padding: 24px; z-index: 2; }
.map-ph .crosshair { width: 54px; height: 54px; color: var(--primary); }
.map-ph .ph-tag { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.map-ph .coords { font-family: var(--mono); font-size: 0.74rem; color: var(--faint); letter-spacing: 0.1em; }
.map-ph .hazard-edge { position: absolute; left: 0; right: 0; height: 8px; background-image: repeating-linear-gradient(45deg, var(--primary) 0 12px, #0B0B0C 12px 24px); }
.map-ph .hazard-edge.top { top: 0; }
.map-ph .hazard-edge.bot { bottom: 0; }

/* enquiry form */
.form-grid { display: grid; gap: 14px; margin-top: 22px; }
@media (min-width: 560px) { .form-grid .two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; } }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 13px 15px;
  font-family: var(--body);
  font-size: 0.98rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(252,216,14,0.14);
}
.field select { appearance: none; cursor: pointer; }
.form-foot { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--border); padding-block: clamp(56px, 7vw, 88px) 32px; }
.foot-top { display: grid; gap: 40px; }
@media (min-width: 860px) { .foot-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.foot-brand img { height: 48px; margin-bottom: 22px; }
.foot-brand p { color: var(--muted); font-size: 0.95rem; max-width: 34ch; }
.foot-col h4 { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin: 0 0 16px; font-weight: 400; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot-col a { color: var(--muted); font-size: 0.95rem; transition: color 0.2s; }
.foot-col a:hover { color: var(--primary); }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--border); color: var(--muted); transition: 0.25s; }
.socials a:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.foot-bot {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em; color: var(--faint); text-transform: uppercase;
}

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none;
  background: rgba(12,12,13,0.92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  gap: 8px;
}
.mobile-bar a {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 9px 4px;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar a.call { color: var(--text); }
.mobile-bar a.wa { color: var(--accent); }
.mobile-bar a.book {
  background: var(--primary); color: #0B0B0C; font-weight: 700; flex: 1.4;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 130;
  background: rgba(8,8,9,0.86);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: clamp(16px,4vw,40px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-card {
  width: 100%; max-width: 520px;
  background: var(--surface); border: 1px solid var(--border);
  padding: clamp(26px, 4vw, 40px);
  transform: translateY(16px); transition: transform 0.4s var(--ease);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
}
.modal.open .modal-card { transform: translateY(0); }
.modal-card .eyebrow { margin-bottom: 10px; }
.modal-card h3 { font-size: 1.7rem; margin-bottom: 6px; }
.modal-card .sub { color: var(--muted); font-size: 0.96rem; margin-bottom: 26px; }
.modal-opts { display: grid; gap: 12px; }
.opt {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; border: 1px solid var(--border); background: var(--bg);
  transition: border-color 0.25s, transform 0.3s var(--ease);
}
.opt:hover { border-color: var(--primary); transform: translateX(3px); }
.opt .oic { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border: 1px solid var(--border); }
.opt.primary .oic { background: var(--primary); color: #000; border-color: var(--primary); }
.opt.wa .oic { color: var(--accent); }
.opt .oic svg { width: 20px; height: 20px; }
.opt .ot { flex: 1; }
.opt .ot strong { display: block; font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0; }
.opt .ot span { font-size: 0.84rem; color: var(--muted); }
.opt .arr { color: var(--faint); }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px; background: none; border: 1px solid var(--border); color: var(--text); cursor: pointer;
  display: grid; place-items: center; transition: 0.25s;
}
.modal-close:hover { border-color: var(--primary); color: var(--primary); }
.modal-close svg { width: 18px; height: 18px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-links, .header-cta .btn-ghost { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 760px) {
  body { font-size: 16px; padding-bottom: 64px; }
  .header-cta .btn-primary { display: none; }
  .mobile-bar { display: flex; }
  .hud--tr { display: none; }
  .site-header .header-row { height: 64px; }
  .g-item.wide { grid-column: span 2; }
}
@media (max-width: 420px) {
  .hero-meta { gap: 18px 26px; }
}
