/* ============================================================
   Conwy Yachts — coastal-luxury design system
   Palette keyed to brand logo (navy sails / cyan wave / gold sun)
   per CLAUDE-DESIGN.md
   ============================================================ */

:root {
  --bg:        #f4f8fb;
  --surface:   #ffffff;
  --text:      #15294a;
  --muted:     #5a7385;
  --primary:   #1d3b6b;
  --primary-d: #142a4e; /* darker navy for depth */
  --secondary: #2bafe0;
  --secondary-d:#1b8bbb;
  --accent:    #e8a93a;
  --accent-d:  #d4942a;
  --border:    #d6e2ec;
  --focus:     #2bafe0;
  --ink-soft:  rgba(21, 41, 74, 0.62);

  --shadow-sm: 0 1px 2px rgba(20, 42, 78, .06), 0 2px 6px rgba(20, 42, 78, .05);
  --shadow-md: 0 6px 18px rgba(20, 42, 78, .08), 0 2px 6px rgba(20, 42, 78, .05);
  --shadow-lg: 0 24px 60px rgba(20, 42, 78, .16), 0 8px 20px rgba(20, 42, 78, .08);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 999px;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

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

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  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; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.05; }
p { margin: 0; }
: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: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--secondary-d);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--accent); display: inline-block; }
.eyebrow.center::after { content: ""; width: 26px; height: 1.5px; background: var(--accent); display: inline-block; }
.eyebrow.center { justify-content: center; }

.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.0;
}
.h-xl { font-size: clamp(2.6rem, 7vw, 5.2rem); }
.h-lg { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.h-md { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); line-height: 1.65; }

.section-head { max-width: 640px; }
.section-head .h-lg { margin-top: 18px; }
.section-head p { margin-top: 18px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 15px; letter-spacing: .01em;
  border: 1.5px solid transparent; transition: all .25s var(--ease);
  min-height: 48px; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-d); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: var(--text); }
.btn-accent:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(232,169,58,.35); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,.32); }
.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.on-dark { color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost.on-dark:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .3s var(--ease);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 4px 22px rgba(20,42,78,.07);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 96px; transition: height .3s var(--ease); }
.scrolled .header-inner { height: 80px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 66px; width: auto; transition: height .3s var(--ease); }
.scrolled .brand img { height: 56px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 15px; font-weight: 600; color: var(--text); position: relative; padding: 6px 0;
  transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--accent); transition: width .25s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-call {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--border); color: var(--text);
  transition: all .25s var(--ease);
}
.site-header:not(.scrolled) .icon-call { }
.icon-call:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }
.icon-call svg { width: 19px; height: 19px; }

.hamburger {
  display: none; width: 48px; height: 48px; border: 1.5px solid var(--border);
  background: transparent; border-radius: 12px; padding: 0; position: relative;
}
.hamburger span { position: absolute; left: 13px; right: 13px; height: 2px; background: currentColor; color: var(--text); transition: all .3s var(--ease); }
.hamburger span:nth-child(1) { top: 17px; }
.hamburger span:nth-child(2) { top: 23px; }
.hamburger span:nth-child(3) { top: 29px; }
body.menu-open .hamburger span:nth-child(1) { top: 23px; transform: rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: var(--primary-d);
  display: flex; flex-direction: column; justify-content: center; padding: 80px var(--gut) 40px;
  transform: translateX(100%); transition: transform .4s var(--ease); visibility: hidden;
}
body.menu-open .mobile-nav { transform: translateX(0); visibility: visible; }
.mobile-nav a { color: #fff; font-family: var(--serif); font-size: 2rem; font-weight: 500; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-nav .mn-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 34px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,22,44,.42) 0%, rgba(11,22,44,.14) 24%, rgba(11,22,44,.30) 50%, rgba(11,22,44,.74) 78%, rgba(9,18,38,.93) 100%);
}
.hero-inner { padding-bottom: clamp(56px, 9vw, 110px); padding-top: 140px; max-width: 920px; }
.hero h1 { color: #fff; margin-top: 22px; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero h1 em { font-style: italic; color: #ffe2a6; }
.hero .lead { color: rgba(255,255,255,.92); margin-top: 24px; max-width: 600px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero .eyebrow { color: #ffe2a6; }
.hero .eyebrow::before { background: var(--accent); }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 70px);
  margin-top: 52px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.22);
}
.hero-stats .stat .n { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 500; line-height: 1; }
.hero-stats .stat .l { font-size: 13.5px; color: rgba(255,255,255,.78); margin-top: 7px; letter-spacing: .02em; }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.7);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint .line { width: 1px; height: 38px; background: linear-gradient(rgba(255,255,255,.7), transparent); animation: pulse 2s var(--ease) infinite; }
@keyframes pulse { 0%,100%{opacity:.3; transform:scaleY(.6) } 50%{opacity:1; transform:scaleY(1)} }

/* ============================================================
   VALUE STRIP
   ============================================================ */
