/* Wind Voyage — site stylesheet
   Brand: navy / deep ocean / gold accents · Cormorant Garamond display + Inter body
   Build target: static site for Netlify */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:      #040d18;
    --deep-navy:  #0a1628;
    --navy:       #0e2240;
    --ocean:      #1a3a5c;
    --blue:       #2563a8;
    --sky:        #4a9eca;
    --gold:       #c8a84b;
    --gold-light: #e4c876;
    --white:      #f0f4f8;
    --muted:      #7a9ab5;
    --border:     rgba(74,158,202,0.18);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a  { color: inherit; }

/* ── NAVIGATION ── */
nav.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(4,13,24,0.92) 0%, transparent 100%);
    transition: all 0.4s ease;
}
nav.site-nav.scrolled {
    background: rgba(4,13,24,0.96);
    padding: 14px 60px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid var(--gold);
    padding: 10px 22px;
    transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }
.nav-toggle { display: none; background: none; border: 0; color: var(--white); cursor: pointer; padding: 8px; }

/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 14s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(150deg, rgba(4,13,24,0.86) 0%, rgba(10,22,40,0.55) 55%, rgba(4,13,24,0.82) 100%);
}
.hero-content {
    position: relative;
    text-align: center;
    max-width: 980px;
    padding: 0 40px;
}
.hero-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 7.5vw, 92px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--sky); }
.hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: rgba(240,244,248,0.7);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.75;
}
.hero-actions { display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; }
.btn-primary, .btn-ghost {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.22em; text-transform: uppercase;
    padding: 16px 36px; text-decoration: none;
    transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid transparent;
    cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost { color: var(--white); border-color: rgba(240,244,248,0.28); background: transparent; }
.btn-ghost:hover { border-color: rgba(240,244,248,0.65); }
.hero-scroll {
    position: absolute; bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll span { font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted); }
.scroll-line {
    width: 1px; height: 44px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollAnim 2.2s ease infinite;
}
@keyframes scrollAnim {
    0%   { opacity: 1; transform: scaleY(1) translateY(0); }
    100% { opacity: 0; transform: scaleY(0.4) translateY(22px); }
}

/* page hero (interior pages) */
.page-hero {
    position: relative;
    min-height: 560px;
    padding: 200px 0 120px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.page-hero.page-hero-xl { min-height: 70vh; padding: 220px 0 140px; }
.hero.hero-xl { min-height: 100vh; }
.page-hero .hero-bg { filter: brightness(0.55); }
.page-hero .container { position: relative; z-index: 2; }

/* ── BIG IMAGE BANNERS ── */
.image-banner {
    position: relative;
    min-height: 56vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.image-banner-tall { min-height: 70vh; }
.image-banner::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(4,13,24,0.78) 0%, rgba(4,13,24,0.30) 50%, rgba(4,13,24,0.65) 100%);
    pointer-events: none;
}
.image-banner-overlay {
    position: relative; z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.banner-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 84px);
    font-weight: 300; line-height: 1.05;
    color: var(--white);
    margin: 0;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.banner-title em { font-style: italic; color: var(--gold-light); }
@media (max-width: 960px) {
    .image-banner, .image-banner-tall { min-height: 52vh; }
    .image-banner-overlay { padding: 0 22px; }
    .banner-title { font-size: clamp(32px, 8vw, 52px); }
}

/* ── NUMBERS BAR ── */
.numbers-bar {
    background: var(--navy);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 44px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat { text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-value {
    font-family: var(--font-display);
    font-size: 54px; font-weight: 300;
    color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-unit { font-size: 22px; opacity: 0.55; }
.stat-label {
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--muted);
}

/* ── SECTIONS ── */
section { position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 60px; }

.section-eyebrow {
    display: block;
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.38em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 300; line-height: 1.12;
    color: var(--white); margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--sky); }
.section-body {
    font-size: 16px; font-weight: 300;
    color: rgba(240,244,248,0.7);
    line-height: 1.82; max-width: 680px;
}
.section-body + .section-body { margin-top: 16px; }
.fade-up {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── MANIFESTO ── */
.manifesto { padding: 120px 0; background: var(--deep-navy); }
.manifesto-quote {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.6vw, 48px);
    font-style: italic; font-weight: 300; line-height: 1.35;
    color: var(--white); text-align: center;
    max-width: 880px; margin: 0 auto 80px; padding: 0 60px;
}
.manifesto-quote::before { content: '\201C'; font-size: 1.4em; color: var(--gold); margin-right: 2px; }
.manifesto-quote::after  { content: '\201D'; font-size: 1.4em; color: var(--gold); margin-left: 2px; }
.manifesto-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
}
.manifesto-item { padding: 58px; border-right: 1px solid var(--border); }
.manifesto-item:last-child { border-right: none; }
.manifesto-number {
    font-family: var(--font-display);
    font-size: 64px; font-weight: 300;
    color: rgba(74,158,202,0.15); line-height: 1; margin-bottom: 24px;
}
.manifesto-item h3 {
    font-family: var(--font-display);
    font-size: 23px; font-weight: 400;
    color: var(--white); margin-bottom: 16px;
}
.manifesto-item p { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.85; }

/* ── PROBLEM ── */
.problem { padding: 120px 0; background: var(--black); }
.problem-header {
    max-width: 1200px; margin: 0 auto 70px; padding: 0 60px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.problem-cards {
    max-width: 1200px; margin: 0 auto; padding: 0 60px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
}
.problem-card { background: var(--navy); padding: 50px 44px; transition: background 0.3s; }
.problem-card:hover { background: var(--ocean); }
.problem-card-icon { width: 46px; height: 46px; margin-bottom: 26px; color: var(--gold); }
.problem-card h3 {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 400;
    color: var(--white); margin-bottom: 14px;
}
.problem-card p { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.85; margin-bottom: 24px; }
.problem-stat { font-family: var(--font-display); font-size: 36px; font-weight: 300; color: var(--sky); }
.problem-stat span { font-size: 12px; font-weight: 400; color: var(--muted); display: block; margin-top: 4px; }

/* ── VIDEO BLOCK ── */
.video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--navy);
    border: 1px solid var(--border);
    overflow: hidden;
}
.video-wrap iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%; border: 0;
}

