/* =============================================================
   Cozmo Jet Ski — Dubai Marina
   Design system. Palette keyed directly to the brand logo:
   turquoise wave (--primary), deep marine wordmark (--secondary),
   sun-orange disc (--accent). Bright marine aqua, sun-sea-speed.
   Mobile-first; refined/premium; WCAG-AA contrast.
   ============================================================= */

:root {
  /* Palette (from CLAUDE-DESIGN.md, keyed to logo) */
  --bg: #F4FBFD;
  --surface: #FFFFFF;
  --text: #0B2A33;
  --muted: #5C7A82;
  --primary: #0E9CC4;          /* Gulf turquoise */
  --primary-dark: #0B7E9F;
  --secondary: #0A3A52;        /* deep marine navy-teal */
  --secondary-deep: #072E41;
  --accent: #F7941E;           /* sun orange */
  --accent-dark: #E07D08;
  --border: #D6E7EC;
  --focus: #0E9CC4;
  --wa: #25D366;               /* WhatsApp green, reserved */
  --wa-dark: #1FB457;

  /* Type */
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Spacing scale (8px) */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 96px; --s8: 128px;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(11,42,51,.06), 0 2px 8px rgba(11,42,51,.05);
  --shadow-md: 0 8px 24px rgba(11,42,51,.10), 0 2px 6px rgba(11,42,51,.06);
  --shadow-lg: 0 24px 60px rgba(7,46,65,.20), 0 6px 18px rgba(7,46,65,.10);

  --maxw: 1200px;
  --header-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

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

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--secondary);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

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

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: var(--s6); }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-head { max-width: 660px; margin-bottom: var(--s5); }
.section-head h2 { font-size: clamp(28px, 5.4vw, 44px); }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 16px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  min-height: 52px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(247,148,30,.34); }
.btn-accent:hover { background: var(--accent-dark); box-shadow: 0 12px 28px rgba(247,148,30,.42); }

.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,.3); }
.btn-wa:hover { background: var(--wa-dark); }

.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 22px rgba(14,156,196,.3); }
.btn-primary:hover { background: var(--primary-dark); }

.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.24); }

