/* ============================================================
   Gulf Yacht Rentals — Coastal-luxury design system
   Palette keyed to the brand logo: marine navy · gulf teal · warm gold
   ============================================================ */

:root {
  --bg:        #F7FAFC;
  --surface:   #FFFFFF;
  --text:      #0C1E2E;
  --muted:     #5B7184;
  --primary:   #16385A;
  --primary-d: #0C2740;
  --secondary: #1B6E8A;
  --accent:    #C79E47;
  --accent-d:  #A9802F;
  --border:    #DCE5EC;
  --focus:     #1FA2C4;

  --navy-grad: linear-gradient(180deg, #16385A 0%, #0C2740 100%);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --sh-sm: 0 1px 2px rgba(12,30,46,.06), 0 2px 8px rgba(12,30,46,.05);
  --sh-md: 0 6px 24px rgba(12,30,46,.10);
  --sh-lg: 0 24px 60px rgba(12,30,46,.18);

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }

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

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

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

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

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

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

section { position: relative; }

/* ---- Utility / shared ---------------------------------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: #9FC6D6; }

.section-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(32px, 5vw, 52px); }
.section-head p { color: var(--muted); margin-top: 18px; font-size: 18px; }

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

/* ---- Buttons ------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  min-height: 48px;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-gold { background: var(--accent); color: #1A1305; box-shadow: 0 8px 22px rgba(199,158,71,.32); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(199,158,71,.42); background: #d4ab53; }
.btn-navy { background: var(--primary); color: #fff; }
.btn-navy:hover { transform: translateY(-2px); background: var(--primary-d); box-shadow: var(--sh-md); }
.btn-wa { background: #25D366; color: #04361b; box-shadow: 0 8px 22px rgba(37,211,102,.3); }
.btn-wa:hover { transform: translateY(-2px); background: #2ee06f; box-shadow: 0 14px 30px rgba(37,211,102,.4); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.18); border-color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }

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

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  background: rgba(247,250,252,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: var(--sh-sm);
  border-bottom-color: var(--border);
}
.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--accent); transition: width .3s var(--ease);
}
.nav a:hover { color: var(--primary); }
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 11px 20px; min-height: 44px; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 84px 0 0 0; z-index: 80;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  padding: 28px var(--gutter) 40px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
body.menu-open .mobile-nav { transform: translateX(0); }
.mobile-nav a.m-link {
  font-family: var(--serif);
  font-size: 30px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-nav .m-actions { margin-top: 28px; display: grid; gap: 12px; }

/* ============================================================
   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::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,22,38,.34) 0%, rgba(8,22,38,0) 32%, rgba(8,22,38,.18) 60%, rgba(8,22,38,.86) 100%),
    linear-gradient(90deg, rgba(8,22,38,.5) 0%, rgba(8,22,38,0) 55%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  padding-bottom: clamp(48px, 8vw, 96px);
  padding-top: 140px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(44px, 8.5vw, 96px);
  font-weight: 500;
  letter-spacing: -0.015em;
  max-width: 16ch;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .lede {
  margin-top: 24px;
  max-width: 52ch;
  font-size: clamp(17px, 2.1vw, 21px);
  color: rgba(255,255,255,.92);
  font-weight: 400;
}
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-tags {
  margin-top: 46px;
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  font-size: 14px; color: rgba(255,255,255,.86);
}
.hero-tags span { display: inline-flex; align-items: center; gap: 9px; font-weight: 500; }
.hero-tags span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.scroll-hint {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint .line { width: 1px; height: 36px; background: linear-gradient(rgba(255,255,255,.7), transparent); animation: scrolldot 2s var(--ease) infinite; }
@keyframes scrolldot { 0%{transform:scaleY(0);transform-origin:top} 40%{transform:scaleY(1);transform-origin:top} 60%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-inline: 1px solid var(--border);
}
.trust-cell {
  background: var(--surface);
  padding: 34px 28px;
  text-align: center;
}
.trust-cell .ic { color: var(--secondary); display: flex; justify-content: center; margin-bottom: 14px; }
.trust-cell .ic svg { width: 30px; height: 30px; }
.trust-cell h3 { font-family: var(--sans); font-size: 16px; font-weight: 700; letter-spacing: -.01em; }
.trust-cell p { color: var(--muted); font-size: 14px; margin-top: 6px; }

/* ============================================================
   FLEET
   ============================================================ */
.fleet { background: var(--bg); }
.fleet-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  margin-bottom: 36px;
}
.filters { display: inline-flex; flex-wrap: wrap; gap: 8px; background: var(--surface); padding: 6px; border-radius: 999px; border: 1px solid var(--border); box-shadow: var(--sh-sm); }
.filter-btn {
  border: none; background: transparent; cursor: pointer;
  font-family: var(--sans); font-weight: 600; font-size: 14px; color: var(--muted);
  padding: 10px 20px; border-radius: 999px; transition: all .25s var(--ease); min-height: 42px;
}
.filter-btn .n { font-size: 11px; opacity: .6; margin-left: 4px; }
.filter-btn:hover { color: var(--primary); }
.filter-btn.active { background: var(--primary); color: #fff; box-shadow: var(--sh-sm); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.yacht {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.yacht:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.yacht-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--border); }
.yacht-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.yacht:hover .yacht-img img { transform: scale(1.06); }
.tier-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  color: var(--primary); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px;
}
.len-badge {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(12,30,46,.62); backdrop-filter: blur(6px);
  color: #fff; font-size: 13px; font-weight: 700;
  padding: 7px 13px; border-radius: 999px;
}
.yacht-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.yacht-body h3 { font-size: 26px; }
.yacht-body .sub { color: var(--muted); font-size: 14.5px; margin-top: 5px; }
.yacht-feats { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0 20px; }
.yacht-feats span {
  font-size: 12px; font-weight: 600; color: var(--secondary);
  background: rgba(27,110,138,.08); padding: 5px 11px; border-radius: 7px;
}
.yacht-cta { margin-top: auto; display: flex; gap: 10px; }
.yacht-cta .btn { flex: 1; padding: 12px 14px; min-height: 46px; font-size: 14px; }