.split-section { padding: 110px 0; background: var(--deep-navy); }
.split-grid {
    max-width: 1200px; margin: 0 auto; padding: 0 60px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.split-grid.reverse > *:first-child { order: 2; }

/* ── TECH PILLARS ── */
.tech { padding: 120px 0; background: var(--deep-navy); }
.tech-header { text-align: center; margin-bottom: 60px; }
.tech-header .section-title, .tech-header .section-body { margin-left: auto; margin-right: auto; text-align: center; }
.tech-pillars {
    max-width: 1200px; margin: 60px auto 0; padding: 0 60px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
}
.tech-pillar { background: var(--navy); overflow: hidden; }
.tech-pillar-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ocean); }
.tech-pillar-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.tech-pillar:hover .tech-pillar-img img { transform: scale(1.05); }
.tech-pillar-content { padding: 36px; }
.tech-pillar-number { font-family: var(--font-display); font-size: 13px; color: var(--gold); letter-spacing: 0.22em; margin-bottom: 12px; }
.tech-pillar-content h3 { font-family: var(--font-display); font-size: 27px; font-weight: 400; color: var(--white); margin-bottom: 12px; }
.tech-pillar-content p { font-size: 13.5px; font-weight: 300; color: var(--muted); line-height: 1.82; }
.tech-data { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 12px; color: var(--sky); font-weight: 400; line-height: 1.7; }

/* ── PROOF ── */
.proof-inner { display: grid; grid-template-columns: 1fr 1fr; }
.proof-visual {
    position: relative;
    min-height: 600px;
    background-size: cover; background-position: center;
}
.proof-label {
    position: absolute; bottom: 24px; left: 24px;
    background: rgba(4,13,24,0.88);
    padding: 12px 18px; font-size: 10px;
    letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase;
}
.proof-content {
    background: var(--navy); padding: 100px 80px;
    display: flex; flex-direction: column; justify-content: center;
}
.proof-content blockquote {
    font-family: var(--font-display);
    font-size: 20px; font-style: italic; font-weight: 300;
    color: var(--white); line-height: 1.55;
    border-left: 2px solid var(--gold); padding-left: 24px;
    margin: 28px 0;
}
.proof-list { list-style: none; margin-top: 28px; }
.proof-list li {
    font-size: 14px; font-weight: 300; color: var(--muted);
    padding: 12px 0; border-bottom: 1px solid var(--border);
    display: flex; align-items: flex-start; gap: 12px;
}
.proof-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }

