/* Paul Simon - Fraser Yachts San Diego */
:root {
  --navy: #001E42;
  --navy-2: #0A2C56;
  --navy-3: #12365F;
  --ink: #1C2A3E;
  --muted: #5B6B80;
  --accent: #35639B;
  --sky: #8FB3D9;
  --ice: #EEF3F8;
  --line: #D8E1EA;
  --line-dark: #1E3C64;
  --white: #FFFFFF;
  --fraser-red: #EB1923;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { font-family: var(--sans); color: var(--ink); background: var(--white); font-size: clamp(15.5px, 1.5vw, 16.5px); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }
[id] { scroll-margin-top: 90px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 820px; }

/* ---------- Header ---------- */
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 50; padding: 26px 0; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header.solid { position: static; background: var(--navy); }
.site-header.fixed { position: fixed; transition: background 0.35s ease, box-shadow 0.35s ease; }
body.past-cine .site-header.fixed { background: rgba(0, 30, 66, 0.94); box-shadow: 0 1px 0 rgba(255,255,255,0.08); }
.brand { display: flex; flex-direction: column; line-height: 1.2; }
.brand .brand-name { font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: .04em; color: var(--white); }
.brand .brand-sub { font-size: 10.5px; letter-spacing: .32em; text-transform: uppercase; color: #fff; font-weight: 500; margin-top: 3px; text-shadow: 0 1px 8px rgba(0, 18, 40, 0.5); }
.nav { display: flex; gap: 34px; align-items: center; }
.nav a { font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.85); transition: color .2s; }
.nav a:hover, .nav a.active { color: var(--white); }
.nav a.nav-cta { border: 1px solid rgba(255,255,255,.5); padding: 12px 22px; }
.nav a.nav-cta:hover { background: var(--white); color: var(--navy); }

/* Hamburger (mobile only) */
.menu-btn { display: none; background: none; border: 0; width: 48px; height: 48px; padding: 12px; cursor: pointer; flex-direction: column; justify-content: center; gap: 6px; z-index: 100; position: relative; -webkit-tap-highlight-color: transparent; }
.menu-btn span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: transform .3s ease, opacity .3s ease; }
body.nav-open .menu-btn span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .menu-btn span:nth-child(2) { opacity: 0; }
body.nav-open .menu-btn span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; min-height: 92svh; display: flex; align-items: flex-end; color: var(--white); }
.hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,30,66,.45) 0%, rgba(0,30,66,.15) 38%, rgba(0,30,66,.62) 68%, rgba(0,30,66,.96) 100%); }
.hero .container { position: relative; padding-bottom: 90px; }
.eyebrow { font-size: 11.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--sky); margin-bottom: 18px; }
.hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 6vw, 72px); line-height: 1.08; max-width: 850px; }
.hero h1 em { font-style: italic; color: var(--sky); }
.hero .lede { max-width: 560px; margin-top: 22px; font-size: 17.5px; font-weight: 300; color: rgba(255,255,255,.88); }
.hero .actions { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; font-family: var(--sans); font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; padding: 13px 34px; border: 1px solid var(--navy); color: var(--navy); background: transparent; transition: all .25s; cursor: pointer; text-align: center; }
.btn:hover { background: var(--navy); color: var(--white); }
.btn.light { border-color: rgba(255,255,255,.65); color: var(--white); }
.btn.light:hover { background: var(--white); color: var(--navy); }
.btn.fill { background: var(--navy); color: var(--white); }
.btn.fill:hover { background: var(--navy-3); border-color: var(--navy-3); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section.alt { background: var(--ice); }
.section.navy { background: var(--navy); color: var(--white); }
.section-head { max-width: 720px; margin-bottom: 56px; }
h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 4vw, 44px); line-height: 1.15; color: var(--navy); }
.section.navy h2 { color: var(--white); }
h2 em { font-style: italic; color: var(--accent); }
.section.navy h2 em { color: var(--sky); }
h3 { font-family: var(--serif); font-weight: 600; font-size: 26px; color: var(--navy); }
.section p.body, .prose p { color: var(--muted); margin-top: 16px; }
.section.navy p.body { color: rgba(255,255,255,.8); }
.prose p { font-size: 17px; }
.prose p strong { color: var(--ink); font-weight: 500; }