.values { background: var(--surface); border-bottom: 1px solid var(--border); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.value {
  background: var(--surface); padding: 38px 30px; transition: background .3s var(--ease);
}
.value:hover { background: #fbfdff; }
.value .vi {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, #eaf6fc, #f4f8fb); color: var(--secondary-d); margin-bottom: 18px;
}
.value .vi svg { width: 24px; height: 24px; }
.value h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 8px; }
.value p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* ============================================================
   FLEET
   ============================================================ */
.fleet-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 40px; }
.filters { display: flex; flex-wrap: wrap; gap: 9px; }
.filter {
  padding: 10px 18px; border-radius: var(--r-pill); border: 1.5px solid var(--border);
  background: var(--surface); font-weight: 600; font-size: 13.5px; color: var(--muted);
  transition: all .2s var(--ease); min-height: 42px;
}
.filter:hover { border-color: var(--secondary); color: var(--primary); }
.filter.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.yacht-card {
  background: var(--surface); border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column;
}
.yacht-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.yacht-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #e7eef5; }
.yacht-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.yacht-card:hover .yacht-photo img { transform: scale(1.06); }
.price-chip {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--accent); color: var(--text); font-weight: 800; font-size: 13px;
  padding: 7px 13px; border-radius: var(--r-pill); box-shadow: 0 4px 14px rgba(232,169,58,.4);
}
.price-chip small { font-weight: 700; opacity: .8; }
.size-chip {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(20,42,78,.78); backdrop-filter: blur(6px); color: #fff;
  font-weight: 700; font-size: 12.5px; padding: 7px 12px; border-radius: var(--r-pill);
}
.yacht-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.yacht-body h3 { font-family: var(--serif); font-size: 1.65rem; font-weight: 600; }
.yacht-meta { display: flex; gap: 18px; margin-top: 12px; color: var(--muted); font-size: 14px; }
.yacht-meta span { display: inline-flex; align-items: center; gap: 7px; }
.yacht-meta svg { width: 16px; height: 16px; color: var(--secondary-d); }
.yacht-foot { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.yacht-foot .btn { flex: 1; padding: 12px 16px; font-size: 14px; min-height: 46px; }
.fleet-note { margin-top: 34px; text-align: center; color: var(--muted); font-size: 14.5px; }
.fleet-note strong { color: var(--text); font-weight: 700; }

/* ============================================================
   EXPERIENCES
   ============================================================ */
.experiences { background: var(--primary-d); color: #fff; position: relative; overflow: hidden; }
.experiences::before {
  content: ""; position: absolute; top: -30%; right: -10%; width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(43,175,224,.18), transparent 65%); pointer-events: none;
}
.experiences .eyebrow { color: #6fd0f0; }
.experiences .h-lg { color: #fff; }
.experiences .section-head p { color: rgba(255,255,255,.74); }
.xp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 52px; }
.xp-card {
  position: relative; border-radius: var(--r-md); overflow: hidden; min-height: 340px;
  display: flex; align-items: flex-end; isolation: isolate;
}
.xp-card.feature { grid-row: span 2; min-height: 100%; }
.xp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.xp-card:hover img { transform: scale(1.05); }
.xp-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,22,44,.05) 30%, rgba(11,22,44,.55) 62%, rgba(11,22,44,.92) 100%);
}
.xp-body { padding: 30px; }
.xp-body .tag { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #ffe2a6; }
.xp-body h3 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; margin-top: 8px; }
.xp-body p { color: rgba(255,255,255,.82); font-size: 14.5px; margin-top: 10px; max-width: 44ch; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; margin-top: 48px;
}
.g-item { position: relative; overflow: hidden; border-radius: var(--r-sm); cursor: pointer; background: #e7eaf0; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.g-item:hover img { transform: scale(1.07); }
.g-item::after { content: ""; position: absolute; inset: 0; background: rgba(20,42,78,0); transition: background .3s; }
.g-item:hover::after { background: rgba(20,42,78,.18); }
.g-item .zoom {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.7); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--primary);
  display: grid; place-items: center; opacity: 0; transition: all .3s var(--ease);
}
.g-item:hover .zoom { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(10,20,40,.94); display: none; align-items: center; justify-content: center; padding: 4vw; }
.lightbox.open { display: flex; animation: fade .3s var(--ease); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--r-sm); box-shadow: var(--shadow-lg); }
.lb-close, .lb-nav { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; border-radius: 50%; width: 54px; height: 54px; display: grid; place-items: center; transition: background .2s; }
.lb-close { top: 22px; right: 22px; }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-prev { left: 18px; } .lb-next { right: 18px; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.28); }
.lb-close svg, .lb-nav svg { width: 22px; height: 22px; }

/* ============================================================
   WHY US (split)
   ============================================================ */
