/* ============================================================
   No.1 Luxury Yacht — Dubai · marine-luxury design system
   Palette keyed to the brand logo (jade-teal wave, steel-navy
   hull, champagne-gold flag) + golden-hour sea photography.
   ============================================================ */




:root {
  /* Dark surfaces */
  --bg: #0B1F2A;
  --bg-2: #0e2733;
  --surface: #10303D;
  --secondary: #103A4E;

  /* Light surfaces */
  --bg-light: #F6F8F9;
  --surface-light: #FFFFFF;
  --sand: #EFE7D6;
  --sand-soft: #F5F0E4;

  /* Text */
  --text: #F4F7F8;
  --text-ink: #0B1F2A;
  --muted: #9FB4BD;
  --muted-ink: #5b7079;

  /* Brand */
  --primary: #137A78;
  --primary-bright: #169c99;
  --accent: #C8A24B;
  --accent-soft: #d8b97a;
  --focus: #5FD0DC;

  /* Lines */
  --border: #244A57;
  --border-light: #E3E9EB;

  /* Type */
  --display: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* Shape */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(11, 31, 42, 0.06);
  --shadow: 0 18px 50px -22px rgba(11, 31, 42, 0.30);
  --shadow-lg: 0 40px 90px -40px rgba(11, 31, 42, 0.55);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --header-h: 88px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg-light);
  color: var(--text-ink);
  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(--accent); color: var(--bg); }

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

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

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin: 0;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  opacity: 0.85;
}
.eyebrow.center::before { display: none; }

.section-title {
  font-size: clamp(2.1rem, 5.2vw, 3.7rem);
  margin-top: 0.5rem;
}

.lede {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  line-height: 1.6;
  color: var(--muted-ink);
  max-width: 56ch;
  font-weight: 400;
}

.dark .lede { color: var(--muted); }

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

section { position: relative; }

.band {
  padding-block: clamp(64px, 9vw, 120px);
}

.dark {
  background: var(--bg);
  color: var(--text);
}
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--text); }

.section-head { max-width: 760px; margin-bottom: clamp(38px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  padding: 0.95em 1.6em;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.2,.7,.3,1), background 0.25s, color 0.25s, box-shadow 0.25s, border-color 0.25s;
  min-height: 48px;
  line-height: 1;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(19, 122, 120, 0.7);
}
.btn-primary:hover { background: var(--primary-bright); box-shadow: 0 18px 36px -14px rgba(19, 122, 120, 0.8); }

.btn-whatsapp { background: #1faa55; color: #fff; box-shadow: 0 12px 28px -12px rgba(31,170,85,.65); }
.btn-whatsapp:hover { background: #25b961; }

.btn-gold {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 12px 28px -14px rgba(200, 162, 75, 0.75);
}
.btn-gold:hover { background: var(--accent-soft); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--text); background: rgba(255,255,255,0.06); }

.btn-outline-ink {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text-ink);
}
.btn-outline-ink:hover { border-color: var(--primary); color: var(--primary); }

.btn-sm { padding: 0.72em 1.25em; min-height: 42px; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, box-shadow 0.35s, height 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(246, 248, 249, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-light);
  height: 74px;
}
.header__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand: text wordmark over the hero, image crest once the header is sticky/scrolled */
.brand { display: inline-flex; align-items: center; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__mark {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
}
.brand__mark .o { font-size: 0.86em; }
.brand__mark .num { color: var(--accent-soft); }
.brand__sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-top: 4px;
  padding-left: 2px;
}
.brand__img { height: 56px; width: auto; display: none; }
/* swap on scroll */
.header.scrolled .brand__text { display: none; }
.header.scrolled .brand__img { display: block; }
/* but keep the text wordmark while the dark mobile menu is open */
body.menu-open .brand__text { display: flex; }
body.menu-open .brand__img { display: none; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
  padding: 0.6em 0.95em;
  border-radius: 8px;
  position: relative;
  transition: color 0.2s;
}
.header.scrolled .nav a { color: var(--text-ink); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0.95em; right: 0.95em; bottom: 0.4em;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1);
}
.nav a:hover { color: var(--accent-soft); }
.header.scrolled .nav a:hover { color: var(--primary); }
.nav a:hover::after { transform: scaleX(1); }