/* ---------- Listing cards ---------- */
.fleet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; }
.yacht-card { display: block; color: inherit; }
.yacht-card .ph { overflow: hidden; aspect-ratio: 16/10; background: var(--ice); }
.yacht-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.yacht-card:hover .ph img { transform: scale(1.045); }
.yacht-card .meta { padding: 22px 4px 0; }
.yacht-card .kicker { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--accent); }
.yacht-card h3 { margin-top: 6px; font-size: 30px; font-weight: 500; }
.yacht-card .specline { margin-top: 8px; font-size: 14px; color: var(--muted); display: flex; gap: 18px; flex-wrap: wrap; }
.yacht-card .price { margin-top: 10px; font-size: 15px; letter-spacing: .06em; color: var(--navy); font-weight: 500; }
.yacht-card .view { display: inline-block; margin-top: 14px; font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); border-bottom: 1px solid var(--line); padding-bottom: 4px; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat .num { font-family: var(--serif); font-size: 52px; font-weight: 500; color: var(--white); line-height: 1; }
.stat .lbl { margin-top: 10px; font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--sky); }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 5fr 6fr; gap: 72px; align-items: center; }
.split .photo img { width: 100%; }
.split.rev { grid-template-columns: 6fr 5fr; }

/* ---------- Yacht page ---------- */
.y-hero { position: relative; min-height: 78vh; min-height: 78svh; display: flex; align-items: flex-end; color: var(--white); }
.y-hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.y-hero .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,30,66,.5) 0%, rgba(0,30,66,.12) 40%, rgba(0,30,66,.65) 70%, rgba(0,30,66,.96) 100%); }
.y-hero .container { position: relative; padding-bottom: 70px; }
.y-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(38px, 5.5vw, 64px); line-height: 1.08; }
.y-hero h1 .len { color: var(--sky); font-style: italic; }
.y-hero .tagline { margin-top: 14px; font-weight: 300; font-size: 17.5px; color: rgba(255,255,255,.88); max-width: 640px; }

.specband { background: var(--navy); color: var(--white); padding: 44px 0; border-top: 1px solid var(--line-dark); }
.specband .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 40px; }
.spec .k { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--sky); }
.spec .v { font-family: var(--serif); font-size: 26px; margin-top: 4px; font-weight: 500; }
.spec .sub { font-size: 12.5px; color: rgba(255,255,255,.55); margin-top: 2px; }

.video-wrap { position: relative; padding-top: 56.25%; background: var(--navy); }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gitem { overflow: hidden; aspect-ratio: 4/3; }
.gitem.wide { grid-column: span 2; aspect-ratio: auto; }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gitem:hover img { transform: scale(1.04); }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 44px; margin-top: 40px; }
.feat { display: flex; gap: 14px; align-items: baseline; color: rgba(255,255,255,.85); font-weight: 300; }
.feat::before { content: '—'; color: var(--sky); }

.specs-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 72px; margin-top: 48px; }
.specs-group h4 { font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--accent); padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.specs-group .row { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.specs-group .row .k { color: var(--muted); }
.specs-group .row .v { color: var(--ink); text-align: right; font-weight: 500; }

.pullquote { text-align: center; max-width: 780px; margin: 0 auto; }
.pullquote .mark { font-family: var(--serif); font-size: 90px; line-height: .4; color: var(--sky); }
.pullquote blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(24px, 3vw, 34px); line-height: 1.4; color: var(--white); margin-top: 30px; }
.pullquote cite { display: block; margin-top: 24px; font-family: var(--sans); font-style: normal; font-size: 11.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--sky); }

