:root {
    --navy:        #0e2740;
    --navy-2:      #143452;
    --navy-deep:   #0a1c30;
    --gold:        #c39a4d;
    --gold-soft:   #d8b96f;
    --ink:         #1d2733;
    --muted:       #5d6b7a;
    --line:        #e4e8ec;
    --bg:          #ffffff;
    --bg-soft:     #f5f7f9;
    --white:       #ffffff;

    --maxw: 1200px;
    --radius: 14px;
    --shadow: 0 18px 40px -20px rgba(14, 39, 64, .35);
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-head: 'Cormorant Garamond', Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 40px; overflow-x: hidden; }
/* Freeze background scrolling while the mobile menu is open */
html.nav-open { overflow: hidden; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* Clip the off-canvas mobile menu so it can't be scrolled to sideways.
       "clip" (not "hidden") keeps overflow-y visible → sticky header still works. */
    overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }

/* ───────── Typographic helpers ───────── */
.eyebrow {
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .74rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 14px;
}
.eyebrow--light { color: var(--gold-soft); }
.eyebrow--gold  { color: var(--gold); }
.h2 {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    letter-spacing: .01em;
}
.h2--light { color: #fff; }

.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head__lead { color: var(--muted); font-size: 1.08rem; margin: 16px 0 0; }
.section-cta { text-align: center; margin-top: 44px; }
.section-cta--left { text-align: left; margin-top: 32px; }

/* ───────── Buttons ───────── */
.btn {
    display: inline-flex; align-items: center; gap: .55em;
    padding: 15px 30px;
    font-family: var(--font-body);
    font-weight: 700; font-size: .82rem;
    letter-spacing: .1em; text-transform: uppercase;
    border: 1.5px solid transparent; border-radius: 4px;
    cursor: pointer; transition: .25s ease;
    white-space: nowrap;
}
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--sm { padding: 11px 20px; font-size: .72rem; }
.btn--block { width: 100%; justify-content: center; }

/* -------------- TOP BAR -------------- */
.topbar { background: var(--navy-deep); color: #d6dee6; font-size: .84rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 44px; }
.topbar__contact { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar__contact a { display: inline-flex; align-items: center; gap: 8px; opacity: .9; }
.topbar__contact a:hover { color: #fff; opacity: 1; }
.topbar .ico { color: var(--gold); }
.topbar__social { display: flex; gap: 10px; }
.soc {
    width: 30px; height: 30px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(255,255,255,.08); font-size: .85rem;
    transition: .2s;
}
.soc:hover { background: var(--gold); color: #fff; }

/* -------------- HEADER -------------- */
.header {
    position: sticky; top: 0; z-index: 60;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo__svg { width: 50px; height: auto; display: block; flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__text strong { font-family: var(--font-head); font-size: 1.55rem; font-weight: 700; color: var(--navy); letter-spacing: .04em; }
.logo__text em { font-style: normal; font-size: .82rem; font-weight: 600; color: var(--navy); letter-spacing: .02em; }
.logo__text small { font-size: .58rem; letter-spacing: .38em; color: var(--gold); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
    font-size: .82rem; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; color: var(--ink); position: relative; padding: 6px 0;
}
.nav a:not(.nav__cta)::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
    background: var(--gold); transition: width .25s;
}
.nav a:not(.nav__cta):hover::after { width: 100%; }
.nav a.nav__cta { background: var(--navy); color: #fff; padding: 11px 22px; border-radius: 4px; }
.nav a.nav__cta:hover { background: var(--gold); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { width: 26px; height: 2px; background: var(--navy); transition: .3s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------- HERO -------------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg {
    position: absolute; inset: 0;
    background: url("../img/hero.jpg") center/cover no-repeat;
    background-color: var(--navy);
    transform: scale(1.02);
}
.hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(9,24,40,.85) 0%, rgba(9,24,40,.55) 45%, rgba(9,24,40,.15) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 40px; }
.hero__content { max-width: 640px; color: #fff; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: .24em; font-size: .78rem; font-weight: 700; color: var(--gold-soft); margin: 0 0 20px; }
.hero__title { font-family: var(--font-head); font-weight: 600; font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: .01em; }
.hero__title span { color: var(--gold-soft); }
.hero__lead { font-size: 1.18rem; color: #dfe6ec; margin: 24px 0 36px; max-width: 560px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
    position: absolute; z-index: 2; bottom: 26px; left: 50%; transform: translateX(-50%);
    width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%;
    display: grid; place-items: center; color: #fff; font-size: 1.1rem; animation: bob 2s infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,7px);} }

/* -------------- VALUES STRIP -------------- */
.values { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.values__grid { display: grid; grid-template-columns: repeat(3,1fr); }
.value { text-align: center; padding: 54px 30px; position: relative; }
.value + .value::before { content: ""; position: absolute; left: 0; top: 24%; bottom: 24%; width: 1px; background: var(--line); }
.value__ico { font-size: 2rem; color: var(--gold); margin-bottom: 14px; }
.value h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .08em; color: var(--navy); margin-bottom: 10px; }
.value p { color: var(--muted); margin: 0; max-width: 280px; margin-inline: auto; }

/* -------------- ABOUT INTRO -------------- */
.about-intro__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.about-intro__media { position: relative; }
.about-intro__img {
    aspect-ratio: 4/5; border-radius: var(--radius); box-shadow: var(--shadow);
    background: url("../img/about.jpg") center/cover no-repeat, var(--navy);
}
.about-intro__badge {
    position: absolute; right: -18px; bottom: -18px;
    background: var(--gold); color: #fff; border-radius: var(--radius);
    padding: 20px 26px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow);
}
.about-intro__badge strong { font-family: var(--font-head); font-size: 2.6rem; line-height: 1; }
.about-intro__badge span { font-size: .82rem; line-height: 1.25; }
.about-intro__text p { color: var(--muted); margin: 0 0 16px; }
.about-intro__text .h2 { margin-bottom: 20px; }

.highlight-quote {
    margin: 30px 0 0; padding: 26px 30px; border-radius: var(--radius);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #eef3f7; font-size: 1.05rem; position: relative;
    border-left: 4px solid var(--gold);
}
.highlight-quote strong { color: var(--gold-soft); }
.highlight-quote cite { display: block; margin-top: 12px; font-style: normal; font-weight: 700; color: #fff; font-size: .95rem; }

/* -------------- BUY -------------- */
.buy { background: var(--bg-soft); }
.buy__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: center; }
.buy__types { display: flex; flex-direction: column; gap: 14px; }
.buy__types span {
    background: #fff; border: 1px solid var(--line); border-radius: 10px;
    padding: 18px 22px; font-weight: 700; color: var(--navy); font-size: 1.05rem;
    box-shadow: 0 6px 18px -14px rgba(14,39,64,.5);
}

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist--2col { grid-template-columns: 1fr 1fr; }
.checklist li { position: relative; padding-left: 32px; color: var(--ink); font-weight: 500; }
.checklist li::before {
    content: "\2713"; position: absolute; left: 0; top: -1px;
    width: 22px; height: 22px; border-radius: 50%; background: rgba(195,154,77,.15);
    color: var(--gold); font-size: .72rem; font-weight: 700; display: grid; place-items: center;
}
.checklist--light li { color: #e7edf2; }
.checklist--light li::before { background: rgba(216,185,111,.2); color: var(--gold-soft); }

/* -------------- FEATURED BOATS -------------- */
.boats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.boat-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform .28s, box-shadow .28s;
}
.boat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.boat-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.boat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.boat-card:hover .boat-card__media img { transform: scale(1.06); }
.boat-card__badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    padding: 6px 12px; border-radius: 3px; font-size: .68rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .08em; color: #fff; background: var(--gold);
}
.badge--sold { background: #b23b3b; }
.badge--reserved { background: #3b6bb2; }
.boat-card__type {
    position: absolute; bottom: 14px; right: 14px; z-index: 2;
    padding: 5px 12px; border-radius: 3px; font-size: .68rem; font-weight: 700;
    letter-spacing: .05em; color: #fff; background: rgba(10,28,48,.78); backdrop-filter: blur(4px);
}
.boat-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.boat-card__name { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.boat-card__specs { list-style: none; margin: 0 0 20px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.boat-card__specs li { font-size: .92rem; color: var(--ink); font-weight: 600; }
.boat-card__specs span { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; margin-bottom: 2px; }
.boat-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.boat-card__price { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--gold); }

/* -------------- SELL -------------- */
.sell { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); }
.sell__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sell__lead { color: #cfd9e2; font-size: 1.1rem; }

/* -------------- SERVICES -------------- */
.services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.service-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 30px; transition: .28s;
}
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card__ico { font-size: 1.9rem; color: var(--gold); margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--navy); margin-bottom: 12px; font-weight: 600; }
.service-card p { color: var(--muted); margin: 0; }
.service-card ul { margin: 0; padding-left: 18px; color: var(--muted); }
.service-card ul li { margin-bottom: 4px; }

/* -------------- WHY -------------- */
.why { background: var(--bg-soft); }
.why__grid { grid-template-columns: repeat(3, 1fr); gap: 18px 40px; max-width: 900px; margin-inline: auto; }
.why__grid li {
    background: #fff; border: 1px solid var(--line); border-radius: 10px;
    padding: 16px 18px 16px 46px; font-weight: 600;
}
.why__grid li::before { left: 14px; top: 15px; }

/* -------------- TESTIMONIALS -------------- */
.testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testimonial {
    margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 30px; box-shadow: 0 8px 24px -18px rgba(14,39,64,.5);
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; }
.testimonial blockquote { margin: 0 0 18px; font-size: 1.05rem; color: var(--ink); font-style: italic; }
.testimonial figcaption { font-weight: 700; color: var(--navy); }

/* -------------- ABOUT -------------- */
.about__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.about__text p { color: var(--muted); margin: 0 0 16px; }
.about__text .h2 { margin-bottom: 22px; }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; text-align: center; }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: .92rem; font-weight: 600; }

/* -------------- CONTACT -------------- */
.contact { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__lead { color: #cfd9e2; font-size: 1.1rem; }
.contact__list { list-style: none; margin: 28px 0; padding: 0; display: grid; gap: 16px; }
.contact__list li { color: #e7edf2; display: flex; gap: 12px; align-items: baseline; }
.contact__list a { color: #fff; border-bottom: 1px solid rgba(216,185,111,.5); }
.contact__list a:hover { color: var(--gold-soft); }
.wa { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 18px; }
.wa__label { color: #e7edf2; }
.wa__num { white-space: nowrap; }
.hours { margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.hours h4 { color: var(--gold-soft); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; margin-bottom: 14px; }
.hours p { color: #cfd9e2; margin: 0 0 6px; display: flex; justify-content: space-between; max-width: 300px; }
.hours span { font-weight: 700; color: #fff; }

.contact__form { background: #fff; border-radius: var(--radius); padding: 38px 34px; box-shadow: var(--shadow); }
.contact__form h3 { font-family: var(--font-head); font-size: 1.7rem; color: var(--navy); margin-bottom: 22px; font-weight: 600; }
.field { margin-bottom: 16px; }
.field input, .field select, .field textarea {
    width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 8px;
    font-family: inherit; font-size: .95rem; color: var(--ink); background: var(--bg-soft);
    transition: .2s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(195,154,77,.15); }
.field label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--navy); margin-bottom: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field input.is-invalid, .field textarea.is-invalid { border-color: #c0392b; background: #fdf3f2; }
.field-err { display: block; margin-top: 6px; font-size: .78rem; color: #c0392b; font-weight: 600; }

/* Success / error banners */
.form-alert { padding: 14px 16px; border-radius: 8px; margin-bottom: 20px; font-size: .92rem; line-height: 1.5; }
.form-alert--ok { background: #e7f6ec; border: 1px solid #b6e0c4; color: #1c6b3a; }
.form-alert--err { background: #fdecea; border: 1px solid #f5c6c0; color: #b03a2e; }
.form-alert a { color: inherit; text-decoration: underline; }

/* Honeypot: kept in the DOM but invisible to real users */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* -------------- CTA STRIP -------------- */
.cta-strip {
    text-align: center; padding: 80px 0; color: #fff;
    background: url("../img/cta.jpg") center/cover fixed no-repeat, var(--navy);
    position: relative;
}
.cta-strip::before { content: ""; position: absolute; inset: 0; background: rgba(9,24,40,.8); }
.cta-strip .container { position: relative; z-index: 2; }
.cta-strip h2 { font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; margin-bottom: 14px; }
.cta-strip__tag { font-style: italic; color: var(--gold-soft); font-size: 1.15rem; margin-bottom: 30px; }

/* -------------- FOOTER -------------- */
.footer { background: var(--navy-deep); color: #b9c5d1; }
.footer__grid { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 46px 24px; flex-wrap: wrap; }
.footer__brand { display: flex; gap: 16px; align-items: center; }
.footer__brand .logo__svg { width: 44px; }
.footer__brand strong { color: #fff; font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; }
.footer__brand p { margin: 4px 0 0; font-size: .86rem; max-width: 460px; }
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__nav a { font-size: .86rem; font-weight: 600; }
.footer__nav a:hover { color: var(--gold-soft); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); font-size: .82rem; }
.footer__bottom .container { padding-top: 20px; padding-bottom: 20px; text-align: center; }

/* -------------- WHATSAPP FLOAT -------------- */
.wa-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 70;
    width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
    display: grid; place-items: center; font-size: 1.7rem; box-shadow: 0 10px 26px -8px rgba(37,211,102,.7);
    transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* -------------- MODAL -------------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.is-open { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(9,24,40,.7); backdrop-filter: blur(3px); }
.modal__dialog {
    position: relative; max-width: 900px; margin: 5vh auto; background: #fff;
    border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
    max-height: 90vh; display: flex; flex-direction: column;
}
.modal__close {
    position: absolute; top: 12px; right: 14px; z-index: 3; width: 40px; height: 40px;
    border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--navy);
    font-size: 1.6rem; cursor: pointer; line-height: 1;
}
.modal__content { overflow-y: auto; }
.modal-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 6px; background: var(--bg-soft); }
.modal-gallery img { width: 100%; height: 100%; object-fit: cover; }
.modal-gallery__main { aspect-ratio: 16/10; }
.modal-gallery__side { display: grid; gap: 6px; }
.modal-body { padding: 30px 34px 36px; }
.modal-body__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; margin-bottom: 18px; }
.modal-body__head h3 { font-family: var(--font-head); font-size: 2rem; color: var(--navy); font-weight: 600; }
.modal-body__price { font-family: var(--font-head); font-size: 1.7rem; color: var(--gold); font-weight: 700; }
.modal-specs { list-style: none; margin: 22px 0; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.modal-specs li { background: var(--bg-soft); border-radius: 10px; padding: 14px 16px; }
.modal-specs span { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; margin-bottom: 3px; }
.modal-specs strong { color: var(--navy); font-size: .98rem; }
.modal-desc { color: var(--muted); }
.modal-actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ----------------------------------------------------------------------════
   RESPONSIVE
   ----------------------------------------------------------------------════ */
@media (max-width: 980px) {
    .boats, .services__grid, .testimonials__grid { grid-template-columns: repeat(2,1fr); }
    .about-intro__grid, .buy__grid, .sell__grid, .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 44px; }
    .about-intro__media { width: 100%; max-width: 460px; margin-inline: auto; }
    .why__grid { grid-template-columns: 1fr 1fr; }
    .modal-specs { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 820px) {
    .section { padding: 66px 0; }
    .nav {
        position: fixed; top: 78px; right: 0; width: min(300px, 82vw); height: calc(100vh - 78px);
        background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 14px 0;
        box-shadow: -14px 0 40px -20px rgba(0,0,0,.4); transform: translateX(100%);
        transition: transform .3s ease; overflow-y: auto;
    }
    .nav.is-open { transform: translateX(0); }
    .nav a { padding: 16px 26px; border-bottom: 1px solid var(--line); }
    .nav a:not(.nav__cta)::after { display: none; }
    .nav__cta { margin: 14px 26px; text-align: center; border-radius: 4px; }
    .burger { display: flex; }
    .values__grid { grid-template-columns: 1fr; }
    .value + .value::before { display: none; }
    .value { border-top: 1px solid var(--line); }
    .values__grid .value:first-child { border-top: 0; }
}

@media (max-width: 640px) {
    .topbar__contact { gap: 14px; font-size: .76rem; }
    .topbar__contact a span.ico { display: none; }
    .boats, .services__grid, .testimonials__grid, .why__grid, .checklist--2col, .about__stats, .field-row { grid-template-columns: 1fr; }
    .modal-gallery { grid-template-columns: 1fr; }
    .modal-gallery__side { grid-template-columns: 1fr 1fr; }
    .modal-specs { grid-template-columns: repeat(2,1fr); }
    .hero { min-height: 82vh; }
    .cta-strip { background-attachment: scroll; }
    .footer__grid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
    .topbar__contact a:first-child { display: none; }
}
.modal-gallery__scroll {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto !important;
    padding: 10px;
    scroll-snap-type: x mandatory;
}

.modal-gallery__scroll img {
    flex: 0 0 clamp(260px, 85vw, 900px);
    width: 100%;
    height: clamp(220px, 45vw, 520px);
    object-fit: contain;
    background: #ffffff;
    border-radius: 12px;
    scroll-snap-align: center;
}

.modal-gallery__scroll { overflow-x: auto !important; }