.btn-outline { background: var(--surface); color: var(--secondary); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-sm { padding: 12px 20px; min-height: 44px; font-size: 15px; }
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; }
.brand img { height: 52px; width: auto; transition: filter .3s ease; }
/* logo has dark text — keep readable on transparent header over photo */
.header:not(.scrolled) .brand img {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.45));
}
.nav { display: none; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--secondary);
  padding: 10px 14px;
  border-radius: 10px;
  transition: color .15s ease, background-color .15s ease;
}
.header:not(.scrolled) .nav a { color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.nav a:hover { color: var(--primary); background: rgba(14,156,196,.08); }
.header:not(.scrolled) .nav a:hover { color: #fff; background: rgba(255,255,255,.16); }
.header-cta { display: none; }

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border: none;
  background: rgba(255,255,255,.9);
  border-radius: 12px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.burger span { display: block; width: 22px; height: 2px; background: var(--secondary); margin-inline: auto; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu sheet */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  padding: 24px 24px calc(24px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.1,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a.m-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 22px;
  color: var(--secondary);
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu a.m-link span { color: var(--primary); font-size: 18px; }
.mobile-menu .m-actions { margin-top: auto; display: grid; gap: 12px; padding-top: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .desktop { display: none; }
.hero-media .mobile { display: block; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(7,46,65,.92) 0%, rgba(7,46,65,.55) 32%, rgba(7,46,65,.12) 60%, rgba(7,46,65,.30) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(40px, 9vw, 88px); padding-top: calc(var(--header-h) + 24px); }
.hero h1 {
  color: #fff;
  font-size: clamp(38px, 11vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero h1 .hl { color: var(--accent); }
.hero-sub {
  margin-top: 20px;
  font-size: clamp(16px, 4.4vw, 21px);
  max-width: 46ch;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
.hero-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-trust li {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.95);
  list-style: none;
}
.hero-trust svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.hero-trust ul { display: contents; margin: 0; padding: 0; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.7); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-hint .dot { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.5); border-radius: 12px; position: relative; }
.scroll-hint .dot::after { content:""; position:absolute; top:6px; left:50%; transform:translateX(-50%); width:3px; height:7px; border-radius:3px; background:#fff; animation: scrolldot 1.6s ease-in-out infinite; }
@keyframes scrolldot { 0%,100%{ opacity:.2; transform:translate(-50%,0);} 50%{ opacity:1; transform:translate(-50%,8px);} }

/* ============================================================
   MARQUEE / LANDMARK STRIP
   ============================================================ */
.landmarks {
  background: var(--secondary);
  color: #fff;
  overflow: hidden;
  padding-block: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.marquee span {
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  letter-spacing: .02em; padding-inline: 26px; display: inline-flex; align-items: center; gap: 26px; color: rgba(255,255,255,.92);
}
.marquee span::after { content: "•"; color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages { background: var(--bg); }
.pkg-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.pkg-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pkg-card.featured { border-color: var(--accent); }
.pkg-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pkg-card:hover .pkg-media img { transform: scale(1.06); }
.pkg-dur {
  position: absolute; left: 14px; top: 14px;
  background: rgba(7,46,65,.82); backdrop-filter: blur(4px);
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 14px;
  padding: 7px 14px; border-radius: 999px; letter-spacing: .02em;
}
.pkg-flag {
  position: absolute; right: 14px; top: 14px;
  background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 12px;
  padding: 6px 13px; border-radius: 999px; text-transform: uppercase; letter-spacing: .08em;
  box-shadow: 0 4px 12px rgba(247,148,30,.4);
}
.pkg-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.pkg-body h3 { font-size: 23px; }
.pkg-route { color: var(--muted); font-size: 14.5px; margin-top: 8px; min-height: 42px; }
.pkg-price { margin-top: 16px; display: flex; align-items: baseline; gap: 7px; }
.pkg-price .from { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.pkg-price .amt { font-family: var(--font-head); font-weight: 800; font-size: 32px; color: var(--secondary); letter-spacing: -.02em; }
.pkg-price .cur { font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--primary); }
.pkg-incl { list-style: none; margin: 16px 0 0; padding: 16px 0 0; border-top: 1px solid var(--border); display: grid; gap: 9px; }
.pkg-incl li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text); }
.pkg-incl svg { width: 17px; height: 17px; color: var(--primary); flex: none; margin-top: 2px; }
.pkg-body .btn { margin-top: 20px; }

.pkg-note { margin-top: 22px; font-size: 13.5px; color: var(--muted); display: flex; gap: 9px; align-items: flex-start; }
.pkg-note svg { width: 17px; height: 17px; color: var(--primary); flex: none; margin-top: 2px; }

/* ============================================================
   INCLUDED BAND
   ============================================================ */
.included { background: var(--secondary); color: #fff; position: relative; overflow: hidden; }
.included::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 85% 0%, rgba(14,156,196,.35), transparent 55%);
}
.included .wrap { position: relative; z-index: 1; }
.included .section-head h2 { color: #fff; }
.included .section-head p { color: rgba(255,255,255,.8); }
.incl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.incl-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  transition: background-color .2s ease, transform .2s ease;
}
.incl-item:hover { background: rgba(255,255,255,.11); transform: translateY(-3px); }
.incl-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(247,148,30,.16); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 14px;
}
.incl-icon svg { width: 24px; height: 24px; }
.incl-item h4 { color: #fff; font-size: 16px; }
.incl-item p { color: rgba(255,255,255,.72); font-size: 13.5px; margin-top: 5px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bg); }
.gal-grid { columns: 2; column-gap: 14px; }
.gal-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  background: var(--secondary);
}
.gal-item img { width: 100%; height: auto; transition: transform .5s ease, opacity .4s ease; }
.gal-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,46,65,.4), transparent 50%);
  opacity: 0; transition: opacity .3s ease;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-item:hover::after { opacity: 1; }
.gal-zoom {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--secondary);
  display: grid; place-items: center; opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease;
}
.gal-item:hover .gal-zoom { opacity: 1; transform: translateY(0); }
.gal-zoom svg { width: 18px; height: 18px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,28,40,.94);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff;
  cursor: pointer; display: grid; place-items: center; transition: background-color .2s ease;
}
.lb-btn:hover { background: rgba(255,255,255,.24); }
.lb-btn svg { width: 26px; height: 26px; }
.lb-prev { left: 16px; } .lb-next { right: 16px; }
.lb-close { position: absolute; top: 18px; right: 18px; transform: none; width: 48px; height: 48px; }
.lb-count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: 14px; font-family: var(--font-head); letter-spacing: .05em; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-badge {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(6px);
  border-radius: var(--radius-sm); padding: 14px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.about-badge .star { color: var(--accent); display: flex; }
.about-badge .star svg { width: 17px; height: 17px; }
.about-badge .ab-num { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--secondary); line-height: 1; }
.about-badge .ab-lab { font-size: 11.5px; color: var(--muted); margin-top: 3px; }
.about-copy p { color: var(--muted); font-size: 16.5px; margin-top: 16px; }
.about-copy p strong { color: var(--text); font-weight: 600; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
.about-stat { padding: 18px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.about-stat .n { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: var(--primary); letter-spacing: -.02em; }
.about-stat .l { font-size: 12.5px; color: var(--muted); margin-top: 4px; line-height: 1.3; }

/* ============================================================
   REVIEWS / SOCIAL PROOF
   ============================================================ */
.proof { background: var(--bg); }
.proof-card {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-deep));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 6vw, 56px);
  position: relative; overflow: hidden; box-shadow: var(--shadow-md);
}
.proof-card::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(247,148,30,.22), transparent 70%);
}
.proof-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.proof-rating { text-align: center; }
.proof-rating .big { font-family: var(--font-head); font-weight: 800; font-size: 68px; line-height: 1; letter-spacing: -.03em; }
.proof-rating .stars { display: flex; justify-content: center; gap: 4px; margin: 12px 0 8px; color: var(--accent); }
.proof-rating .stars svg { width: 22px; height: 22px; }
.proof-rating .src { font-size: 13.5px; color: rgba(255,255,255,.75); }
.proof-rating .src a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.proof-points { display: grid; gap: 16px; }
.proof-points li { display: flex; gap: 14px; align-items: flex-start; list-style: none; }
.proof-points .pp-ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(14,156,196,.22); color: #fff; display: grid; place-items: center; flex: none; }
.proof-points .pp-ic svg { width: 21px; height: 21px; }
.proof-points h4 { color: #fff; font-size: 16.5px; }
.proof-points p { color: rgba(255,255,255,.74); font-size: 14px; margin-top: 3px; }
.proof-points ul { margin: 0; padding: 0; display: grid; gap: 16px; }
.proof-disclaimer { margin-top: 18px; font-size: 12.5px; color: var(--muted); text-align: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--surface); }
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 17.5px; color: var(--secondary);
  padding: 22px 44px 22px 0; position: relative; display: block;
}
.faq-q::after {
  content: ""; position: absolute; right: 6px; top: 26px;
  width: 13px; height: 13px;
  border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary);
  transform: rotate(45deg); transition: transform .3s ease;
}
.faq-item.open .faq-q::after { transform: rotate(-135deg); top: 30px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 44px 22px 0; color: var(--muted); font-size: 15.5px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.ci-row {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 18px 20px; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
a.ci-row:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.ci-ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(14,156,196,.1); color: var(--primary); display: grid; place-items: center; flex: none; }
.ci-ic svg { width: 22px; height: 22px; }
.ci-row .ci-lab { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.ci-row .ci-val { font-family: var(--font-head); font-weight: 600; font-size: 16.5px; color: var(--secondary); margin-top: 3px; word-break: break-word; }
.ci-row .ci-sub { font-size: 13px; color: var(--muted); margin-top: 3px; }

/* Map placeholder — explicitly labelled, not faked */
.map-ph {
  margin-top: 4px;
  border: 1.5px dashed var(--border); border-radius: var(--radius-sm);
  background:
    repeating-linear-gradient(45deg, rgba(14,156,196,.05) 0 12px, transparent 12px 24px),
    var(--surface);
  min-height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  text-align: center; padding: 24px; color: var(--muted);
}
.map-ph svg { width: 34px; height: 34px; color: var(--primary); }
.map-ph .mp-t { font-family: var(--font-head); font-weight: 600; color: var(--secondary); font-size: 16px; }
.map-ph .mp-s { font-size: 13px; max-width: 38ch; }
.map-ph code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12px; background: var(--bg); padding: 3px 8px; border-radius: 6px; color: var(--muted); border: 1px solid var(--border); }

/* Enquiry form */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(22px, 5vw, 34px); box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: 22px; }
.form-card > p { color: var(--muted); font-size: 14.5px; margin-top: 8px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--secondary); margin-bottom: 7px; font-family: var(--font-head); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--text);
  padding: 14px 15px; border: 1.5px solid var(--border); border-radius: 11px; background: var(--bg);
  transition: border-color .18s ease, box-shadow .18s ease; -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,156,196,.15); background: var(--surface); }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.select-wrap { position: relative; }