/* ---------- Contact ---------- */
.contact-card { background: var(--white); border: 1px solid var(--line); padding: 48px; }
.contact-rows { margin-top: 28px; }
.contact-rows .crow { display: flex; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
.contact-rows .crow .ck { min-width: 90px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); padding-top: 4px; }
.contact-rows .crow .cv a { color: var(--navy); font-weight: 500; }

/* ---------- Sticky mobile contact bar (yacht pages) ---------- */
.mobile-cta { display: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 64px 0 40px; padding-bottom: calc(40px + env(safe-area-inset-bottom)); }
.site-footer .fnav a { padding: 8px 0; display: inline-block; }
.site-footer .top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--line-dark); }
.site-footer .fbrand { font-family: var(--serif); font-size: 24px; color: var(--white); }
.site-footer .fsub { font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--sky); margin-top: 4px; }
.site-footer .fnav { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.site-footer .fnav a { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.site-footer .fnav a:hover { color: var(--white); }
.site-footer .legal { margin-top: 28px; font-size: 13px; color: rgba(255,255,255,.45); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ---------- Motion design ---------- */
.hero, .y-hero { overflow: hidden; }
.hero .bg, .y-hero .bg { animation: heroZoom 6.5s cubic-bezier(.2,.6,.2,1) both; will-change: transform; }
@keyframes heroZoom { from { transform: scale(1.14); } to { transform: scale(1.06); } }
.hero .container > *, .y-hero .container > * { animation: riseIn .9s cubic-bezier(.2,.6,.2,1) both; }
.hero .container > *:nth-child(1), .y-hero .container > *:nth-child(1) { animation-delay: .2s; }
.hero .container > *:nth-child(2), .y-hero .container > *:nth-child(2) { animation-delay: .38s; }
.hero .container > *:nth-child(3), .y-hero .container > *:nth-child(3) { animation-delay: .56s; }
.hero .container > *:nth-child(4), .y-hero .container > *:nth-child(4) { animation-delay: .74s; }
@keyframes riseIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hero .bg, .y-hero .bg, .hero .container > *, .y-hero .container > * { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Fraser band ---------- */
.fraser-band { background: var(--navy); color: var(--white); padding: 88px 0; text-align: center; border-bottom: 1px solid var(--line-dark); }
.fraser-band .crest { width: 110px; margin: 0 auto 26px; opacity: .95; }
.fraser-band h2 { color: var(--white); max-width: 760px; margin: 0 auto; }
.fraser-band h2 em { color: var(--fraser-red); }
.fraser-band p.body { color: rgba(255,255,255,.8); max-width: 640px; margin: 18px auto 0; }
.fraser-band .stats-band { margin-top: 56px; }

/* ---------- Tools (search + calculators) ---------- */
.tool-form { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 20px; }
.tool-form .field { display: flex; flex-direction: column; gap: 7px; }
.tool-form .field.wide2 { grid-column: span 2; }
.tool-form.two-col { grid-template-columns: 1fr 1fr; }
.tool-form label { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.tool-form input, .tool-form select { font-family: var(--sans); font-size: 15.5px; color: var(--ink); background: var(--white); border: 1px solid var(--line); padding: 12px 14px; min-height: 48px; border-radius: 0; -webkit-appearance: none; appearance: none; width: 100%; }
.tool-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%235B6B80'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
.tool-form input:focus, .tool-form select:focus { outline: none; border-color: var(--accent); }
.tool-form .submit-row { grid-column: 1 / -1; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 6px; }
.tool-note { font-size: 13px; color: var(--muted); }

.results-meta { margin: 40px 0 24px; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.results-grid .yacht-card h3 { font-size: 24px; }
.results-more { margin-top: 40px; text-align: center; }

.calc-results { margin-top: 48px; }
.calc-total { text-align: center; padding: 40px 24px; background: var(--navy); color: var(--white); }
.calc-total .k { font-size: 11.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--sky); }
.calc-total .v { font-family: var(--serif); font-size: clamp(40px, 5vw, 56px); font-weight: 500; margin-top: 8px; line-height: 1.1; }
.calc-total .sub { font-size: 13.5px; color: rgba(255,255,255,.6); margin-top: 6px; }
.calc-rows { margin-top: 26px; }
.calc-rows .row { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.calc-rows .row .k { color: var(--muted); }
.calc-rows .row .k small { display: block; font-size: 12.5px; color: var(--muted); opacity: .75; }
.calc-rows .row .v { color: var(--ink); font-weight: 500; text-align: right; white-space: nowrap; }
.calc-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 26px; }
.calc-band .cell { border: 1px solid var(--line); padding: 24px 20px; text-align: center; }
.calc-band .cell .k { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.calc-band .cell .v { font-family: var(--serif); font-size: 32px; color: var(--navy); font-weight: 500; margin-top: 6px; }
.calc-band .cell .sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.calc-warn { margin-top: 18px; padding: 14px 18px; background: var(--ice); border-left: 3px solid var(--fraser-red); font-size: 14px; color: var(--ink); }

/* Resources hub */
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; }
.tools-grid.cols3 { grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tool-card { display: block; border: 1px solid var(--line); padding: 36px 32px; color: inherit; transition: border-color .25s, transform .25s; }
.tool-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.tool-card .kicker { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--accent); }
.tool-card h3 { margin-top: 8px; }
.tool-card p { color: var(--muted); margin-top: 10px; font-size: 15.5px; }
.tool-card .view { display: inline-block; margin-top: 18px; font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); border-bottom: 1px solid var(--line); padding-bottom: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split, .split.rev { grid-template-columns: 1fr; gap: 40px; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 40px; }
  .specband .grid { grid-template-columns: 1fr 1fr; }
  .specs-groups { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }

  /* Full-screen overlay nav */
  .menu-btn { display: flex; }
  .site-header { padding: 16px 0; padding-top: calc(16px + env(safe-area-inset-top)); }
  .nav { position: fixed; inset: 0; z-index: 90; background: var(--navy); flex-direction: column; justify-content: center; align-items: center; gap: 10px; transform: translateY(-100%); visibility: hidden; transition: transform .35s ease, visibility .35s; }
  body.nav-open .nav { transform: none; visibility: visible; }
  .nav a { font-family: var(--serif); font-size: 28px; font-weight: 500; letter-spacing: .04em; text-transform: none; color: var(--white); padding: 14px 20px; }
  .nav a.nav-cta { border: 1px solid rgba(255,255,255,.5); margin-top: 18px; font-family: var(--sans); font-size: 13px; letter-spacing: .22em; text-transform: uppercase; padding: 15px 34px; }

  /* Heroes */
  .hero { min-height: 82svh; }
  .hero .container { padding-bottom: 56px; }
  .hero .lede { font-size: 16px; }
  .hero .actions { flex-direction: column; align-items: stretch; }
  .hero .actions .btn { width: 100%; }
  .y-hero { min-height: 62svh; }
  .y-hero .container { padding-bottom: 44px; }
  .y-hero .tagline { font-size: 15.5px; }
  .eyebrow { font-size: 10.5px; letter-spacing: .28em; }

  /* Listings */
  .fleet-grid { grid-template-columns: 1fr; gap: 44px; }
  .yacht-card h3 { font-size: 27px; }
  .yacht-card .specline { gap: 12px; font-size: 13.5px; }

  /* Spec band: 2-col, tighter */
  .specband { padding: 32px 0; }
  .specband .grid { gap: 22px 24px; }
  .spec .v { font-size: 21px; }

  /* Galleries */
  .gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gitem.wide { grid-column: span 2; }

  /* Stats & features */
  .stats-band { gap: 32px 16px; }
  .stat .num { font-size: 40px; }
  .features-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Specs dossier */
  .specs-groups { gap: 36px; margin-top: 36px; }
  .specs-group .row { font-size: 14.5px; }

  /* Prose & cards */
  .prose p { font-size: 16px; }
  .contact-card { padding: 28px 20px; }
  .contact-rows .crow { flex-direction: column; gap: 2px; }
  .contact-rows .crow .ck { min-width: 0; }
  .pullquote .mark { font-size: 70px; }

  /* CTA button pairs stack full-width */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }

  /* Sticky contact bar on yacht pages */
  .mobile-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; background: rgba(0,30,66,.92); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-top: 1px solid var(--line-dark); padding-bottom: env(safe-area-inset-bottom); }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 56px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--white); }
  .mobile-cta a + a { border-left: 1px solid var(--line-dark); }
  body.has-mobile-cta .site-footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }

  /* Tools */
  .tool-form { grid-template-columns: 1fr 1fr; }
  .tool-form.two-col { grid-template-columns: 1fr; }
  .tool-form.two-col .field.wide2 { grid-column: auto; }
  .tool-form .field.wide2 { grid-column: 1 / -1; }
  .tool-form .submit-row .btn { width: 100%; }
  .results-grid { grid-template-columns: 1fr; gap: 38px; }
  .calc-band { grid-template-columns: 1fr; }
  .tools-grid, .tools-grid.cols3 { grid-template-columns: 1fr; gap: 20px; }
  .tool-card { padding: 26px 22px; }

  /* Footer */
  .site-footer { padding: 48px 0 32px; }
  .site-footer .fnav { flex-direction: column; align-items: flex-start; gap: 4px; }
  .site-footer .legal { flex-direction: column; gap: 10px; font-size: 12.5px; }
}