.fleet-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 34px; }

/* ============================================================
   EXPERIENCES
   ============================================================ */
.exp { background: var(--surface); }
.exp-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.exp-card {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  min-height: 300px; display: flex; align-items: flex-end;
  color: #fff; isolation: isolate;
}
.exp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.exp-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,22,38,0) 30%, rgba(8,22,38,.5) 64%, rgba(8,22,38,.9) 100%); }
.exp-card:hover img { transform: scale(1.06); }
.exp-card .ec-body { padding: 28px; }
.exp-card h3 { color: #fff; font-size: 28px; }
.exp-card p { color: rgba(255,255,255,.88); font-size: 14.5px; margin-top: 8px; max-width: 38ch; }
.exp-card.lg { grid-column: span 6; min-height: 380px; }
.exp-card.sm { grid-column: span 6; }
.exp-card.third { grid-column: span 4; }

/* ============================================================
   OCCASIONS
   ============================================================ */
.occ { background: var(--bg); }
.occ-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.occ-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 30px 28px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.occ-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }
.occ-card .oc-ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(199,158,71,.12); color: var(--accent-d); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.occ-card .oc-ic svg { width: 24px; height: 24px; }
.occ-card h3 { font-size: 23px; }
.occ-card p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--primary); color: #fff; }
.gallery .section-head h2 { color: #fff; }
.gallery .section-head p { color: rgba(255,255,255,.78); }
.gal-grid {
  columns: 3;
  column-gap: 16px;
}
.gal-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--primary-d);
}
.gal-item img { width: 100%; transition: transform .6s var(--ease), opacity .3s; }
.gal-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,30,46,0) 60%, rgba(12,30,46,.5));
  opacity: 0; transition: opacity .3s;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-item:hover::after { opacity: 1; }