.select-wrap::after { content:""; position:absolute; right:16px; top:50%; width:9px; height:9px; border-right:2px solid var(--muted); border-bottom:2px solid var(--muted); transform:translateY(-70%) rotate(45deg); pointer-events:none; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success .fs-ic { width: 56px; height: 56px; border-radius: 50%; background: rgba(37,211,102,.14); color: var(--wa); display: grid; place-items: center; margin: 0 auto 14px; }
.form-success .fs-ic svg { width: 30px; height: 30px; }
.form-success h4 { font-size: 20px; }
.form-success p { color: var(--muted); margin-top: 8px; font-size: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--secondary-deep); color: rgba(255,255,255,.7); padding-block: var(--s6) 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; padding-bottom: 44px; }
.footer-brand .logo-plaque {
  display: inline-flex; background: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-md);
}
.footer-brand .logo-plaque img { height: 64px; width: auto; }
.footer-brand p { margin-top: 18px; max-width: 38ch; font-size: 14.5px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background-color .2s ease, transform .2s ease; }
.footer-social a:hover { background: var(--primary); transform: translateY(-2px); }
.footer-social svg { width: 21px; height: 21px; }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a, .footer-col li { font-size: 14.5px; color: rgba(255,255,255,.7); transition: color .15s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px; display: flex; flex-direction: column; gap: 10px; font-size: 12.5px; }
.footer-bottom .fb-disc { color: rgba(255,255,255,.5); max-width: 70ch; line-height: 1.5; }

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
  border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(11,42,51,.08);
}
.mobilebar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  font-family: var(--font-head); font-weight: 600; font-size: 12px; border-radius: 12px; min-height: 50px; padding: 6px;
}
.mobilebar svg { width: 20px; height: 20px; }
.mb-call { background: var(--bg); color: var(--secondary); border: 1px solid var(--border); }
.mb-wa { background: var(--wa); color: #fff; }
.mb-book { background: var(--accent); color: #fff; flex-direction: row !important; gap: 7px !important; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 560px) {
  .incl-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { columns: 2; }
  .field-row { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (min-width: 768px) {
  .section { padding-block: var(--s7); }
  .hero-media .desktop { display: block; }
  .hero-media .mobile { display: none; }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .incl-grid { grid-template-columns: repeat(4, 1fr); }
  .gal-grid { columns: 3; column-gap: 16px; }
  .gal-item { margin-bottom: 16px; }
  .about-grid { grid-template-columns: 0.85fr 1fr; gap: 52px; }
  .proof-grid { grid-template-columns: 0.7fr 1fr; gap: 52px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .mobilebar { display: none; }
}

@media (min-width: 940px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .burger { display: none; }
  .pkg-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .hero-content { padding-bottom: 96px; }
}

@media (min-width: 1100px) {
  .wrap { padding-inline: 32px; }
}