.why { background: var(--surface); }
.why-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.why-media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.why-media img { width: 100%; height: 100%; object-fit: cover; }
.why-badge {
  position: absolute; bottom: 22px; left: 22px; right: 22px; background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px); border-radius: var(--r-md); padding: 20px 24px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 18px;
}
.why-badge .yr { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--primary); line-height: 1; }
.why-badge .yr-l { font-size: 14px; color: var(--muted); }
.why-list { margin-top: 30px; display: grid; gap: 22px; }
.why-list li { display: flex; gap: 16px; }
.why-list .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg,#eaf6fc,#f4f8fb); color: var(--secondary-d); display: grid; place-items: center; }
.why-list .ic svg { width: 22px; height: 22px; }
.why-list h4 { font-size: 1.1rem; font-weight: 700; }
.why-list p { font-size: 14.5px; color: var(--muted); margin-top: 4px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; color: #fff; text-align: center; overflow: hidden; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,28,52,.78), rgba(15,28,52,.62)); }
.cta-band .wrap { padding-block: clamp(80px, 12vw, 150px); }
.cta-band h2 { color: #fff; max-width: 720px; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.86); max-width: 540px; margin: 20px auto 0; }
.cta-band .hero-cta { justify-content: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(34px, 5vw, 64px); }
.contact-info .ci-list { display: grid; gap: 8px; margin-top: 34px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px; border-radius: var(--r-md); transition: background .25s; }
.ci-item:hover { background: var(--bg); }
.ci-item .ic { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--primary); color: #fff; display: grid; place-items: center; }
.ci-item .ic svg { width: 21px; height: 21px; }
.ci-item .k { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.ci-item .v { font-size: 1.05rem; font-weight: 600; margin-top: 3px; }
.ci-item .v.sm { font-size: .95rem; font-weight: 500; color: var(--muted); }
.ci-item a.v:hover { color: var(--secondary-d); }

.map-placeholder {
  margin-top: 22px; border-radius: var(--r-md); border: 1.5px dashed var(--border);
  background:
    repeating-linear-gradient(45deg, #eef4f9 0 12px, #f4f8fb 12px 24px);
  aspect-ratio: 16/7; display: grid; place-items: center; text-align: center; color: var(--muted);
}
.map-placeholder .mp-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px; }
.map-placeholder svg { width: 30px; height: 30px; color: var(--secondary-d); }
.map-placeholder b { color: var(--text); font-size: 15px; }
.map-placeholder small { font-size: 12.5px; max-width: 30ch; }

/* form */
.enquiry { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-md); }
.enquiry h3 { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; }
.enquiry > p { color: var(--muted); margin-top: 8px; font-size: 14.5px; }
.field { margin-top: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; letter-spacing: .02em; margin-bottom: 7px; }
.field label .req { color: var(--accent-d); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: inherit; font-size: 15px; color: var(--text); background: var(--bg); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(43,175,224,.15); background: #fff; }
.field textarea { resize: vertical; min-height: 104px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e5484d; background: #fff5f5; }
.field .err { color: #c93338; font-size: 12.5px; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-foot { margin-top: 24px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; animation: fade .4s var(--ease); }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: #e7f8ee; color: #1da851; display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { font-family: var(--serif); font-size: 1.7rem; }
.form-success p { color: var(--muted); margin-top: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--primary-d); color: rgba(255,255,255,.72); padding-top: clamp(56px, 8vw, 90px); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand img { height: 64px; background: #fff; padding: 12px 16px; border-radius: var(--r-md); }
.footer-brand p { margin-top: 20px; font-size: 14.5px; line-height: 1.6; max-width: 34ch; }
.f-socials { display: flex; gap: 10px; margin-top: 22px; }
.f-socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: #fff; transition: all .25s var(--ease); }
.f-socials a:hover { background: var(--secondary); border-color: var(--secondary); transform: translateY(-2px); }
.f-socials svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a, .footer-col li { font-size: 14.5px; padding: 6px 0; display: block; transition: color .2s; }
.footer-col a:hover { color: var(--secondary); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 28px; font-size: 13px; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px; box-shadow: 0 -6px 20px rgba(20,42,78,.08);
}
.mobile-bar .btn { flex: 1; min-height: 50px; font-size: 14.5px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.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; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint .line { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  .nav, .header-actions .icon-call { display: none; }
  .hamburger { display: block; }
  .header-actions { gap: 8px; }
  .mobile-bar { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .why-media { aspect-ratio: 16/11; max-height: 440px; }
  .contact-grid { grid-template-columns: 1fr; }
  .xp-grid { grid-template-columns: 1fr; }
  .xp-card.feature { grid-row: span 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-wide { grid-column: span 1; }
  body { padding-bottom: 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px 32px; }
  .gallery-grid { grid-auto-rows: 150px; }
  .header-inner { height: 70px; }
  .scrolled .header-inner { height: 64px; }
  .brand img { height: 46px; }
  .scrolled .brand img { height: 44px; }
  .fleet-head { gap: 18px; }
  .lb-nav { width: 46px; height: 46px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}