.gal-item .zoom {
  position: absolute; top: 12px; right: 12px; width: 36px; height: 36px;
  border-radius: 50%; background: rgba(255,255,255,.18); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; color: #fff;
  opacity: 0; transform: scale(.8); transition: all .3s var(--ease);
}
.gal-item:hover .zoom { opacity: 1; transform: scale(1); }

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

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--sh-md); aspect-ratio: 4/5; object-fit: cover; }
.about-media .badge {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--navy-grad); color: #fff; border-radius: var(--r-md);
  padding: 22px 26px; box-shadow: var(--sh-lg); max-width: 230px;
}
.about-media .badge .big { font-family: var(--serif); font-size: 40px; line-height: 1; color: var(--accent); }
.about-media .badge .lbl { font-size: 13px; color: rgba(255,255,255,.85); margin-top: 6px; }
.about-text h2 { font-size: clamp(32px, 4.5vw, 50px); }
.about-text p { color: var(--muted); margin-top: 20px; font-size: 17px; }
.about-points { margin-top: 28px; display: grid; gap: 16px; }
.about-points li { display: flex; gap: 14px; align-items: flex-start; list-style: none; }
.about-points .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(27,110,138,.1); color: var(--secondary); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.about-points .tick svg { width: 15px; height: 15px; }
.about-points b { font-weight: 700; color: var(--text); }
.about-points span.txt { color: var(--muted); font-size: 15.5px; }
.about-points ul, .about-points { padding: 0; margin-top: 28px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .num {
  font-family: var(--serif); font-size: 30px; color: var(--accent);
  width: 64px; height: 64px; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: var(--surface);
}
.step h3 { font-size: 22px; }
.step p { color: var(--muted); font-size: 15px; margin-top: 8px; }
.steps .connector { position: absolute; }

/* ============================================================
   CONTACT / ENQUIRY
   ============================================================ */
.contact { background: var(--navy-grad); color: #fff; }
.contact .section-head h2 { color: #fff; }
.contact .section-head p { color: rgba(255,255,255,.82); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(34px, 5vw, 64px); align-items: start; }

.contact-info .ci-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-info .ci-item:first-of-type { padding-top: 0; }
.ci-ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.ci-ic svg { width: 22px; height: 22px; }
.ci-item .lbl { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: #9FC6D6; }
.ci-item .val { font-size: 17px; font-weight: 600; margin-top: 3px; color: #fff; }
.ci-item .val a:hover { color: var(--accent); }
.ci-item .note { font-size: 13.5px; color: rgba(255,255,255,.6); margin-top: 3px; }
.contact-social { display: flex; gap: 12px; margin-top: 26px; }
.contact-social a { width: 46px; height: 46px; border-radius: 12px; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: #fff; transition: all .25s var(--ease); }
.contact-social a:hover { background: var(--accent); color: #1a1305; border-color: var(--accent); transform: translateY(-3px); }
.contact-social svg { width: 20px; height: 20px; }

.map-placeholder {
  margin-top: 26px; border-radius: var(--r-md); border: 1px dashed rgba(255,255,255,.3);
  background: rgba(255,255,255,.04);
  height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  color: rgba(255,255,255,.7); text-align: center; padding: 16px;
}
.map-placeholder .mp-title { font-family: var(--sans); font-weight: 700; letter-spacing: .04em; color: #fff; }
.map-placeholder .mp-sub { font-size: 13px; }

/* form */
.form-card { background: var(--surface); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--sh-lg); color: var(--text); }
.form-card h3 { font-size: 28px; }
.form-card .fc-sub { color: var(--muted); font-size: 15px; margin-top: 6px; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.field label .req { color: var(--accent-d); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15.5px; color: var(--text);
  padding: 13px 15px; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  background: var(--bg); transition: border-color .2s, box-shadow .2s; min-height: 50px;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--focus); box-shadow: 0 0 0 3px rgba(31,162,196,.16); }
.field input.invalid, .field select.invalid { border-color: #d4503f; box-shadow: 0 0 0 3px rgba(212,80,63,.14); }
.field .err { color: #d4503f; font-size: 12.5px; margin-top: 5px; display: none; }
.field.show-err .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-actions { margin-top: 8px; display: grid; gap: 10px; }
.form-actions .or { text-align: center; font-size: 13px; color: var(--muted); position: relative; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 20px 10px;
}
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: rgba(37,211,102,.12); color: #1a9e4e; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.form-success h3 { font-size: 26px; }
.form-success p { color: var(--muted); margin-top: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--primary-d); color: rgba(255,255,255,.7); padding-top: 64px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .logo-plate {
  display: inline-flex; background: #fff; padding: 16px 20px; border-radius: var(--r-md); box-shadow: var(--sh-md);
}
.footer-brand .logo-plate img { height: 64px; width: auto; }
.footer-brand p { margin-top: 20px; font-size: 14.5px; max-width: 34ch; }
.footer h4 { font-family: var(--sans); color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .04em; margin-bottom: 18px; }
.footer-col a, .footer-col li { display: block; font-size: 14.5px; padding: 6px 0; color: rgba(255,255,255,.7); list-style: none; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-col ul { padding: 0; margin: 0; }
.footer-contact .fc-line { font-size: 14.5px; padding: 6px 0; }
.footer-contact .fc-line b { color: #fff; }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding: 26px 0 32px; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 18px; }

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.action-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(12,30,46,.1);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
}
.action-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  padding: 8px 4px; border-radius: 12px; font-size: 11.5px; font-weight: 600; min-height: 52px;
}
.action-bar a svg { width: 22px; height: 22px; }
.action-bar .ab-wa { background: #25D366; color: #04361b; }
.action-bar .ab-call { background: var(--primary); color: #fff; }
.action-bar .ab-enq { background: var(--accent); color: #1a1305; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .08s; }
  .reveal.d2 { transition-delay: .16s; }
  .reveal.d3 { transition-delay: .24s; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: block; }
  .header-cta .btn-navy, .header-cta .btn-ghost { display: none; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gal-grid { columns: 2; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 76px; }
  .header-inner { height: 72px; }
  .brand img { height: 42px; }
  .site-header { background: rgba(255,255,255,.92); box-shadow: var(--sh-sm); }
  .mobile-nav { inset: 72px 0 0 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .yacht-img { aspect-ratio: 16/10; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card.lg, .exp-card.sm, .exp-card.third { grid-column: 1 / -1; min-height: 260px; }
  .occ-grid { grid-template-columns: 1fr; }
  .gal-grid { columns: 2; column-gap: 12px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 440px; margin: 0 auto; }
  .about-media .badge { left: 0; }
  .steps { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .action-bar { display: grid; }
  body { padding-bottom: 76px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-btn { width: 46px; height: 46px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 42px; }
  .hero-actions .btn { flex: 1; }
  .filters { width: 100%; justify-content: space-between; }
  .filter-btn { padding: 10px 12px; font-size: 13px; flex: 1; }
}