@media (max-width: 400px) {
  .specband .grid { grid-template-columns: 1fr 1fr; gap: 18px 16px; }
  .spec .v { font-size: 19px; }
  .hero h1 { font-size: 34px; }
}

/* Larger tap comfort on any touch device */
@media (hover: none) {
  .yacht-card .view { padding: 8px 0; }
}

/* =========================================================
   CINEMATIC SCROLL HERO (home)
   ========================================================= */
.cine { position: relative; height: 100vh; background: var(--navy); }
.cine.cine-on { height: 380vh; }
.cine-stage { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.cine-ocean { position: absolute; inset: 0; }
.cine-ocean img { width: 100%; height: 100%; object-fit: cover; }
.cine-scene { position: absolute; inset: 0; opacity: 0; }
.cine-scene[data-i="0"] { opacity: 1; }
.rot-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  will-change: transform;
}
.rot-wrap img {
  height: min(76vh, 56vw); width: auto;
  margin-bottom: 2vh;
}
.cine-glow {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,20,45,0.60) 0%, rgba(0,20,45,0.22) 34%, rgba(0,20,45,0.06) 55%, rgba(0,20,45,0.38) 100%);
}
.cine-text {
  position: absolute;
  left: clamp(24px, 7vw, 110px);
  bottom: clamp(70px, 16vh, 160px);
  max-width: 640px;
  color: var(--white);
  opacity: 0;
  z-index: 3;
  will-change: transform, opacity;
}
.cine-text[data-i="0"] { opacity: 1; }
.cine-text.cine-center {
  left: 50%; right: auto; bottom: auto; top: 38%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: min(92vw, 900px); max-width: none;
}
.cine-text .eyebrow { color: var(--sky); letter-spacing: 0.22em; text-transform: uppercase; font-size: 13px; margin-bottom: 18px; }
.cine-text h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(38px, 6vw, 74px); line-height: 1.08; margin-bottom: 22px;
}
.cine-text h1 em { font-style: italic; color: var(--sky); }
.cine-text .lede { font-size: clamp(15px, 1.6vw, 18px); font-weight: 300; opacity: 0.92; max-width: 560px; margin: 0 auto; }
.cine-kicker {
  font-size: 13px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 10px;
}
.cine-title { font-family: var(--serif); font-size: clamp(52px, 9vw, 120px); line-height: 1; }
.cine-title em { font-style: italic; }
.cine-big {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(90px, 16vw, 210px); line-height: 0.95; letter-spacing: -0.02em;
}
.cine-big span { font-size: 0.35em; font-style: italic; color: var(--sky); margin-left: 6px; }
.cine-price { font-size: clamp(48px, 8vw, 110px); }
.cine-sub { font-size: clamp(15px, 1.8vw, 20px); font-weight: 300; margin-top: 14px; opacity: 0.92; line-height: 1.5; }
.cine-text .actions { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cine-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.85); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  text-align: center; z-index: 4; transition: opacity 0.4s;
}
.cine-hint span {
  display: block; width: 1px; height: 42px; margin: 0 auto 10px;
  background: rgba(255,255,255,0.7);
  animation: cineHint 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cineHint { 0% { transform: scaleY(0); } 55% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }
.cine.cine-done .cine-hint { opacity: 0; }
@media (max-width: 640px) {
  .cine.cine-on { height: 300vh; }
  .cine-text.cine-center { width: 92vw; top: 30%; }
  .rot-wrap img { height: 40vh; width: auto; max-width: none; margin-bottom: 13vh; }
  .cine-glow {
    background: linear-gradient(to bottom, rgba(0,20,45,0.68) 0%, rgba(0,20,45,0.35) 38%, rgba(0,20,45,0.10) 58%, rgba(0,20,45,0.42) 100%);
  }
}

/* Cine legibility pass */
.cine-text { text-shadow: 0 2px 26px rgba(0, 18, 40, 0.55), 0 1px 3px rgba(0, 18, 40, 0.35); }

/* Cine perf pass */
.cine-scene { will-change: opacity; }

/* Fleet video hero (home) */
.vhero { position: relative; height: 100vh; height: 100svh; min-height: 540px; background: var(--navy); overflow: hidden; }
.vhero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vhero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0, 30, 66, 0.30) 0%,
    rgba(0, 30, 66, 0.06) 28%,
    rgba(0, 30, 66, 0.10) 46%,
    rgba(0, 30, 66, 0.44) 66%,
    rgba(0, 30, 66, 0.78) 84%,
    rgba(0, 30, 66, 1) 100%);
}
.vhero-text {
  position: absolute; left: 50%; bottom: 3.5%; transform: translateX(-50%);
  width: min(92vw, 900px); text-align: center; color: #fff; z-index: 2;
  text-shadow: 0 2px 26px rgba(0, 18, 40, 0.55), 0 1px 3px rgba(0, 18, 40, 0.35);
}
.vhero-text .eyebrow { color: var(--sky); letter-spacing: 0.22em; text-transform: uppercase; font-size: 12px; margin-top: 28px; }
.vhero-text h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(38px, 6vw, 74px); line-height: 1.08; margin-bottom: 22px;
}
.vhero-text h1 em { font-style: italic; color: var(--sky); }
.vhero-text .lede { font-size: clamp(15px, 1.6vw, 18px); font-weight: 300; opacity: 0.92; max-width: 560px; margin: 0 auto; }
.vhero-text .actions { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 640px) {
  .vhero { min-height: 0; height: auto; }
  .vhero-video { position: relative; display: block; height: 38svh; }
  .vhero-veil { inset: auto; top: 0; left: 0; right: 0; height: 38svh; }
  .vhero-text {
    position: relative; left: auto; bottom: auto; transform: none;
    width: 100%; margin: -72px auto 0; padding: 0 6vw 42px;
  }
  .vhero-text h1 { font-size: 34px; }
}

/* =========================================================
   SERVICES STRIP (home)
   ========================================================= */
.svc-band { background: var(--navy); }
.svc-band .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.svc {
  padding: 40px 28px 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: background 0.3s;
}
.svc:first-child { border-left: none; }
.svc:hover { background: rgba(255, 255, 255, 0.055); }
.svc h3 {
  font-family: var(--serif); font-weight: 500; font-size: 24px;
  color: #fff; margin-bottom: 6px;
}
.svc p { font-size: 13.5px; color: rgba(255, 255, 255, 0.68); line-height: 1.55; margin: 0; }
@media (max-width: 860px) {
  .svc-band .container { grid-template-columns: 1fr 1fr; }
  .svc:nth-child(3) { border-left: none; }
  .svc:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, 0.12); }
}