/* ── VESSEL CARD ── */
.vessels-band { padding: 120px 0; background: var(--black); }
.vessels-grid {
    max-width: 1200px; margin: 60px auto 0; padding: 0 60px;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px;
}
.vessel-card {
    position: relative;
    background: var(--navy);
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s;
}
.vessel-card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.vessel-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.vessel-card:hover .vessel-card-img img { transform: scale(1.04); }
.vessel-card-content { padding: 40px 44px; }
.vessel-card-eyebrow { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.vessel-card h3 { font-family: var(--font-display); font-size: 34px; font-weight: 300; color: var(--white); margin-bottom: 10px; }
.vessel-card h3 em { font-style: italic; color: var(--sky); }
.vessel-card p { font-size: 14px; color: var(--muted); line-height: 1.8; }
.vessel-card-link {
    display: inline-block; margin-top: 18px;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
}
.vessel-card-link::after { content: ' →'; transition: margin-left 0.2s; }
.vessel-card:hover .vessel-card-link::after { margin-left: 6px; }

/* ── SPEC TABLE ── */
.spec-block { padding: 100px 0; background: var(--deep-navy); }
.yacht-specs {
    max-width: 1200px; margin: 40px auto 0; padding: 0 60px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
}
.spec-group { background: var(--navy); padding: 44px 36px; }
.spec-group h4 { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.spec-row { display: flex; justify-content: space-between; align-items: baseline; padding: 11px 0; border-bottom: 1px solid var(--border); gap: 14px; }
.spec-row:last-child { border-bottom: none; }
.spec-label { font-size: 12px; color: var(--muted); font-weight: 300; }
.spec-value { font-family: var(--font-display); font-size: 18px; color: var(--white); font-weight: 400; text-align: right; }

/* ── COMPARISON ── */
.compare { padding: 120px 0; background: var(--deep-navy); }
.compare-table { max-width: 1000px; margin: 50px auto 0; padding: 0 60px; }
.compare-header { display: grid; grid-template-columns: 2fr 1.1fr 1.1fr; gap: 3px; margin-bottom: 3px; }
.compare-col-head { padding: 18px 26px; font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; }
.compare-col-head.wv  { background: var(--gold); color: var(--black); }
.compare-col-head.cv  { background: var(--navy); color: var(--muted); }
.compare-row { display: grid; grid-template-columns: 2fr 1.1fr 1.1fr; gap: 3px; margin-bottom: 3px; }
.compare-cell { padding: 16px 26px; font-size: 13px; background: var(--navy); }
.compare-cell.attr { font-weight: 400; color: var(--white); }
.compare-cell.wv-val { color: var(--sky); font-weight: 500; background: rgba(26,58,92,0.5); }
.compare-cell.cv-val { color: var(--muted); }

/* ── GALLERY ── */
.gallery { padding: 110px 0; background: var(--black); }
.gallery-grid {
    max-width: 1400px; margin: 50px auto 0; padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--navy); }
.gallery-item.tall  { aspect-ratio: 4 / 5; grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-cap {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 14px 20px;
    background: linear-gradient(to top, rgba(4,13,24,0.85), transparent);
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white);
}

/* ── PARTNERS BAND ── */
.partners-band { padding: 100px 0; background: var(--navy); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-grid {
    max-width: 1200px; margin: 50px auto 0; padding: 0 60px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
    align-items: center;
}
.partner-cell { text-align: center; }
.partner-cell .partner-name { font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: 6px; }
.partner-cell .partner-role { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.partner-cell .partner-note { font-size: 12px; color: var(--muted); margin-top: 8px; line-height: 1.6; }

/* ── FOUNDER ── */
.founder { padding: 120px 0; background: var(--black); }
.founder-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 60px;
    display: grid; grid-template-columns: 380px 1fr;
    gap: 90px; align-items: start;
}
.founder-portrait { position: relative; aspect-ratio: 4 / 5; background: var(--navy); overflow: hidden; }
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; }
.founder-portrait::after {
    content: ''; position: absolute;
    bottom: -22px; right: -22px;
    width: 100%; height: 100%;
    border: 1px solid var(--gold); z-index: -1;
}
.founder-role { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }
.founder-bio { font-size: 15px; font-weight: 300; color: rgba(240,244,248,0.7); line-height: 1.82; margin-bottom: 18px; }
.founder-creds { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--border); }
.cred { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 14px; }
.cred::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ── CONTACT ── */
.contact { padding: 130px 0; background: var(--deep-navy); text-align: center; position: relative; overflow: hidden; }
.contact::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(37,99,168,0.13) 0%, transparent 68%);
    pointer-events: none;
}
.contact .section-title { max-width: 720px; margin: 0 auto 22px; }
.contact .section-body  { margin: 0 auto 50px; text-align: center; }
.contact-form { max-width: 580px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field {
    background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    padding: 16px 20px; font-family: var(--font-body);
    font-size: 14px; color: var(--white); width: 100%; outline: none;
    transition: border-color 0.2s;
}
.form-field:focus { border-color: var(--gold); }
.form-field::placeholder { color: var(--muted); }
textarea.form-field { height: 130px; resize: vertical; }
.form-submit {
    background: var(--gold); color: var(--black); border: none;
    padding: 18px; font-family: var(--font-body);
    font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase; cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: var(--gold-light); }
.contact-note { font-size: 12px; color: var(--muted); margin-top: 14px; }

.contact-info {
    max-width: 880px; margin: 60px auto 0; padding: 0 60px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    text-align: left;
}
.contact-info-block .label { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.contact-info-block .value { font-size: 14px; color: var(--white); line-height: 1.7; }
.contact-info-block .sub   { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── EDITORIAL / LONG-FORM ── */
.editorial { padding: 120px 0; background: var(--deep-navy); }
.editorial-body {
    max-width: 760px; margin: 0 auto; padding: 0 60px;
    font-size: 17px; font-weight: 300; color: rgba(240,244,248,0.82);
    line-height: 1.85;
}
.editorial-body h2 {
    font-family: var(--font-display);
    font-size: 36px; font-weight: 400; color: var(--white);
    margin: 56px 0 22px;
}
.editorial-body h3 {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 400; color: var(--gold);
    margin: 36px 0 14px;
}
.editorial-body p { margin-bottom: 22px; }
.editorial-body blockquote {
    font-family: var(--font-display);
    font-style: italic; font-size: 24px;
    color: var(--white); line-height: 1.5;
    border-left: 2px solid var(--gold);
    padding: 8px 0 8px 24px;
    margin: 32px 0;
}
.editorial-body .lede {
    font-family: var(--font-display);
    font-size: 22px; font-style: italic;
    color: var(--gold-light);
    margin-bottom: 36px; line-height: 1.5;
}

/* ── FOOTER ── */
footer.site-footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 70px 60px 36px;
}
.footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border);
}
.footer-col h5 { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-tag { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: 0.18em; color: var(--white); text-transform: uppercase; margin-bottom: 14px; }
.footer-tag span { color: var(--gold); }
.footer-blurb { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 320px; }
.footer-bottom { max-width: 1200px; margin: 24px auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(122,154,181,0.55); letter-spacing: 0.08em; }
.footer-bottom .socials { display: flex; gap: 18px; }
.footer-bottom .socials a { color: var(--muted); transition: color 0.2s; }
.footer-bottom .socials a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    nav.site-nav { padding: 16px 22px; }
    nav.site-nav.scrolled { padding: 12px 22px; }
    .nav-links { display: none; }
    .nav-toggle { display: inline-block; }
    .nav-cta { padding: 8px 16px; font-size: 10px; }
    .container, .container-narrow { padding: 0 24px; }
    .hero { min-height: 620px; }
    .numbers-bar { grid-template-columns: 1fr 1fr; padding: 32px 22px; }
    .stat { border-right: none; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--border); }
    .stat:nth-last-child(-n+2) { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .manifesto-grid { grid-template-columns: 1fr; }
    .manifesto-item { border-right: none; border-bottom: 1px solid var(--border); padding: 40px 24px; }
    .manifesto-item:last-child { border-bottom: none; }
    .problem-header, .problem-cards, .tech-pillars, .yacht-specs, .vessels-grid, .partners-grid, .contact-info { grid-template-columns: 1fr; padding: 0 22px; gap: 16px; }
    .problem-header { gap: 22px; margin-bottom: 32px; }
    .proof-inner { grid-template-columns: 1fr; }
    .proof-visual { min-height: 340px; }
    .proof-content { padding: 60px 28px; }
    .founder-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 22px; }
    .split-grid { grid-template-columns: 1fr; padding: 0 22px; gap: 36px; }
    .split-grid.reverse > *:first-child { order: 0; }
    .compare-table { padding: 0 16px; font-size: 11px; }
    .compare-cell, .compare-col-head { padding: 12px 14px; font-size: 11px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; padding: 0 14px; }
    .gallery-item.wide { grid-column: span 2; }
    .editorial-body { padding: 0 22px; font-size: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; padding: 0 0 36px; }
    .footer-bottom { flex-direction: column; gap: 18px; text-align: center; padding: 0; }
    .vessel-card-content { padding: 30px 26px; }
    .partners-grid { gap: 30px; }
    .film-grid, .ga-grid, .video-grid, .tech-systems-grid { grid-template-columns: 1fr !important; gap: 30px !important; padding: 30px 22px !important; }
    .video-grid > div { width: 100%; }
    nav.site-nav .nav-mobile-open .nav-links {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(4,13,24,0.98); padding: 20px 22px; gap: 18px;
        border-bottom: 1px solid var(--border);
    }
}