/* header sits over white-ish hero top with chip, so default ink text is fine */
.header__cta { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
}
.header.scrolled .hamburger { border-color: var(--border-light); background: rgba(255,255,255,0.92); }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  margin-inline: auto;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.header.scrolled .hamburger span { background: var(--text-ink); }
body.menu-open .hamburger span { background: #fff; }
body.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-down menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  padding: calc(var(--header-h) + 20px) var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(.2,.7,.3,1), opacity 0.35s, visibility 0.35s;
}
body.menu-open .mobile-menu { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--text);
  padding: 0.45em 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:active { color: var(--accent); }
.mobile-menu .mm-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--text);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% center;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(7,20,28,0.92) 0%, rgba(7,20,28,0.34) 42%, rgba(7,20,28,0.12) 70%, rgba(7,20,28,0.45) 100%),
    linear-gradient(to right, rgba(7,20,28,0.55), rgba(7,20,28,0) 55%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: calc(var(--header-h) + 24px) var(--gutter) clamp(54px, 9vh, 110px);
}
.hero__content { max-width: 760px; }
.hero h1 {
  font-size: clamp(2.9rem, 8.5vw, 6.4rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-soft);
}
.hero__sub {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 2.3vw, 1.32rem);
  color: rgba(244,247,248,0.9);
  max-width: 48ch;
  line-height: 1.6;
}
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__tags {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 0.88rem;
  color: rgba(244,247,248,0.78);
  letter-spacing: 0.02em;
}
.hero__tags span { display: inline-flex; align-items: center; gap: 0.55em; }
.hero__tags span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex: none;
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; z-index: 2;
  transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(244,247,248,0.6);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll .line { width: 1px; height: 34px; background: linear-gradient(var(--accent), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.3; transform:scaleY(.6);} 50%{opacity:1; transform:scaleY(1);} }

/* ============================================================
   MARQUEE / POSITIONING STRIP
   ============================================================ */
.strip {
  background: var(--bg-2);
  color: var(--text);
  border-block: 1px solid var(--border);
  padding-block: 30px;
  overflow: hidden;
}
.strip__inner {
  display: flex; flex-wrap: wrap; gap: 18px 56px;
  align-items: center; justify-content: center;
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
}
.strip__item {
  display: inline-flex; align-items: baseline; gap: 0.7em;
  font-family: var(--display);
}
.strip__item b {
  font-size: 1.55rem; font-weight: 600; color: var(--accent-soft);
  font-variant-numeric: lining-nums;
}
.strip__item span { font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.strip__claim { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.04em; text-transform: none; font-family: var(--sans); width: 100%; text-align: center; margin-top: 6px; opacity: 0.7; }

/* ============================================================
   INTRO (split)
   ============================================================ */
.intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}
.intro__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.intro__media img { width: 100%; height: 100%; object-fit: cover; }
.intro__media .tag {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(11,31,42,0.72);
  backdrop-filter: blur(8px);
  color: #fff; padding: 8px 16px; border-radius: 100px;
  font-size: 0.8rem; letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.14);
}
.intro p + p { margin-top: 1.1rem; }
.intro__sign {
  margin-top: 1.8rem; display: flex; align-items: center; gap: 16px;
  font-size: 0.9rem; color: var(--muted-ink);
}
.intro__sign .rule { flex: 1; height: 1px; background: var(--border-light); }

/* ============================================================
   FLEET
   ============================================================ */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 38px;
}
.chip {
  font-family: var(--sans);
  font-weight: 500; font-size: 0.9rem;
  padding: 0.6em 1.25em;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  background: #fff;
  color: var(--muted-ink);
  cursor: pointer;
  transition: all 0.22s;
  min-height: 42px;
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip[aria-pressed="true"] {
  background: var(--bg); color: #fff; border-color: var(--bg);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.yacht {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-light);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s;
  opacity: 1;
}
.yacht.is-hidden { display: none; }
.yacht:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.yacht__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.yacht__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.2,.7,.3,1); }
.yacht:hover .yacht__img img { transform: scale(1.06); }
.yacht__cat {
  position: absolute; top: 14px; left: 14px;
  background: rgba(11,31,42,0.78);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  padding: 6px 12px; border-radius: 100px;
  border: 1px solid rgba(200,162,75,0.4);
}
.yacht__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.yacht__name { font-size: 1.7rem; font-weight: 600; letter-spacing: -0.01em; }
.yacht__desc { color: var(--muted-ink); font-size: 0.96rem; margin-top: 6px; flex: 1; }
.yacht__meta {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 0.82rem; color: var(--muted-ink); letter-spacing: 0.04em;
}
.yacht__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.yacht__actions { margin-top: 18px; display: flex; gap: 10px; }

/* ============================================================
   EXPERIENCES
   ============================================================ */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}
.exp {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex; align-items: flex-end;
  color: #fff;
  isolation: isolate;
}
.exp.tall { grid-row: span 2; }
.exp img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.8s cubic-bezier(.2,.7,.3,1); }
.exp::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(7,20,28,0.92) 0%, rgba(7,20,28,0.4) 45%, rgba(7,20,28,0.05) 75%);
}
.exp:hover img { transform: scale(1.07); }
.exp__body { padding: 26px; width: 100%; }
.exp__body h3 { font-size: 1.7rem; }
.exp__body p { margin: 6px 0 0; font-size: 0.95rem; color: rgba(244,247,248,0.82); }
.exp__body .arrow {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--sans); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.06em;
  color: var(--accent-soft);
}
.exp__body .arrow svg { width: 16px; height: 16px; transition: transform 0.3s; }
.exp:hover .arrow svg { transform: translateX(4px); }

/* ============================================================
   WATERSPORTS BAND
   ============================================================ */
.water { position: relative; overflow: hidden; color: #fff; }
.water__bg { position: absolute; inset: 0; z-index: 0; }
.water__bg img { width: 100%; height: 100%; object-fit: cover; }
.water__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(to right, rgba(7,20,28,0.95) 0%, rgba(7,20,28,0.75) 45%, rgba(7,20,28,0.35) 100%); }
.water__inner { position: relative; z-index: 1; }
.water__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px,5vw,70px); align-items: center; }
.addons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.addon {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 16px 18px;
  backdrop-filter: blur(4px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.addon:hover { background: rgba(19,122,120,0.18); border-color: rgba(95,208,220,0.4); transform: translateY(-2px); }
.addon .ic {
  width: 40px; height: 40px; flex: none;
  border-radius: 10px;
  background: rgba(200,162,75,0.16);
  display: grid; place-items: center;
  color: var(--accent-soft);
}
.addon .ic svg { width: 22px; height: 22px; }
.addon b { font-weight: 600; font-size: 1rem; display: block; }
.addon small { color: var(--muted); font-size: 0.8rem; }

/* ============================================================
   WHY US
   ============================================================ */
.why { background: var(--sand-soft); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(227,233,235,0.8);
}
.why-card .ic {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: linear-gradient(150deg, var(--primary), var(--secondary));
  display: grid; place-items: center; color: #fff;
  margin-bottom: 18px;
}
.why-card .ic svg { width: 25px; height: 25px; }
.why-card h3 { font-size: 1.45rem; }
.why-card p { font-size: 0.94rem; color: var(--muted-ink); margin: 8px 0 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gtile { position: relative; overflow: hidden; border-radius: var(--r); cursor: pointer; }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.2,.7,.3,1); }
.gtile::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(7,20,28,0.4), transparent 60%); opacity: 0; transition: opacity 0.3s; }
.gtile:hover img { transform: scale(1.07); }
.gtile:hover::after { opacity: 1; }
.gtile.w2 { grid-column: span 2; }
.gtile.h2 { grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,14,20,0.92);
  backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; transition: background 0.2s;
}
.lightbox__close { top: 22px; right: 22px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: 22px; }
.lightbox__nav.next { right: 22px; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.22); }
.lightbox svg { width: 22px; height: 22px; }

/* ============================================================
   ENQUIRY FORM
   ============================================================ */
.enquire { background: var(--bg); color: var(--text); }
.enq-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px,5vw,72px); align-items: start; }
.enq-aside .lede { color: var(--muted); margin-top: 18px; }
.enq-contacts { margin-top: 32px; display: flex; flex-direction: column; gap: 4px; }
.enq-contact {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-top: 1px solid var(--border);
}
.enq-contact:last-child { border-bottom: 1px solid var(--border); }
.enq-contact .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--surface); display:grid; place-items:center; color: var(--accent-soft); flex: none; }
.enq-contact .ic svg { width: 21px; height: 21px; }
.enq-contact .lbl { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.enq-contact .val { font-size: 1.1rem; font-weight: 600; color: var(--text); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.5vw, 40px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans); font-size: 1rem;
  color: var(--text);
  background: rgba(11,31,42,0.55);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #6f8893; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239FB4BD' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 38px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--focus); box-shadow: 0 0 0 3px rgba(95,208,220,0.18);
}
.field.error input, .field.error select { border-color: #e06a6a; }
.field .err { color: #f0a3a3; font-size: 0.78rem; margin-top: 6px; display: none; }
.field.error .err { display: block; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.form-success {
  display: none;
  text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: rgba(31,170,85,0.16); color: #46d07e; display:grid; place-items:center; margin: 0 auto 18px; }
.form-success .ok svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 1.9rem; }
.form-success p { color: var(--muted); margin-top: 8px; }

/* ============================================================
   CONTACT / MAP
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; justify-content: center; }
.map-ph {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 380px;
  background:
    repeating-linear-gradient(45deg, #e7edee 0 14px, #eef3f4 14px 28px);
  border: 1px solid var(--border-light);
  display: grid; place-items: center;
  text-align: center;
}
.map-ph .pin {
  width: 58px; height: 58px; border-radius: 50% 50% 50% 0;
  background: var(--primary); transform: rotate(-45deg);
  display: grid; place-items: center; margin: 0 auto 18px;
  box-shadow: var(--shadow);
}
.map-ph .pin::after { content:""; width: 18px; height: 18px; background: #fff; border-radius: 50%; transform: rotate(45deg); }
.map-ph .label { font-family: var(--sans); }
.map-ph .label b { display:block; font-size: 1.05rem; color: var(--text-ink); }
.map-ph .label small { color: var(--muted-ink); font-size: 0.82rem; letter-spacing: 0.04em; }
.map-ph .badge { position: absolute; top: 16px; left: 16px; background: #fff; padding: 6px 13px; border-radius: 100px; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-ink); box-shadow: var(--shadow-sm); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); color: var(--muted); padding-block: clamp(54px, 7vw, 84px) 30px; border-top: 1px solid var(--border); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
.footer__brand-chip {
  background: rgba(255,255,255,0.96);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  display: inline-flex;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.footer__brand-chip img { height: 132px; width: auto; }
.footer p.about { font-size: 0.92rem; line-height: 1.7; max-width: 34ch; }
.footer h4 { font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 0.94rem; color: var(--muted); transition: color 0.2s; }
.footer ul a:hover { color: var(--text); }
.footer .socials { display: flex; gap: 10px; margin-top: 6px; }
.footer .socials a {
  width: 42px; height: 42px; border-radius: 11px;
  border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted);
  transition: all 0.22s;
}
.footer .socials a:hover { color: #fff; border-color: var(--primary); background: var(--primary); }
.footer .socials svg { width: 19px; height: 19px; }
.footer__bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 0.82rem; color: var(--muted-ink);
}
.footer__bottom .brandclaim { color: var(--muted); }

/* ============================================================
   FLOATING WHATSAPP + MOBILE ACTION BAR
   ============================================================ */
.fab {
  position: fixed; right: 22px; bottom: 26px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #1faa55; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -10px rgba(31,170,85,0.7);
  transition: transform 0.25s;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; }
.fab::before {
  content:""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #1faa55; animation: ring 2.2s ease-out infinite;
}
@keyframes ring { 0%{transform:scale(1);opacity:.7;} 100%{transform:scale(1.5);opacity:0;} }

.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none;
  background: rgba(11,31,42,0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 9px;
}
.action-bar a {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 4px; border-radius: 12px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--text);
}
.action-bar a svg { width: 21px; height: 21px; }
.action-bar a.wa { color: #46d07e; }
.action-bar a.call { color: var(--focus); }
.action-bar a.enq { background: var(--accent); color: var(--bg); }

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

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 880px) {
  .nav, .header__cta .btn { display: none; }
  .hamburger { display: flex; }
  .intro__grid { grid-template-columns: 1fr; }
  .intro__media { aspect-ratio: 16/11; max-height: 420px; }
  .water__grid { grid-template-columns: 1fr; }
  .enq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 170px; }
  .action-bar { display: flex; }
  .fab { display: none; }
  body { padding-bottom: 76px; }
}

@media (max-width: 620px) {
  :root { --header-h: 72px; }
  .band { padding-block: clamp(52px, 13vw, 80px); }
  .fleet-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp.tall { grid-row: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gtile.w2 { grid-column: span 1; }
  .gtile.h2 { grid-row: span 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__brand-chip img { height: 110px; }
  .strip__inner { gap: 14px 30px; }
  .hero__actions .btn { flex: 1; }
  .brand img { height: 46px; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav.prev { left: 10px; }
  .lightbox__nav.next { right: 10px; }
}
