/* ==========================================================================
   RAJA AMPAT BOAT CHARTER — "Deep Water Modernism"
   A minimalist-luxury system: ink-green + bone, hairline rules, editorial
   index numerals, one lagoon-teal accent, and a lot of quiet space.
   --------------------------------------------------------------------------
   1. Tokens
   2. Reset & base
   3. Typography
   4. Layout primitives
   5. Buttons & links
   6. Ornaments (eyebrow, rule, numeral, index)
   7. Header & navigation
   8. Sections
   9. Footer
  10. Motion & reduced-motion
   ========================================================================== */

/* 1. TOKENS ============================================================== */
:root {
    /* Ink — deep sea-green blacks. Used for dark sections and all headings. */
    --ra-ink:        #0B1A18;
    --ra-ink-2:      #102723;
    --ra-ink-3:      #16352F;
    --ra-deep:       #0E3B36;

    /* Lagoon teal — the single accent. Used sparingly and deliberately. */
    --ra-teal:       #137A73;
    --ra-teal-l:     #1E9C93;
    --ra-teal-d:     #0E5A55;
    --ra-teal-wash:  rgba(19,122,115,.08);
    --ra-teal-line:  rgba(19,122,115,.28);

    /* Bone — warm paper neutrals. */
    --ra-bone:       #F4F1EA;
    --ra-paper:      #FAF8F4;
    --ra-white:      #FFFFFF;

    /* Text */
    --ra-text:       #17231F;
    --ra-text-soft:  #4C5A56;
    --ra-muted:      #7E8C88;
    --ra-on-ink:     #EDE9DF;
    --ra-on-ink-soft:rgba(237,233,223,.70);
    --ra-on-ink-mut: rgba(237,233,223,.50);

    /* Hairlines — the signature structural device. */
    --ra-line:       #E1DBCF;
    --ra-line-soft:  #ECE7DD;
    --ra-line-strong:#CFC7B7;
    --ra-line-ink:   rgba(237,233,223,.16);
    --ra-line-ink-2: rgba(237,233,223,.28);

    /* Radius — near-square. Sharpness is the point. */
    --ra-r-xs: 2px;
    --ra-r-sm: 3px;
    --ra-r:    4px;
    --ra-r-lg: 6px;
    --ra-r-pill: 999px;

    /* Type */
    --ra-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
    --ra-sans:    "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Rhythm */
    --ra-shell:      1240px;
    --ra-shell-wide: 1440px;
    --ra-shell-narrow: 760px;
    --ra-gut:        clamp(1.25rem, 4vw, 3rem);
    --ra-sec-y:      clamp(4.5rem, 9vw, 8.5rem);
    --ra-sec-y-sm:   clamp(3rem, 6vw, 5.5rem);

    /* Shadow — barely there. Luxury does not shout. */
    --ra-shadow-sm: 0 1px 2px rgba(11,26,24,.04);
    --ra-shadow:    0 12px 40px -18px rgba(11,26,24,.28);
    --ra-shadow-lg: 0 30px 80px -34px rgba(11,26,24,.42);

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

/* 2. RESET & BASE ======================================================== */
*, *::before, *::after { box-sizing: border-box; }

/* The browser's own [hidden] rule is UA-origin, so any component class that
   sets display (.ra-vessel, .ra-empty, .ra-drawer__sub, ...) silently wins
   over it — the element keeps its box even though el.hidden = true was set.
   This makes the "hidden" content attribute reliable everywhere, matching
   what el.hidden = true/false is supposed to guarantee. */
[hidden] { display: none !important; }

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

body {
    margin: 0;
    background: var(--ra-bone);
    color: var(--ra-text);
    font-family: var(--ra-sans);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: -0.004em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-variant-ligatures: common-ligatures;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
figure, blockquote { margin: 0; }

button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

:where(a) { color: inherit; }

::selection { background: var(--ra-teal); color: var(--ra-white); }

/* Universal focus ring — never removed, only replaced. */
:focus-visible {
    outline: 2px solid var(--ra-teal-l);
    outline-offset: 3px;
    border-radius: var(--ra-r-xs);
}
.ra-on-ink :focus-visible,
.ra-sec--ink :focus-visible { outline-color: #6FD5CD; }

/* Skip link */
.ra-skip {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--ra-ink); color: var(--ra-on-ink);
    padding: .85rem 1.4rem; font-size: .82rem; letter-spacing: .12em;
    text-transform: uppercase; text-decoration: none;
}
.ra-skip:focus { left: 1rem; top: 1rem; }

/* 3. TYPOGRAPHY ========================================================== */
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 400; }

.ra-display {
    font-family: var(--ra-display);
    font-optical-sizing: auto;
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -0.021em;
    color: var(--ra-ink);
    text-wrap: balance;
    font-variation-settings: "SOFT" 0, "WONK" 0;
}
.ra-sec--ink .ra-display,
.ra-on-ink .ra-display,
.ra-hero .ra-display,
.ra-pagehead .ra-display,
.ra-cta .ra-display { color: var(--ra-on-ink); }

.ra-h1 { font-size: clamp(2.5rem, 6.2vw, 4.75rem); }
.ra-h2 { font-size: clamp(2rem, 4.4vw, 3.35rem); }
.ra-h3 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); line-height: 1.16; }
.ra-h4 { font-size: clamp(1.15rem, 1.7vw, 1.4rem);  line-height: 1.24; }

.ra-lede {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.72;
    color: var(--ra-text-soft);
    max-width: 62ch;
    text-wrap: pretty;
    margin: 0;
}
.ra-sec--ink .ra-lede, .ra-on-ink .ra-lede,
.ra-hero .ra-lede, .ra-pagehead .ra-lede, .ra-cta .ra-lede { color: var(--ra-on-ink-soft); }

.ra-body { color: var(--ra-text-soft); margin: 0; text-wrap: pretty; }
.ra-body + .ra-body { margin-top: 1.05em; }

.ra-prose { font-size: 1.0625rem; line-height: 1.82; color: var(--ra-text-soft); }
.ra-prose > * { margin: 0; }
.ra-prose > * + * { margin-top: 1.15em; }
.ra-prose p { text-wrap: pretty; }
.ra-prose h2, .ra-prose h3 { font-family: var(--ra-display); color: var(--ra-ink); line-height: 1.14; }
.ra-prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-top: 1.9em; }
.ra-prose h3 { font-size: clamp(1.25rem, 2vw, 1.5rem);  margin-top: 1.5em; }
.ra-prose a { color: var(--ra-teal-d); text-underline-offset: .22em; text-decoration-thickness: 1px; }
.ra-prose a:hover { color: var(--ra-ink); }
.ra-prose ul, .ra-prose ol { margin: 0; padding-left: 1.15rem; }
.ra-prose li + li { margin-top: .45em; }
.ra-prose strong { color: var(--ra-ink); font-weight: 600; }
.ra-prose blockquote {
    margin: 0; padding-left: 1.5rem;
    border-left: 1px solid var(--ra-teal);
    font-family: var(--ra-display); font-size: 1.25rem; font-style: italic;
    color: var(--ra-ink);
}

.ra-tabular { font-variant-numeric: tabular-nums; }

/* 4. LAYOUT PRIMITIVES =================================================== */
.ra-shell {
    width: 100%;
    max-width: var(--ra-shell);
    margin-inline: auto;
    padding-inline: var(--ra-gut);
}
.ra-shell--wide   { max-width: var(--ra-shell-wide); }
.ra-shell--narrow { max-width: var(--ra-shell-narrow); }

.ra-section { padding-block: var(--ra-sec-y); position: relative; }
.ra-section--sm   { padding-block: var(--ra-sec-y-sm); }
.ra-section--flush-top { padding-top: 0; }

.ra-sec--bone  { background: var(--ra-bone); }
.ra-sec--paper { background: var(--ra-paper); }
.ra-sec--white { background: var(--ra-white); }
.ra-sec--ink   { background: var(--ra-ink); color: var(--ra-on-ink); }
.ra-sec--deep  { background: var(--ra-deep); color: var(--ra-on-ink); }

.ra-grid { display: grid; gap: clamp(1.5rem, 3vw, 2.75rem); }
.ra-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ra-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ra-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.ra-stack   { display: flex; flex-direction: column; }
.ra-gap-xs  { gap: .5rem; }  .ra-gap-sm { gap: .9rem; }
.ra-gap     { gap: 1.4rem; } .ra-gap-lg { gap: 2.2rem; }

.ra-img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: var(--ra-r-xs);
}
.ra-figure { position: relative; overflow: hidden; border-radius: var(--ra-r-xs); background: var(--ra-line-soft); }
.ra-figure > img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.1s var(--ra-ease);
}
.ra-ratio-4x5  { aspect-ratio: 4 / 5; }
.ra-ratio-3x4  { aspect-ratio: 3 / 4; }
.ra-ratio-1x1  { aspect-ratio: 1 / 1; }
.ra-ratio-3x2  { aspect-ratio: 3 / 2; }
.ra-ratio-16x9 { aspect-ratio: 16 / 9; }
.ra-ratio-21x9 { aspect-ratio: 21 / 9; }

/* 5. BUTTONS & LINKS ===================================================== */
.ra-btn {
    --_bg: transparent; --_fg: var(--ra-ink); --_bd: var(--ra-line-strong);
    display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
    padding: .95rem 1.75rem;
    background: var(--_bg); color: var(--_fg);
    border: 1px solid var(--_bd);
    border-radius: var(--ra-r-xs);
    font-size: .8rem; font-weight: 600; line-height: 1;
    letter-spacing: .13em; text-transform: uppercase; text-decoration: none;
    white-space: nowrap;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: background-color .32s var(--ra-ease), color .32s var(--ra-ease),
                border-color .32s var(--ra-ease), transform .32s var(--ra-ease);
}
.ra-btn i { font-size: 1.05rem; }
.ra-btn:hover { transform: translateY(-2px); }

.ra-btn--primary { --_bg: var(--ra-ink); --_fg: var(--ra-on-ink); --_bd: var(--ra-ink); }
.ra-btn--primary:hover { --_bg: var(--ra-teal-d); --_bd: var(--ra-teal-d); --_fg: #fff; }

.ra-btn--accent  { --_bg: var(--ra-teal); --_fg: #fff; --_bd: var(--ra-teal); }
.ra-btn--accent:hover { --_bg: var(--ra-teal-d); --_bd: var(--ra-teal-d); }

.ra-btn--ghost   { --_bg: transparent; --_fg: var(--ra-ink); --_bd: var(--ra-line-strong); }
.ra-btn--ghost:hover { --_bd: var(--ra-ink); --_bg: var(--ra-ink); --_fg: var(--ra-on-ink); }

.ra-btn--on-ink  { --_bg: transparent; --_fg: var(--ra-on-ink); --_bd: var(--ra-line-ink-2); }
.ra-btn--on-ink:hover { --_bg: var(--ra-on-ink); --_fg: var(--ra-ink); --_bd: var(--ra-on-ink); }

.ra-btn--light   { --_bg: var(--ra-bone); --_fg: var(--ra-ink); --_bd: var(--ra-bone); }
.ra-btn--light:hover { --_bg: var(--ra-teal-l); --_bd: var(--ra-teal-l); --_fg: #fff; }

.ra-btn--sm { padding: .7rem 1.15rem; font-size: .7rem; letter-spacing: .11em; }

.ra-btn-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* Quiet text link with a sliding underline */
.ra-link {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .78rem; font-weight: 700; letter-spacing: .13em;
    text-transform: uppercase; text-decoration: none;
    color: var(--ra-ink);
    padding-bottom: .35rem;
    border-bottom: 1px solid var(--ra-line-strong);
    transition: color .3s var(--ra-ease), border-color .3s var(--ra-ease), gap .3s var(--ra-ease);
}
.ra-link i { transition: transform .3s var(--ra-ease); }
.ra-link:hover { color: var(--ra-teal-d); border-color: var(--ra-teal); gap: .8rem; }
.ra-link:hover i { transform: translateX(3px); }
.ra-sec--ink .ra-link, .ra-on-ink .ra-link { color: var(--ra-on-ink); border-color: var(--ra-line-ink-2); }
.ra-sec--ink .ra-link:hover, .ra-on-ink .ra-link:hover { color: #6FD5CD; border-color: #6FD5CD; }

/* 6. ORNAMENTS =========================================================== */
/* Eyebrow: a short teal dash, then letterspaced small caps. */
.ra-eyebrow {
    display: inline-flex; align-items: center; gap: .7rem;
    font-size: .7rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--ra-teal-d);
    margin: 0;
}
.ra-eyebrow::before {
    content: ""; width: 26px; height: 1px; background: var(--ra-teal); flex: none;
}
.ra-sec--ink .ra-eyebrow, .ra-on-ink .ra-eyebrow,
.ra-hero .ra-eyebrow, .ra-pagehead .ra-eyebrow, .ra-cta .ra-eyebrow { color: #6FD5CD; }
.ra-sec--ink .ra-eyebrow::before, .ra-on-ink .ra-eyebrow::before,
.ra-hero .ra-eyebrow::before, .ra-pagehead .ra-eyebrow::before,
.ra-cta .ra-eyebrow::before { background: #6FD5CD; }
.ra-eyebrow--plain::before { display: none; }
.ra-eyebrow--center::after {
    content: ""; width: 26px; height: 1px; background: currentColor; flex: none; opacity: .8;
}

/* Section head — left aligned by default, centred by modifier. */
.ra-head { display: flex; flex-direction: column; gap: 1.15rem; max-width: 70ch; }
.ra-head--center { align-items: center; text-align: center; margin-inline: auto; }
.ra-head--center .ra-lede { margin-inline: auto; }
.ra-head__row {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
}

/* Hairline rule */
.ra-rule { height: 1px; background: var(--ra-line); border: 0; margin: 0; }
.ra-rule--ink { background: var(--ra-line-ink); }
.ra-rule--accent { background: var(--ra-teal); width: 44px; height: 1px; }

/* Index numeral — the signature motif. */
.ra-numeral {
    font-family: var(--ra-display);
    font-variant-numeric: tabular-nums lining-nums;
    font-weight: 300;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1;
    color: var(--ra-teal);
    letter-spacing: -0.02em;
}
.ra-numeral--lg { font-size: clamp(2.6rem, 6vw, 4.5rem); }
.ra-numeral--muted { color: var(--ra-line-strong); }
.ra-sec--ink .ra-numeral, .ra-on-ink .ra-numeral { color: #6FD5CD; }

/* Meta label / value pair */
.ra-meta__label {
    font-size: .64rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--ra-muted); margin: 0;
}
.ra-meta__value {
    font-family: var(--ra-display); font-size: 1.15rem; line-height: 1.2;
    color: var(--ra-ink); margin: 0;
}
.ra-sec--ink .ra-meta__label, .ra-on-ink .ra-meta__label,
.ra-hero .ra-meta__label, .ra-pagehead .ra-meta__label { color: var(--ra-on-ink-mut); }
.ra-sec--ink .ra-meta__value, .ra-on-ink .ra-meta__value,
.ra-hero .ra-meta__value, .ra-pagehead .ra-meta__value { color: var(--ra-on-ink); }

/* Pill tag */
.ra-tag {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .35rem .7rem;
    border: 1px solid var(--ra-line);
    border-radius: var(--ra-r-pill);
    font-size: .66rem; font-weight: 700; letter-spacing: .13em;
    text-transform: uppercase; color: var(--ra-text-soft);
    background: var(--ra-white);
}
.ra-tag--accent { border-color: var(--ra-teal-line); color: var(--ra-teal-d); background: var(--ra-teal-wash); }
.ra-sec--ink .ra-tag, .ra-on-ink .ra-tag,
.ra-hero .ra-tag, .ra-pagehead .ra-tag {
    border-color: var(--ra-line-ink-2); color: var(--ra-on-ink-soft);
    background: rgba(8,20,18,.35); backdrop-filter: blur(6px);
}

/* Card — hairline box, square-ish, no drop shadow at rest. */
.ra-card {
    background: var(--ra-white);
    border: 1px solid var(--ra-line);
    border-radius: var(--ra-r-xs);
    transition: border-color .35s var(--ra-ease), box-shadow .35s var(--ra-ease),
                transform .35s var(--ra-ease);
}
.ra-card--pad { padding: clamp(1.4rem, 2.4vw, 2rem); }
.ra-card:hover { border-color: var(--ra-line-strong); }
a.ra-card:hover, .ra-card--lift:hover { transform: translateY(-3px); box-shadow: var(--ra-shadow); }
.ra-sec--ink .ra-card, .ra-on-ink .ra-card {
    background: var(--ra-ink-2); border-color: var(--ra-line-ink);
}
.ra-sec--ink .ra-card:hover, .ra-on-ink .ra-card:hover { border-color: var(--ra-line-ink-2); }

/* 7. HEADER & NAVIGATION ================================================= */
.ra-topbar {
    background: var(--ra-ink);
    color: var(--ra-on-ink-soft);
    font-size: .72rem;
    letter-spacing: .08em;
}
.ra-topbar__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; min-height: 40px; flex-wrap: wrap;
}
/* The credentials line wraps to two lines on a phone and pushes the hero
   below the fold — keep it for tablets and up. */
.ra-topbar__note { display: none; align-items: center; gap: .5rem; margin: 0; }
@media (min-width: 720px) { .ra-topbar__note { display: flex; } }
@media (max-width: 719px) { .ra-topbar__inner { justify-content: center; } }
.ra-topbar__note i { color: #6FD5CD; font-size: .95rem; }
.ra-topbar__links { display: flex; align-items: center; gap: 1.5rem; }
.ra-topbar a {
    display: inline-flex; align-items: center; gap: .45rem;
    text-decoration: none; color: var(--ra-on-ink-soft);
    transition: color .25s var(--ra-ease);
}
.ra-topbar a:hover { color: #6FD5CD; }

.ra-header {
    position: sticky; top: 0; z-index: 90;
    background: rgba(244,241,234,.86);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--ra-line);
    transition: box-shadow .35s var(--ra-ease), background-color .35s var(--ra-ease);
}
.ra-header.is-stuck { box-shadow: 0 1px 24px -8px rgba(11,26,24,.20); background: rgba(250,248,244,.94); }

.ra-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; min-height: 76px;
}

.ra-brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; flex: none; }
.ra-brand__mark { height: 40px; width: auto; object-fit: contain; }
.ra-brand__text { display: flex; flex-direction: column; gap: .1rem; }
.ra-brand__name {
    font-family: var(--ra-display); font-size: 1.06rem; line-height: 1.05;
    letter-spacing: -0.012em; color: var(--ra-ink); white-space: nowrap;
}
.ra-brand__tag {
    font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--ra-muted); white-space: nowrap;
}

/* Desktop nav */
.ra-nav-container { display: none; }
@media (min-width: 1240px) { .ra-nav-container { display: block; } }

.ra-nav-menu {
    display: flex; align-items: center; gap: clamp(.5rem, 1.4vw, 1.35rem);
    list-style: none; margin: 0; padding: 0;
}
.ra-nav-menu > li { position: relative; }
.ra-nav-menu > li > .menu-link {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .6rem .25rem;
    font-size: .78rem; font-weight: 600; letter-spacing: .09em;
    text-transform: uppercase; text-decoration: none; color: var(--ra-text);
    white-space: nowrap;
    transition: color .25s var(--ra-ease);
}
.ra-nav-menu > li > .menu-link i { font-size: .85rem; transition: transform .3s var(--ra-ease); }
@media (min-width: 1240px) and (max-width: 1399px) {
    .ra-nav-menu { gap: .55rem; }
    .ra-nav-menu > li > .menu-link { font-size: .72rem; letter-spacing: .06em; padding-inline: .15rem; }
    .ra-header__cta { padding-inline: 1rem; font-size: .66rem; }
}
.ra-nav-menu > li > .menu-link::after {
    content: ""; position: absolute; left: .25rem; right: .25rem; bottom: .28rem;
    height: 1px; background: var(--ra-teal);
    transform: scaleX(0); transform-origin: left;
    transition: transform .34s var(--ra-ease);
}
.ra-nav-menu > li:hover > .menu-link,
.ra-nav-menu > li:focus-within > .menu-link { color: var(--ra-teal-d); }
.ra-nav-menu > li:hover > .menu-link::after,
.ra-nav-menu > li:focus-within > .menu-link::after { transform: scaleX(1); }
.ra-nav-menu > li:hover > .menu-link i { transform: rotate(180deg); }
.ra-nav-menu > li.current-menu-item > .menu-link,
.ra-nav-menu > li.current-page-ancestor > .menu-link { color: var(--ra-teal-d); }

.ra-nav-menu .submenu {
    position: absolute; top: calc(100% + .55rem); left: -1rem;
    min-width: 286px; padding: .6rem;
    list-style: none; margin: 0;
    background: var(--ra-white);
    border: 1px solid var(--ra-line);
    border-radius: var(--ra-r);
    box-shadow: var(--ra-shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .26s var(--ra-ease), transform .26s var(--ra-ease), visibility .26s;
}
.ra-nav-menu > li:hover > .submenu,
.ra-nav-menu > li:focus-within > .submenu { opacity: 1; visibility: visible; transform: none; }
.ra-nav-menu .submenu .menu-link {
    display: block; padding: .58rem .8rem;
    font-size: .84rem; font-weight: 500; letter-spacing: 0; text-transform: none;
    text-decoration: none; color: var(--ra-text-soft);
    border-radius: var(--ra-r-xs);
    transition: background-color .22s var(--ra-ease), color .22s var(--ra-ease), padding-left .22s var(--ra-ease);
}
.ra-nav-menu .submenu .menu-link:hover {
    background: var(--ra-bone); color: var(--ra-ink); padding-left: 1.05rem;
}
/* Long dropdowns (9+ links, e.g. Charters) flow into two columns instead of
   one tall list — auto-applies to any group that grows, no JS/count needed. */
.ra-nav-menu .submenu:has(li:nth-child(9)) {
    columns: 2; column-gap: .4rem; min-width: 560px;
}
.ra-nav-menu .submenu:has(li:nth-child(9)) li { break-inside: avoid; }

.ra-header__actions { display: flex; align-items: center; gap: .6rem; flex: none; }
.ra-header__cta { display: none; }
@media (min-width: 780px) { .ra-header__cta { display: inline-flex; } }

/* Mobile toggle */
.ra-burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border: 1px solid var(--ra-line-strong); border-radius: var(--ra-r-xs);
    color: var(--ra-ink);
    transition: background-color .25s var(--ra-ease), color .25s var(--ra-ease), border-color .25s var(--ra-ease);
}
.ra-burger:hover { background: var(--ra-ink); color: var(--ra-on-ink); border-color: var(--ra-ink); }
.ra-burger i { font-size: 1.35rem; }
@media (min-width: 1240px) { .ra-burger { display: none; } }

/* Mobile drawer */
.ra-drawer {
    position: fixed; inset: 0; z-index: 120;
    background: var(--ra-ink); color: var(--ra-on-ink);
    display: flex; flex-direction: column;
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .3s var(--ra-ease), transform .3s var(--ra-ease), visibility .3s;
    overscroll-behavior: contain;
}
.ra-drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.ra-drawer__top {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: 1.15rem var(--ra-gut);
    border-bottom: 1px solid var(--ra-line-ink);
}
.ra-drawer__close {
    width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--ra-line-ink-2); border-radius: var(--ra-r-xs); color: var(--ra-on-ink);
}
.ra-drawer__close:hover { background: var(--ra-on-ink); color: var(--ra-ink); }
.ra-drawer__body { flex: 1; overflow-y: auto; padding: 1.5rem var(--ra-gut) 2.5rem; }
.ra-drawer__list { list-style: none; margin: 0; padding: 0; }
.ra-drawer__list > li { border-bottom: 1px solid var(--ra-line-ink); }
.ra-drawer__link {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    width: 100%; padding: 1.05rem 0;
    font-family: var(--ra-display); font-size: 1.35rem; line-height: 1.15;
    color: var(--ra-on-ink); text-decoration: none; text-align: left;
}
.ra-drawer__link i { font-size: 1.15rem; color: #6FD5CD; transition: transform .3s var(--ra-ease); }
.ra-drawer__link[aria-expanded="true"] i { transform: rotate(180deg); }
.ra-drawer__sub { list-style: none; margin: 0; padding: 0 0 1.1rem .2rem; display: grid; gap: .1rem; }
.ra-drawer__sub a {
    display: block; padding: .5rem 0; font-size: .95rem;
    color: var(--ra-on-ink-soft); text-decoration: none;
    transition: color .22s var(--ra-ease), padding-left .22s var(--ra-ease);
}
.ra-drawer__sub a:hover { color: #6FD5CD; padding-left: .4rem; }
.ra-drawer__foot { display: grid; gap: .6rem; margin-top: 2rem; }
body.ra-locked { overflow: hidden; }

/* 8. SECTIONS ============================================================ */

/* --- 8.1 Hero: cinematic full-bleed, left editorial, bottom spec rail --- */
.ra-hero { position: relative; background: var(--ra-ink); color: var(--ra-on-ink); isolation: isolate; }
.ra-hero__media { position: absolute; inset: 0; z-index: -2; }
.ra-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.ra-hero__scrim {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(to right, rgba(6,17,16,.94) 0%, rgba(6,17,16,.86) 34%, rgba(6,17,16,.58) 68%, rgba(6,17,16,.62) 100%),
        linear-gradient(to top,   rgba(6,17,16,.92) 0%, rgba(6,17,16,.18) 55%, rgba(6,17,16,.42) 100%);
}
.ra-hero__inner {
    display: flex; flex-direction: column; justify-content: flex-end;
    min-height: auto;
    padding-top: clamp(3.5rem, 12vw, 7rem);
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}
.ra-hero__body { max-width: 44rem; display: flex; flex-direction: column; gap: 1.4rem; }
.ra-hero__title { font-size: clamp(2.35rem, 6.4vw, 4.6rem); color: var(--ra-on-ink); }
.ra-hero__title em {
    font-style: italic; font-variation-settings: "SOFT" 40, "WONK" 1;
    color: #7FDDD5;
}
.ra-hero__sub { color: var(--ra-on-ink-soft); font-size: clamp(1rem, 1.45vw, 1.15rem); max-width: 54ch; }
.ra-hero__actions { margin-top: .4rem; }

/* Spec rail — 4 metrics separated by hairlines, pinned under the hero copy. */
.ra-hero__rail {
    margin-top: clamp(2.25rem, 5vw, 4rem);
    border-top: 1px solid var(--ra-line-ink-2);
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ra-hero__cell {
    padding: 1.1rem 1.1rem 1.1rem 0;
    border-bottom: 1px solid var(--ra-line-ink);
}
.ra-hero__cell:nth-child(odd) { border-right: 1px solid var(--ra-line-ink); padding-left: 0; }
.ra-hero__cell:nth-child(even) { padding-left: 1.1rem; }
.ra-hero__cell .ra-meta__value { font-size: 1.05rem; }

.ra-hero__scroll {
    display: none; position: absolute; right: calc(var(--ra-gut) + 74px); bottom: 9.5rem;
    writing-mode: vertical-rl;
    font-size: .64rem; letter-spacing: .26em; text-transform: uppercase;
    color: var(--ra-on-ink-mut); text-decoration: none;
    align-items: center; gap: .8rem;
}
.ra-hero__scroll::after {
    content: ""; width: 1px; height: 52px; background: var(--ra-line-ink-2);
    animation: ra-drop 2.4s var(--ra-ease) infinite;
}
.ra-hero__scroll:hover { color: #6FD5CD; }
@keyframes ra-drop { 0%,100% { transform: scaleY(.35); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }

@media (min-width: 640px) {
    .ra-hero, .ra-hero__inner { min-height: 600px; }
    .ra-hero__rail { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .ra-hero__cell { padding: 1.2rem 1.25rem; border-right: 1px solid var(--ra-line-ink); border-bottom: 0; }
    .ra-hero__cell:first-child { padding-left: 0; }
    .ra-hero__cell:last-child { border-right: 0; }
    .ra-hero__cell:nth-child(odd), .ra-hero__cell:nth-child(even) { padding-left: 1.25rem; }
    .ra-hero__cell:first-child { padding-left: 0; }
}
@media (min-width: 1024px) { .ra-hero, .ra-hero__inner { min-height: 82vh; } .ra-hero__scroll { display: flex; } }
@media (min-width: 1280px) { .ra-hero, .ra-hero__inner { min-height: 88vh; } }

/* --- 8.2 Trust strip ---------------------------------------------------- */
.ra-trust { border-bottom: 1px solid var(--ra-line); background: var(--ra-paper); }
.ra-trust__inner {
    display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 4vw, 3.25rem);
    flex-wrap: wrap; padding-block: 1.15rem;
}
.ra-trust__item {
    display: inline-flex; align-items: center; gap: .55rem;
    font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ra-text-soft); margin: 0;
}
.ra-trust__item i { color: var(--ra-teal); font-size: 1.05rem; }

/* --- 8.3 Statement + vertical stat numerals ----------------------------- */
.ra-statement { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
@media (min-width: 900px) { .ra-statement { grid-template-columns: 1.35fr .85fr; } }
.ra-statement__body { display: flex; flex-direction: column; gap: 1.5rem; }
.ra-statement__quote {
    font-family: var(--ra-display);
    font-size: clamp(1.5rem, 2.9vw, 2.15rem);
    line-height: 1.34; letter-spacing: -0.015em;
    color: var(--ra-ink); margin: 0; text-wrap: pretty;
}
.ra-statement__quote em { font-style: italic; color: var(--ra-teal-d); font-variation-settings: "SOFT" 40, "WONK" 1; }

.ra-stats { display: flex; flex-direction: column; border-top: 1px solid var(--ra-line); }
.ra-stats__row {
    display: flex; align-items: baseline; gap: 1.15rem;
    padding: 1.15rem 0; border-bottom: 1px solid var(--ra-line);
}
.ra-stats__value {
    font-family: var(--ra-display); font-variant-numeric: tabular-nums;
    font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1;
    color: var(--ra-ink); flex: none; min-width: 4.2ch;
}
.ra-stats__label {
    font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--ra-muted); margin: 0; line-height: 1.5;
}

/* --- 8.4 Index rows (services / charters) ------------------------------- */
.ra-index { border-top: 1px solid var(--ra-line); }
.ra-index__row {
    display: grid; grid-template-columns: auto 1fr; align-items: start;
    gap: 1rem 1.5rem;
    padding: clamp(1.5rem, 3vw, 2.25rem) 0;
    border-bottom: 1px solid var(--ra-line);
    text-decoration: none; color: inherit;
    transition: background-color .4s var(--ra-ease), padding-inline .4s var(--ra-ease);
}
.ra-index__row:hover { background: var(--ra-white); padding-inline: clamp(.5rem, 1.5vw, 1.25rem); }
.ra-index__num { grid-row: span 2; }
.ra-index__title {
    font-family: var(--ra-display); font-size: clamp(1.3rem, 2.3vw, 1.75rem);
    line-height: 1.2; color: var(--ra-ink); margin: 0;
    text-wrap: balance;
    transition: color .3s var(--ra-ease);
}
.ra-index__row:hover .ra-index__title { color: var(--ra-teal-d); }
.ra-index__text { color: var(--ra-text-soft); margin: .4rem 0 0; max-width: 68ch; font-size: .96rem; }
/* The arrow lives in its own cell so a wrapping title never orphans it. */
.ra-index__go {
    display: none; align-items: center; justify-content: flex-end;
    color: var(--ra-teal); font-size: 1.15rem;
    transition: transform .35s var(--ra-ease), color .3s var(--ra-ease);
}
.ra-index__row:hover .ra-index__go { transform: translateX(6px); color: var(--ra-teal-d); }
@media (min-width: 900px) {
    .ra-index__row { grid-template-columns: 5.5rem minmax(0,1fr) minmax(0,1.05fr) 2.25rem; align-items: center; gap: 2rem; }
    .ra-index__num { grid-row: auto; }
    .ra-index__text { margin: 0; }
    .ra-index__go { display: flex; }
}

/* --- 8.5 Bento mosaic (regions) ---------------------------------------- */
.ra-bento { display: grid; gap: clamp(.65rem, 1.2vw, 1rem); grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 900px) { .ra-bento { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: minmax(190px, auto); } }
.ra-tile {
    position: relative; overflow: hidden;
    border-radius: var(--ra-r-xs);
    background: var(--ra-ink);
    text-decoration: none; color: var(--ra-on-ink);
    display: flex; align-items: flex-end;
    min-height: 200px; grid-column: span 2;
}
.ra-tile img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s var(--ra-ease), filter .6s var(--ra-ease);
}
.ra-tile::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top,
        rgba(6,17,16,.95) 0%, rgba(6,17,16,.86) 22%,
        rgba(6,17,16,.55) 52%, rgba(6,17,16,.16) 82%, rgba(6,17,16,.06) 100%);
    transition: background .5s var(--ra-ease);
}
/* Short tiles: the caption fills most of the height, so veil the whole tile. */
.ra-tile--small::after, .ra-tile--wide::after {
    background: linear-gradient(to top,
        rgba(6,17,16,.95) 0%, rgba(6,17,16,.90) 46%,
        rgba(6,17,16,.72) 74%, rgba(6,17,16,.42) 100%);
}
.ra-tile:hover img { transform: scale(1.045); }
.ra-tile:hover::after {
    background: linear-gradient(to top,
        rgba(6,17,16,.96) 0%, rgba(11,58,54,.78) 34%,
        rgba(11,58,54,.50) 66%, rgba(6,17,16,.20) 100%);
}
.ra-tile__body { position: relative; z-index: 1; padding: clamp(1.15rem, 2.2vw, 1.85rem); width: 100%; }
.ra-tile__title { font-family: var(--ra-display); font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.16; margin: 0 0 .35rem; }
.ra-tile__text { font-size: .875rem; line-height: 1.6; color: var(--ra-on-ink-soft); margin: 0; }
.ra-tile__kicker {
    display: inline-flex; align-items: center; gap: .45rem; margin-bottom: .6rem;
    font-size: .62rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; color: #7FDDD5;
}
@media (min-width: 900px) {
    .ra-tile { min-height: 0; }
    .ra-tile--hero  { grid-column: span 2; grid-row: span 2; }
    .ra-tile--tall  { grid-column: span 1; grid-row: span 2; }
    .ra-tile--wide  { grid-column: span 2; grid-row: span 1; }
    .ra-tile--small { grid-column: span 1; grid-row: span 1; }
}

/* --- 8.6 Editorial spreads (alternating image/text) --------------------- */
.ra-spread { display: grid; gap: clamp(1.75rem, 4vw, 3.75rem); align-items: center; }
@media (min-width: 900px) { .ra-spread { grid-template-columns: 1fr 1fr; } }
.ra-spread + .ra-spread { margin-top: clamp(3rem, 6vw, 5.5rem); }
.ra-spread__body { display: flex; flex-direction: column; gap: 1.15rem; }
.ra-spread--flip .ra-spread__media { order: -1; }
@media (min-width: 900px) { .ra-spread--flip .ra-spread__media { order: 2; } }
.ra-spread__media { position: relative; }
.ra-spread__media img { border-radius: var(--ra-r-xs); }
.ra-spread__num {
    display: block;
    padding-bottom: .55rem;
    border-bottom: 1px solid var(--ra-line);
    width: fit-content;
    margin-bottom: .3rem;
}
.ra-spread__index {
    position: absolute; top: -.6rem; left: -.4rem; z-index: 2;
    font-family: var(--ra-display); font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1; color: var(--ra-bone); font-weight: 300;
    text-shadow: 0 2px 24px rgba(11,26,24,.32);
    font-variant-numeric: tabular-nums;
}

/* --- 8.7 Vertical timeline (process / itinerary) ------------------------ */
.ra-timeline { position: relative; padding-left: 2.15rem; }
.ra-timeline::before {
    content: ""; position: absolute; left: 0; top: .55rem; bottom: .55rem;
    width: 1px; background: var(--ra-line);
}
.ra-sec--ink .ra-timeline::before { background: var(--ra-line-ink); }
.ra-tl { position: relative; padding-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }
.ra-tl:last-child { padding-bottom: 0; }
.ra-tl::before {
    content: ""; position: absolute; left: -2.15rem; top: .5rem;
    width: 9px; height: 9px; margin-left: -4px;
    border-radius: 50%; background: var(--ra-bone);
    border: 1px solid var(--ra-teal);
    transition: background-color .3s var(--ra-ease), transform .3s var(--ra-ease);
}
.ra-sec--ink .ra-tl::before { background: var(--ra-ink); }
.ra-tl:hover::before { background: var(--ra-teal); transform: scale(1.25); }
.ra-tl__label {
    display: inline-block; margin: 0 0 .45rem;
    font-size: .66rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--ra-teal-d);
}
.ra-sec--ink .ra-tl__label { color: #6FD5CD; }
.ra-tl__title {
    font-family: var(--ra-display); font-size: clamp(1.15rem, 1.9vw, 1.45rem);
    line-height: 1.22; color: var(--ra-ink); margin: 0 0 .5rem;
}
.ra-sec--ink .ra-tl__title { color: var(--ra-on-ink); }
.ra-tl__text { color: var(--ra-text-soft); margin: 0; font-size: .96rem; max-width: 66ch; }
.ra-sec--ink .ra-tl__text { color: var(--ra-on-ink-soft); }

/* --- 8.8 Feature cells (hairline grid, no boxes) ------------------------ */
.ra-cells { display: grid; gap: 0; border-top: 1px solid var(--ra-line); }
.ra-sec--ink .ra-cells, .ra-sec--ink .ra-cell { border-color: var(--ra-line-ink); }
.ra-cell {
    padding: clamp(1.5rem, 3vw, 2.35rem) 0;
    border-bottom: 1px solid var(--ra-line);
    display: flex; flex-direction: column; gap: .7rem;
}
.ra-cell__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; flex: none;
    border: 1px solid var(--ra-teal-line); border-radius: var(--ra-r-xs);
    color: var(--ra-teal-d); background: var(--ra-teal-wash);
    transition: background-color .3s var(--ra-ease), color .3s var(--ra-ease);
}
.ra-cell__icon i { font-size: 1.15rem; }
.ra-cell:hover .ra-cell__icon { background: var(--ra-teal); color: #fff; }
.ra-cell__title { font-family: var(--ra-display); font-size: 1.2rem; line-height: 1.24; color: var(--ra-ink); margin: 0; }
.ra-sec--ink .ra-cell__title { color: var(--ra-on-ink); }
.ra-cell__text { color: var(--ra-text-soft); font-size: .94rem; margin: 0; }
.ra-sec--ink .ra-cell__text { color: var(--ra-on-ink-soft); }
@media (min-width: 700px) {
    .ra-cells--2 { grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: clamp(1.5rem, 3vw, 3rem); }
    .ra-cells--2 > .ra-cell:nth-child(odd) { padding-right: clamp(1.5rem, 3vw, 3rem); border-right: 1px solid var(--ra-line); }
}
@media (min-width: 1000px) {
    .ra-cells--3 { grid-template-columns: repeat(3, minmax(0,1fr)); column-gap: clamp(1.5rem, 3vw, 3rem); }
    .ra-cells--3 > .ra-cell:not(:nth-child(3n)) { padding-right: clamp(1.5rem, 3vw, 3rem); border-right: 1px solid var(--ra-line); }
    .ra-cells--4 { grid-template-columns: repeat(4, minmax(0,1fr)); column-gap: clamp(1.25rem, 2.4vw, 2.25rem); }
    .ra-cells--4 > .ra-cell:not(:nth-child(4n)) { padding-right: clamp(1.25rem, 2.4vw, 2.25rem); border-right: 1px solid var(--ra-line); }
    .ra-sec--ink .ra-cells > .ra-cell { border-right-color: var(--ra-line-ink); }
}

/* --- 8.9 Fleet ledger ----------------------------------------------------
   The "no photo yet" alternative to the .ra-vessel card grid (8.24): a
   compact spec list with no image slot at all, so there's no placeholder
   tile to read as "missing" — see section-fleet-gallery.php's layout=list.
   Mobile: a simple flex stack. Desktop: a 4-column grid (name+type | length
   | guests/cabins | price), matched by .ra-fleet__head's own labels. */
.ra-fleet { border-top: 1px solid var(--ra-line); }
.ra-fleet__head {
    display: none; grid-template-columns: 1.9fr 1fr 1.15fr .85fr;
    gap: 1.25rem; padding: .85rem 0; border-bottom: 1px solid var(--ra-line);
}
.ra-fleet__head span {
    font-size: .62rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--ra-muted);
}
.ra-fleet__row {
    display: flex; flex-direction: column; gap: .65rem;
    padding: 1.1rem 0; border-bottom: 1px solid var(--ra-line);
    transition: background-color .3s var(--ra-ease), padding-inline .3s var(--ra-ease);
}
.ra-fleet__row:hover { background: var(--ra-white); padding-inline: .85rem; }
.ra-fleet__id { display: flex; align-items: center; gap: .85rem; }
.ra-fleet__mark {
    flex: none; width: 2.35rem; height: 2.35rem; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--ra-bone); color: var(--ra-teal-d); font-size: 1.05rem;
}
.ra-fleet__name {
    font-family: var(--ra-display); font-size: 1.08rem; line-height: 1.2;
    color: var(--ra-ink); margin: 0;
}
.ra-fleet__level {
    display: inline-block; margin-left: .5rem; padding: .15rem .55rem;
    border-radius: var(--ra-r-pill); background: var(--ra-teal-wash); color: var(--ra-teal-d);
    font-family: var(--ra-sans); font-size: .58rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; vertical-align: middle;
}
.ra-fleet__type { font-size: .78rem; color: var(--ra-muted); margin: .15rem 0 0; }
.ra-fleet__mobile { display: flex; gap: 1.25rem; flex-wrap: wrap; padding-left: calc(2.35rem + .85rem); }
.ra-fleet__spec {
    font-size: .8rem; color: var(--ra-text-soft);
    font-variant-numeric: tabular-nums; white-space: nowrap;
}
.ra-fleet__spec-label { font-weight: 600; color: var(--ra-ink); }
.ra-fleet__price {
    padding-left: calc(2.35rem + .85rem);
    font-family: var(--ra-display); font-size: 1rem; color: var(--ra-teal-d);
    font-variant-numeric: tabular-nums;
}
@media (min-width: 860px) {
    .ra-fleet__head { display: grid; }
    .ra-fleet__row { display: grid; grid-template-columns: 1.9fr 1fr 1.15fr .85fr; align-items: center; gap: 1.25rem; }
    .ra-fleet__mobile { display: contents; }
    .ra-fleet__spec-label { display: none; }
    .ra-fleet__price { padding-left: 0; text-align: right; }
}

/* --- 8.10 Pricing tiers ------------------------------------------------- */
.ra-tiers { display: grid; gap: 0; border: 1px solid var(--ra-line); border-radius: var(--ra-r-xs); overflow: hidden; background: var(--ra-white); }
@media (min-width: 900px) { .ra-tiers { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.ra-tier {
    padding: clamp(1.75rem, 3vw, 2.5rem);
    display: flex; flex-direction: column; gap: 1.1rem;
    border-bottom: 1px solid var(--ra-line);
    transition: background-color .35s var(--ra-ease);
}
@media (min-width: 900px) {
    .ra-tier { border-bottom: 0; border-right: 1px solid var(--ra-line); }
    .ra-tier:last-child { border-right: 0; }
}
.ra-tier:last-child { border-bottom: 0; }
.ra-tier--featured { background: var(--ra-ink); color: var(--ra-on-ink); }
.ra-tier--featured .ra-tier__name,
.ra-tier--featured .ra-tier__price { color: var(--ra-on-ink); }
.ra-tier--featured .ra-tier__desc,
.ra-tier--featured .ra-tier__list li { color: var(--ra-on-ink-soft); }
.ra-tier--featured .ra-tier__list i { color: #6FD5CD; }
.ra-tier__flag {
    align-self: flex-start;
    font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    color: var(--ra-ink); background: #7FDDD5; padding: .3rem .6rem; border-radius: var(--ra-r-xs);
}
.ra-tier__name { font-family: var(--ra-display); font-size: 1.5rem; line-height: 1.15; color: var(--ra-ink); margin: 0; }
.ra-tier__price {
    font-family: var(--ra-display); font-size: clamp(1.85rem, 3vw, 2.4rem); line-height: 1;
    color: var(--ra-ink); font-variant-numeric: tabular-nums; margin: 0;
}
.ra-tier__price small { display: block; font-family: var(--ra-sans); font-size: .7rem; font-weight: 600;
    letter-spacing: .16em; text-transform: uppercase; color: var(--ra-muted); margin-top: .5rem; }
.ra-tier--featured .ra-tier__price small { color: var(--ra-on-ink-mut); }
.ra-tier__desc { color: var(--ra-text-soft); font-size: .94rem; margin: 0; }
.ra-tier__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.ra-tier__list li { display: flex; gap: .6rem; font-size: .9rem; color: var(--ra-text-soft); line-height: 1.5; }
.ra-tier__list i { color: var(--ra-teal); font-size: 1rem; flex: none; margin-top: .12rem; }
.ra-tier__foot { margin-top: auto; padding-top: .5rem; }

/* --- 8.11 Includes / excludes ------------------------------------------- */
.ra-incl { display: grid; gap: clamp(1.75rem, 3.5vw, 3rem); }
@media (min-width: 800px) { .ra-incl { grid-template-columns: 1fr 1fr; } }
.ra-incl__col { display: flex; flex-direction: column; gap: 1.05rem; }
.ra-incl__title {
    display: flex; align-items: center; gap: .6rem;
    font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    color: var(--ra-ink); margin: 0; padding-bottom: .85rem; border-bottom: 1px solid var(--ra-line);
}
.ra-incl__title i { font-size: 1.05rem; }
.ra-incl__title--yes i { color: var(--ra-teal); }
.ra-incl__title--no  i { color: var(--ra-muted); }
.ra-incl__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.ra-incl__list li {
    display: flex; gap: .7rem; align-items: flex-start;
    font-size: .95rem; line-height: 1.6; color: var(--ra-text-soft);
}
.ra-incl__list i { font-size: 1rem; flex: none; margin-top: .18rem; }
.ra-incl__list--yes i { color: var(--ra-teal); }
.ra-incl__list--no  i { color: var(--ra-muted); }

/* --- 8.12 Data table ---------------------------------------------------- */
.ra-tablewrap { overflow-x: auto; border: 1px solid var(--ra-line); border-radius: var(--ra-r-xs); background: var(--ra-white); }
.ra-table { width: 100%; border-collapse: collapse; min-width: 620px; font-size: .93rem; }
.ra-table th, .ra-table td { padding: .95rem 1.15rem; text-align: left; border-bottom: 1px solid var(--ra-line-soft); }
.ra-table thead th {
    font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    color: var(--ra-muted); background: var(--ra-paper); border-bottom: 1px solid var(--ra-line);
    white-space: nowrap;
}
.ra-table tbody tr:last-child td { border-bottom: 0; }
.ra-table tbody tr { transition: background-color .25s var(--ra-ease); }
.ra-table tbody tr:hover { background: var(--ra-paper); }
.ra-table td:first-child { font-weight: 600; color: var(--ra-ink); }
.ra-table td { color: var(--ra-text-soft); font-variant-numeric: tabular-nums; }

/* --- 8.13 FAQ: sticky category rail + accordion ------------------------- */
.ra-faq { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 950px) { .ra-faq { grid-template-columns: 17rem 1fr; } }
.ra-faq__rail { display: flex; flex-direction: column; gap: .1rem; }
@media (min-width: 950px) { .ra-faq__rail { position: sticky; top: 110px; } }
.ra-faq__nav { display: flex; flex-direction: column; gap: .1rem; border-top: 1px solid var(--ra-line); }
.ra-faq__pill {
    display: flex; align-items: center; gap: .75rem; width: 100%;
    padding: .95rem .25rem; text-align: left;
    border-bottom: 1px solid var(--ra-line);
    font-size: .88rem; font-weight: 600; color: var(--ra-text-soft);
    transition: color .28s var(--ra-ease), padding-left .28s var(--ra-ease), background-color .28s var(--ra-ease);
}
.ra-faq__pill i { font-size: 1.1rem; color: var(--ra-muted); transition: color .28s var(--ra-ease); flex: none; }
.ra-faq__pill span { flex: 1; min-width: 0; }
.ra-faq__pill small {
    font-variant-numeric: tabular-nums; font-size: .68rem; color: var(--ra-muted);
    font-weight: 700; letter-spacing: .06em;
}
.ra-faq__pill:hover { color: var(--ra-ink); padding-left: .7rem; }
.ra-faq__pill.is-active { color: var(--ra-ink); }
.ra-faq__pill.is-active i { color: var(--ra-teal); }
.ra-faq__pill.is-active::after { content: ""; }
.ra-faq__pill.is-active { box-shadow: inset 2px 0 0 var(--ra-teal); padding-left: .7rem; }

.ra-faq__panel { border-top: 1px solid var(--ra-line); }
.ra-acc { border-bottom: 1px solid var(--ra-line); }
.ra-acc > summary {
    list-style: none; cursor: pointer;
    display: flex; align-items: flex-start; justify-content: space-between; gap: 1.25rem;
    padding: 1.25rem 0;
    transition: color .28s var(--ra-ease);
}
.ra-acc > summary::-webkit-details-marker { display: none; }
.ra-acc__q {
    font-family: var(--ra-display); font-size: clamp(1.02rem, 1.5vw, 1.18rem);
    line-height: 1.35; color: var(--ra-ink); margin: 0; font-weight: 500;
}
.ra-acc__sign {
    flex: none; width: 26px; height: 26px; position: relative; margin-top: .18rem;
    border: 1px solid var(--ra-line-strong); border-radius: 50%;
    transition: border-color .3s var(--ra-ease), background-color .3s var(--ra-ease), transform .35s var(--ra-ease);
}
.ra-acc__sign::before, .ra-acc__sign::after {
    content: ""; position: absolute; top: 50%; left: 50%;
    background: var(--ra-ink); transition: opacity .25s var(--ra-ease), background-color .3s var(--ra-ease);
}
.ra-acc__sign::before { width: 10px; height: 1px; transform: translate(-50%,-50%); }
.ra-acc__sign::after  { width: 1px; height: 10px; transform: translate(-50%,-50%); }
.ra-acc[open] .ra-acc__sign { background: var(--ra-teal); border-color: var(--ra-teal); transform: rotate(90deg); }
.ra-acc[open] .ra-acc__sign::before, .ra-acc[open] .ra-acc__sign::after { background: #fff; }
.ra-acc[open] .ra-acc__sign::after { opacity: 0; }
.ra-acc > summary:hover .ra-acc__q { color: var(--ra-teal-d); }
.ra-acc > summary:hover .ra-acc__sign { border-color: var(--ra-teal); }
.ra-acc__a { padding: 0 3rem 1.4rem 0; color: var(--ra-text-soft); font-size: .97rem; line-height: 1.78; }
.ra-acc__a > *:first-child { margin-top: 0; }
.ra-acc__a p { margin: 0 0 .75rem; }
.ra-acc__a p:last-child { margin-bottom: 0; }

/* --- 8.14 Testimonial pull-quote ---------------------------------------- */
.ra-quote { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .ra-quote { grid-template-columns: .8fr 1.2fr; } }
.ra-quote__stage { display: grid; }
.ra-quote__slide {
    grid-area: 1 / 1; margin: 0;
    display: flex; flex-direction: column; gap: 1.5rem;
    transition: opacity .5s var(--ra-ease);
}
.ra-quote__slide[data-active="false"] { opacity: 0; visibility: hidden; pointer-events: none; }
.ra-quote__text {
    font-family: var(--ra-display); font-style: italic;
    font-variation-settings: "SOFT" 40, "WONK" 1;
    font-size: clamp(1.3rem, 2.5vw, 1.85rem); line-height: 1.42;
    color: var(--ra-on-ink); margin: 0; text-wrap: pretty;
}
.ra-quote__cite { display: flex; flex-direction: column; gap: .2rem; font-style: normal; }
.ra-quote__name { font-size: .82rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: #7FDDD5; }
.ra-quote__role { font-size: .82rem; color: var(--ra-on-ink-mut); }
.ra-quote__dots { display: flex; gap: .5rem; margin-top: 1.75rem; }
.ra-quote__dot {
    width: 28px; height: 2px; background: var(--ra-line-ink-2); border-radius: 2px;
    transition: background-color .3s var(--ra-ease);
}
.ra-quote__dot.is-active { background: #7FDDD5; }
.ra-quote__stars { display: flex; gap: .2rem; color: #7FDDD5; font-size: .95rem; }

/* --- 8.15 Gallery (asymmetric mosaic) ----------------------------------- */
.ra-gallery { display: grid; gap: clamp(.6rem, 1.1vw, .9rem); grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (min-width: 900px) { .ra-gallery { grid-template-columns: repeat(6, minmax(0,1fr)); grid-auto-rows: 150px; } }
.ra-gallery__item { position: relative; overflow: hidden; border-radius: var(--ra-r-xs); background: var(--ra-line-soft); grid-column: span 1; min-height: 150px; }
.ra-gallery__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ra-ease); }
.ra-gallery__item:hover img { transform: scale(1.05); }
.ra-gallery__cap {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
    padding: 1.4rem .95rem .8rem;
    background: linear-gradient(to top, rgba(8,20,18,.86), rgba(8,20,18,0));
    color: var(--ra-on-ink); font-size: .74rem; letter-spacing: .04em;
    opacity: 0; transform: translateY(6px);
    transition: opacity .35s var(--ra-ease), transform .35s var(--ra-ease);
}
.ra-gallery__item:hover .ra-gallery__cap { opacity: 1; transform: none; }
@media (min-width: 900px) {
    .ra-gallery__item { min-height: 0; }
    .ra-gallery__item:nth-child(6n+1) { grid-column: span 3; grid-row: span 2; }
    .ra-gallery__item:nth-child(6n+2) { grid-column: span 3; grid-row: span 1; }
    .ra-gallery__item:nth-child(6n+3) { grid-column: span 1; grid-row: span 1; }
    .ra-gallery__item:nth-child(6n+4) { grid-column: span 2; grid-row: span 1; }
    .ra-gallery__item:nth-child(6n+5) { grid-column: span 2; grid-row: span 2; }
    .ra-gallery__item:nth-child(6n+6) { grid-column: span 4; grid-row: span 1; }
}

/* --- 8.16 Page header --------------------------------------------------- */
.ra-pagehead { position: relative; background: var(--ra-ink); color: var(--ra-on-ink); isolation: isolate; overflow: hidden; }
.ra-pagehead__media { position: absolute; inset: 0; z-index: -2; }
.ra-pagehead__media img { width: 100%; height: 100%; object-fit: cover; }
.ra-pagehead__scrim {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(to right, rgba(6,17,16,.94) 0%, rgba(6,17,16,.82) 48%, rgba(6,17,16,.60) 100%),
        linear-gradient(to top,   rgba(6,17,16,.80) 0%, rgba(6,17,16,.12) 68%);
}
.ra-pagehead__inner {
    padding-block: clamp(3.5rem, 9vw, 7rem);
    display: flex; flex-direction: column; gap: 1.25rem; max-width: 52rem;
}
.ra-pagehead__title { font-size: clamp(2.1rem, 4.8vw, 3.6rem); color: var(--ra-on-ink); }
.ra-crumbs {
    display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
    font-size: .72rem; letter-spacing: .08em; color: var(--ra-on-ink-mut); margin: 0 0 .3rem;
}
.ra-crumbs a { text-decoration: none; color: var(--ra-on-ink-mut); transition: color .25s var(--ra-ease); }
.ra-crumbs a:hover { color: #7FDDD5; }
.ra-crumbs i { font-size: .8rem; opacity: .6; }
.ra-pagehead__facts {
    display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .5rem;
}

/* --- 8.17 CTA band ------------------------------------------------------ */
.ra-cta { position: relative; background: var(--ra-ink); color: var(--ra-on-ink); isolation: isolate; overflow: hidden; }
.ra-cta__media { position: absolute; inset: 0; z-index: -2; }
.ra-cta__media img { width: 100%; height: 100%; object-fit: cover; }
.ra-cta__scrim { position: absolute; inset: 0; z-index: -1; background: rgba(8,20,18,.80); }
.ra-cta__inner {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: 1.35rem; max-width: 46rem; margin-inline: auto;
    padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.ra-cta__title { font-size: clamp(1.9rem, 4.2vw, 3.1rem); color: var(--ra-on-ink); }
.ra-cta__note { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ra-on-ink-mut); margin: .35rem 0 0; }

/* --- 8.18 Concierge / lead card ---------------------------------------- */
.ra-concierge {
    border: 1px solid var(--ra-line); border-radius: var(--ra-r-xs);
    background: var(--ra-white); padding: clamp(1.5rem, 2.6vw, 2.15rem);
    display: flex; flex-direction: column; gap: 1.15rem;
}
@media (min-width: 950px) { .ra-concierge { position: sticky; top: 110px; } }
.ra-concierge__who { display: flex; align-items: center; gap: .9rem; }
.ra-concierge__avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; background: var(--ra-line-soft); }
.ra-concierge__name { font-family: var(--ra-display); font-size: 1.1rem; line-height: 1.2; color: var(--ra-ink); margin: 0; }
.ra-concierge__role { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ra-muted); margin: .2rem 0 0; }
.ra-concierge__text { font-size: .93rem; color: var(--ra-text-soft); margin: 0; }
.ra-concierge__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.ra-concierge__list li { display: flex; gap: .55rem; font-size: .86rem; color: var(--ra-text-soft); }
.ra-concierge__list i { color: var(--ra-teal); flex: none; font-size: .95rem; margin-top: .15rem; }

/* --- 8.19 Inquiry form -------------------------------------------------- */
.ra-form { display: grid; gap: 1rem; }
.ra-field { display: flex; flex-direction: column; gap: .45rem; min-width: 0; }
.ra-field__label {
    font-size: .66rem; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: var(--ra-muted);
}
.ra-input, .ra-select, .ra-textarea {
    width: 100%; padding: .8rem .95rem;
    background: var(--ra-white); color: var(--ra-text);
    border: 1px solid var(--ra-line); border-radius: var(--ra-r-xs);
    font-size: .95rem; line-height: 1.5;
    transition: border-color .25s var(--ra-ease), box-shadow .25s var(--ra-ease);
}
.ra-input::placeholder, .ra-textarea::placeholder { color: var(--ra-muted); }
.ra-input:focus, .ra-select:focus, .ra-textarea:focus {
    outline: none;
    border-color: var(--ra-teal);
    box-shadow: 0 0 0 3px var(--ra-teal-wash);
}
/* Keyboard users still get the full ring; the glow above is the mouse state. */
.ra-input:focus-visible, .ra-select:focus-visible, .ra-textarea:focus-visible {
    outline: 2px solid var(--ra-teal-l);
    outline-offset: 2px;
}
.ra-textarea { min-height: 120px; resize: vertical; }
.ra-select { appearance: none; background-image: none; }
.ra-form__row { display: grid; gap: 1rem; }
@media (min-width: 620px) { .ra-form__row--2 { grid-template-columns: 1fr 1fr; } }
.ra-form__note { font-size: .78rem; color: var(--ra-muted); margin: 0; }

/* --- 8.20 Journal cards ------------------------------------------------- */
.ra-posts { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 700px)  { .ra-posts { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1040px) { .ra-posts { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.ra-post { display: flex; flex-direction: column; gap: 1rem; text-decoration: none; color: inherit; }
.ra-post__media { position: relative; overflow: hidden; border-radius: var(--ra-r-xs); aspect-ratio: 3/2; background: var(--ra-line-soft); }
.ra-post__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ra-ease); }
.ra-post:hover .ra-post__media img { transform: scale(1.045); }
.ra-post__date { font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ra-muted); }
.ra-post__title {
    font-family: var(--ra-display); font-size: 1.22rem; line-height: 1.26; color: var(--ra-ink);
    margin: 0; transition: color .28s var(--ra-ease);
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.ra-post:hover .ra-post__title { color: var(--ra-teal-d); }
.ra-post__excerpt {
    font-size: .92rem; color: var(--ra-text-soft); margin: 0;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* --- 8.20a Blog search ---------------------------------------------------
   Reuses the .ra-input look (see 8.19) so it matches every other form field
   on the site; only the pill radius and icon padding are search-specific. */
.ra-search { max-width: 32rem; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.ra-search__row { position: relative; }
.ra-search__icon {
    position: absolute; top: 50%; left: 1.1rem; transform: translateY(-50%);
    color: var(--ra-muted); font-size: 1.05rem; pointer-events: none;
}
.ra-search__input.ra-input {
    padding-left: 2.75rem; padding-right: 3.25rem; border-radius: var(--ra-r-pill);
}
.ra-search__submit {
    position: absolute; top: 50%; right: .35rem; transform: translateY(-50%);
    width: 2.35rem; height: 2.35rem; display: inline-flex; align-items: center; justify-content: center;
    border: 0; border-radius: 50%; background: var(--ra-ink); color: var(--ra-on-ink);
    cursor: pointer; transition: background-color .25s var(--ra-ease);
}
.ra-search__submit:hover { background: var(--ra-teal-d); }
.ra-search__submit:focus-visible { outline: 2px solid var(--ra-teal-l); outline-offset: 2px; }
.ra-search__submit i { font-size: 1.05rem; }
.ra-search__meta { text-align: center; font-size: .92rem; color: var(--ra-text-soft); margin: -1rem 0 clamp(1.5rem, 3vw, 2rem); }
.ra-search__meta strong { color: var(--ra-ink); }
.ra-search__meta a { color: var(--ra-teal-d); }

/* --- 8.20b Pagination ----------------------------------------------------
   Styles WordPress's own the_posts_pagination() markup (.page-numbers) —
   unstyled by default, which is why it looked broken. */
.navigation.pagination .nav-links {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .5rem;
}
.page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 2.75rem; height: 2.75rem; padding: 0 1rem;
    border: 1px solid var(--ra-line); border-radius: var(--ra-r-pill);
    background: var(--ra-white); color: var(--ra-text);
    font-size: .84rem; font-weight: 600; text-decoration: none;
    transition: background-color .25s var(--ra-ease), color .25s var(--ra-ease),
                border-color .25s var(--ra-ease), transform .25s var(--ra-ease);
}
a.page-numbers:hover, button.page-numbers:hover:not(:disabled) {
    border-color: var(--ra-ink); background: var(--ra-ink); color: var(--ra-on-ink);
    transform: translateY(-2px);
}
a.page-numbers:focus-visible, button.page-numbers:focus-visible {
    outline: 2px solid var(--ra-teal-l); outline-offset: 2px;
}
.page-numbers.current {
    background: var(--ra-ink); border-color: var(--ra-ink); color: var(--ra-on-ink); cursor: default;
}
.page-numbers.dots { border-color: transparent; background: transparent; color: var(--ra-muted); }
.page-numbers.prev, .page-numbers.next { padding: 0 1.35rem; }
button.page-numbers:disabled { opacity: .4; cursor: not-allowed; }
/* JS-driven pagination (e.g. the vessel grid) starts hidden until script
   decides whether there's more than one page. */
[data-vessel-pagination] { margin-top: clamp(1.5rem, 3vw, 2.25rem); }

/* --- 8.21 Article ------------------------------------------------------- */
.ra-article__head { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 3vw, 2.25rem); }
.ra-article__head .ra-eyebrow { margin-bottom: 1rem; }
.ra-article__title { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.ra-article__media { margin-bottom: clamp(2rem, 4vw, 3rem); }
.ra-article__media img { aspect-ratio: 16/9; object-fit: cover; width: 100%; border-radius: var(--ra-r-xs); }
.ra-article .ra-prose { padding-bottom: clamp(3rem, 7vw, 5.5rem); }

/* --- 8.22 404 ----------------------------------------------------------- */
.ra-404__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.35rem; }
.ra-404__code { font-size: clamp(4.5rem, 14vw, 9rem); color: var(--ra-line-strong); line-height: .9; }
.ra-404__title { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.ra-404 .ra-lede { margin-inline: auto; }

/* --- 8.23 Empty state --------------------------------------------------- */
.ra-empty {
    border: 1px dashed var(--ra-line-strong); border-radius: var(--ra-r-xs);
    padding: clamp(2rem, 5vw, 3.5rem); text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: .9rem;
}
.ra-empty i { font-size: 1.9rem; color: var(--ra-muted); }
.ra-empty__title { font-family: var(--ra-display); font-size: 1.3rem; color: var(--ra-ink); margin: 0; }
.ra-empty__text { color: var(--ra-text-soft); font-size: .95rem; margin: 0; max-width: 44ch; }

/* 9. FOOTER ============================================================== */
.ra-footer { background: var(--ra-ink); color: var(--ra-on-ink-soft); }
.ra-footer a { text-decoration: none; color: inherit; }

.ra-footer__lead {
    display: grid; gap: clamp(2rem, 4vw, 3.5rem);
    padding-block: clamp(3rem, 6vw, 4.75rem);
    border-bottom: 1px solid var(--ra-line-ink);
}
@media (min-width: 900px) { .ra-footer__lead { grid-template-columns: 1.15fr 1fr; align-items: center; } }
.ra-footer__leadtitle { font-size: clamp(1.6rem, 3.2vw, 2.35rem); color: var(--ra-on-ink); }

.ra-footer__grid {
    display: grid; gap: clamp(2rem, 4vw, 3rem);
    padding-block: clamp(2.75rem, 5vw, 4rem);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 520px) { .ra-footer__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 700px)  { .ra-footer__grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1024px) { .ra-footer__grid { grid-template-columns: 1.5fr repeat(3, minmax(0,1fr)); } }
.ra-footer__brandcol { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 1.15rem; }
@media (min-width: 1024px) { .ra-footer__brandcol { grid-column: auto; } }
.ra-footer__logo { height: 44px; width: auto; object-fit: contain; }
.ra-footer__about { font-size: .89rem; line-height: 1.75; margin: 0; max-width: 40ch; }
.ra-footer__coltitle {
    font-size: .64rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    color: var(--ra-on-ink); margin: 0 0 1.15rem; padding-bottom: .7rem;
    border-bottom: 1px solid var(--ra-line-ink);
}
.ra-footer__grid > * { min-width: 0; }
.ra-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.ra-footer__list a { overflow-wrap: anywhere; }
.ra-footer__list a {
    font-size: .875rem; line-height: 1.5;
    transition: color .25s var(--ra-ease), padding-left .25s var(--ra-ease);
    display: inline-block;
}
.ra-footer__list a:hover { color: #7FDDD5; padding-left: .3rem; }
.ra-footer__contact { display: grid; gap: .85rem; min-width: 0; }
.ra-footer__contact a, .ra-footer__contact p {
    display: flex; gap: .65rem; align-items: flex-start; font-size: .875rem; margin: 0; line-height: 1.55;
    min-width: 0;
}
.ra-footer__contact a > span, .ra-footer__contact p > span {
    min-width: 0; overflow-wrap: anywhere;
}
.ra-footer__contact i { color: #7FDDD5; font-size: 1rem; flex: none; margin-top: .12rem; }
.ra-footer__contact a:hover { color: #7FDDD5; }

.ra-footer__socials { display: flex; gap: .5rem; }
.ra-footer__social {
    width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--ra-line-ink-2); border-radius: var(--ra-r-xs);
    transition: background-color .25s var(--ra-ease), color .25s var(--ra-ease), border-color .25s var(--ra-ease);
}
.ra-footer__social:hover { background: #7FDDD5; color: var(--ra-ink); border-color: #7FDDD5; }

/* Partner network — fixed cells on a hairline grid so logos of very different
   aspect ratios still read at one optical size. The marks are already light
   versions for a dark ground, so no colour filter is applied. */
.ra-network {
    padding-block: clamp(2.25rem, 4vw, 3.25rem);
    border-top: 1px solid var(--ra-line-ink);
}
.ra-network__head {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: .7rem; max-width: 44rem; margin: 0 auto clamp(1.75rem, 3vw, 2.5rem);
}
.ra-network__title {
    font-size: clamp(1.35rem, 2.4vw, 1.85rem); color: var(--ra-on-ink); margin: 0;
}
.ra-network__text {
    font-size: .875rem; line-height: 1.75; color: var(--ra-on-ink-mut); margin: 0;
}

.ra-network__grid {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--ra-line-ink);
    border-left: 1px solid var(--ra-line-ink);
}
@media (min-width: 560px) { .ra-network__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.ra-network__cell {
    border-right: 1px solid var(--ra-line-ink);
    border-bottom: 1px solid var(--ra-line-ink);
    min-width: 0;
}
.ra-network__link {
    display: flex; align-items: center; justify-content: center;
    height: clamp(84px, 9vw, 108px); padding: 1.1rem 1.35rem;
    text-decoration: none;
    transition: background-color .3s var(--ra-ease);
}
.ra-network__link img {
    max-height: 100%; max-width: 100%; width: auto; height: auto;
    object-fit: contain;
    opacity: .78;
    transition: opacity .3s var(--ra-ease), transform .3s var(--ra-ease);
}
a.ra-network__link:hover { background: rgba(237,233,223,.045); }
a.ra-network__link:hover img { opacity: 1; transform: scale(1.05); }
a.ra-network__link:focus-visible { background: rgba(237,233,223,.06); }
@media (prefers-reduced-motion: reduce) {
    a.ra-network__link:hover img { transform: none; }
}

.ra-footer__bottom {
    display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap;
    padding-block: 1.5rem; border-top: 1px solid var(--ra-line-ink);
    font-size: .78rem; color: var(--ra-on-ink-mut);
}
.ra-footer__legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.ra-footer__legal a:hover { color: #7FDDD5; }

/* Floating WhatsApp */
.ra-wa {
    position: fixed; right: 1rem; z-index: 80;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    width: 54px; height: 54px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--ra-teal); color: #fff; text-decoration: none;
    box-shadow: 0 12px 32px -10px rgba(19,122,115,.65);
    transition: transform .3s var(--ra-ease), background-color .3s var(--ra-ease);
}
.ra-wa i { font-size: 1.6rem; }
.ra-wa:hover { transform: translateY(-3px) scale(1.04); background: var(--ra-teal-d); }

/* 10. MOTION ============================================================= */
.ra-reveal {
    opacity: 0; transform: translateY(12px);
    transition: opacity .5s ease-out, transform .55s var(--ra-ease);
    will-change: opacity, transform;
}
.ra-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .ra-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

/* Utilities */
.ra-hide { display: none !important; }
@media (max-width: 767px)  { .ra-hide-sm { display: none !important; } }
@media (max-width: 1023px) { .ra-hide-md { display: none !important; } }
.ra-sr, .screen-reader-text {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.ra-mt-lg { margin-top: clamp(2rem, 4vw, 3.25rem); }
.ra-mt    { margin-top: clamp(1.5rem, 3vw, 2.25rem); }
.ra-center { text-align: center; }

/* --- 8.24 Vessel cards (Signature Fleet) -------------------------------- */
.ra-vessels {
    display: grid; gap: clamp(1.1rem, 2vw, 1.75rem);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 620px)  { .ra-vessels { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .ra-vessels { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.ra-vessel {
    display: flex; flex-direction: column;
    background: var(--ra-white);
    border: 1px solid var(--ra-line);
    border-radius: var(--ra-r-xs);
    overflow: hidden;
    transition: border-color .35s var(--ra-ease), box-shadow .35s var(--ra-ease),
                transform .35s var(--ra-ease);
}
.ra-vessel:hover {
    border-color: var(--ra-line-strong);
    box-shadow: var(--ra-shadow);
    transform: translateY(-3px);
}

.ra-vessel__media {
    position: relative; overflow: hidden;
    aspect-ratio: 16 / 9; background: var(--ra-line-soft);
}
.ra-vessel__media img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.1s var(--ra-ease);
}
.ra-vessel:hover .ra-vessel__media img { transform: scale(1.045); }

.ra-vessel__level {
    position: absolute; top: .8rem; left: .8rem; z-index: 1;
    padding: .32rem .6rem;
    background: rgba(6,17,16,.78);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    color: #7FDDD5;
    font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    border-radius: var(--ra-r-xs);
}

.ra-vessel__body {
    display: flex; flex-direction: column;
    padding: clamp(1.05rem, 1.8vw, 1.4rem);
    flex: 1;
}
.ra-vessel__name {
    font-family: var(--ra-display); font-size: 1.28rem; line-height: 1.18;
    color: var(--ra-ink); margin: 0; letter-spacing: -0.012em;
}
.ra-vessel__type {
    font-size: .78rem; color: var(--ra-muted); margin: .3rem 0 0; line-height: 1.4;
    min-height: 2.2em;
}

/* Spec strip: three hairline-separated figures. */
.ra-vessel__specs {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 1.05rem 0 0; padding-top: .9rem;
    border-top: 1px solid var(--ra-line-soft);
}
.ra-vessel__spec { padding-right: .6rem; }
.ra-vessel__spec + .ra-vessel__spec {
    padding-left: .75rem; border-left: 1px solid var(--ra-line-soft);
}
.ra-vessel__spec dt {
    font-size: .58rem; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: var(--ra-muted); margin: 0 0 .2rem;
}
.ra-vessel__spec dd {
    margin: 0; font-family: var(--ra-display); font-size: 1.02rem;
    line-height: 1.1; color: var(--ra-ink);
}
.ra-vessel__price {
    margin: auto 0 0; padding-top: 1rem;
    display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap;
    font-family: var(--ra-display); font-size: 1.08rem; color: var(--ra-teal-d);
}
.ra-vessel__price small {
    font-family: var(--ra-sans); font-size: .62rem; font-weight: 700;
    letter-spacing: .13em; text-transform: uppercase; color: var(--ra-muted);
}

/* Vessels without photography yet: an intentional placeholder, not a
   broken-image look. */
.ra-vessel__media.is-placeholder {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(160deg, var(--ra-ink-2), var(--ra-ink));
}
.ra-vessel__media.is-placeholder i { font-size: 2rem; color: var(--ra-on-ink-mut); }

/* --- 8.24b Vessel search & filter ---------------------------------------
   Reuses the .ra-search__row/__icon/__input mechanics from blog search
   (8.20a) so the two search bars on the site feel like one system; only the
   pill-button filter row and the results count are new here. */
.ra-vessel-filters {
    display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
    justify-content: space-between;
}
.ra-vessel-search { flex: 1 1 260px; max-width: 22rem; }
.ra-vessel-search .ra-search__input { padding-right: .95rem; }
.ra-vessel-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.ra-vessel-chip {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .55rem 1rem; margin: 0;
    border: 1px solid var(--ra-line); border-radius: var(--ra-r-pill);
    background: var(--ra-white); color: var(--ra-text-soft);
    font-size: .78rem; font-weight: 600; letter-spacing: .02em;
    cursor: pointer;
    transition: background-color .22s var(--ra-ease), color .22s var(--ra-ease), border-color .22s var(--ra-ease);
}
.ra-vessel-chip:hover { border-color: var(--ra-line-strong); }
.ra-vessel-chip.is-active { background: var(--ra-ink); border-color: var(--ra-ink); color: var(--ra-on-ink); }
.ra-vessel-chip.is-active small { opacity: .75; }
.ra-vessel-chip small { opacity: .65; }
.ra-vessel-count { font-size: .8rem; color: var(--ra-muted); margin: 0; min-height: 1.2em; }

/* 11. VESSEL PAGE ======================================================== */
/* One vessel, one page (single-ra_vessel.php). Everything here reuses the
   existing tokens and the hairline-rule device — a vessel page should read
   as another spread in the same publication, not a product listing. */

/* --- Hero --------------------------------------------------------------- */

.ra-vhero {
    position: relative;
    background: var(--ra-ink);
    color: var(--ra-on-ink);
    isolation: isolate;
    overflow: hidden;
}
.ra-vhero__media { position: absolute; inset: 0; z-index: -2; }
.ra-vhero__media img { width: 100%; height: 100%; object-fit: cover; }
.ra-vhero__scrim {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(to right, rgba(6,17,16,.93) 0%, rgba(6,17,16,.78) 52%, rgba(6,17,16,.52) 100%),
        linear-gradient(to top,   rgba(6,17,16,.86) 0%, rgba(6,17,16,.10) 70%);
}
.ra-vhero__inner {
    padding-block: clamp(3.25rem, 8vw, 6.5rem);
    display: flex; flex-direction: column; gap: 1.5rem;
}

.ra-vhero__grid {
    display: grid;
    gap: clamp(1.75rem, 4vw, 3.5rem);
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
}
@media (min-width: 980px) {
    .ra-vhero__grid { grid-template-columns: minmax(0, 1fr) 20rem; }
}

.ra-vhero__id { display: flex; flex-direction: column; gap: 1.1rem; max-width: 44rem; }
.ra-vhero__title { font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.02; }
.ra-vhero__facts { display: flex; flex-wrap: wrap; gap: .5rem; }
.ra-vhero__facts .ra-tag {
    border-color: var(--ra-line-ink-2);
    color: var(--ra-on-ink-soft);
    background: rgba(237,233,223,.05);
    backdrop-filter: blur(2px);
}

/* The booking rail: a quiet slab, not a bright CTA box. */
.ra-vhero__book {
    padding: clamp(1.25rem, 2.4vw, 1.75rem);
    border: 1px solid var(--ra-line-ink-2);
    border-radius: var(--ra-r);
    background: rgba(8,20,18,.55);
    backdrop-filter: blur(8px);
}
.ra-vhero__from {
    display: block;
    font-size: .66rem; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: var(--ra-on-ink-mut);
}
.ra-vhero__price {
    margin: .35rem 0 0;
    font-family: var(--ra-display);
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    line-height: 1.05; color: var(--ra-on-ink);
    font-variant-numeric: tabular-nums;
}
.ra-vhero__note {
    margin: .5rem 0 0;
    font-size: .78rem; line-height: 1.5; color: var(--ra-on-ink-mut);
}
.ra-vhero__actions {
    display: flex; flex-direction: column; gap: .55rem;
    margin-top: 1.15rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--ra-line-ink);
}
.ra-vhero__actions .ra-btn { justify-content: center; }

/* --- Story + spec ledger ------------------------------------------------ */

.ra-vspecs {
    display: grid;
    gap: clamp(2rem, 4vw, 4rem);
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}
@media (min-width: 980px) {
    .ra-vspecs { grid-template-columns: minmax(0, 1fr) 22rem; }
}

.ra-vspecs__story { display: flex; flex-direction: column; gap: .9rem; }

.ra-vspecs__panel {
    padding: clamp(1.35rem, 2.6vw, 1.9rem);
    border: 1px solid var(--ra-line);
    border-radius: var(--ra-r);
    background: var(--ra-paper);
}
@media (min-width: 980px) { .ra-vspecs__panel { position: sticky; top: 6.5rem; } }

.ra-vspecs__title {
    margin: 0 0 .35rem;
    font-family: var(--ra-sans);
    font-size: .68rem; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: var(--ra-muted);
}
.ra-vspecs__list { margin: 0; }
.ra-vspecs__row {
    display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
    padding: .68rem 0;
    border-bottom: 1px solid var(--ra-line-soft);
}
.ra-vspecs__row:last-child { border-bottom: 0; }
.ra-vspecs__row dt {
    font-size: .72rem; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; color: var(--ra-muted);
}
.ra-vspecs__row dd {
    margin: 0; text-align: right;
    font-size: .92rem; font-weight: 600; color: var(--ra-text);
}
.ra-vspecs__price {
    display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
    margin: .9rem 0 0; padding-top: .9rem;
    border-top: 1px solid var(--ra-line);
    font-family: var(--ra-display); font-size: 1.4rem; color: var(--ra-ink);
}
.ra-vspecs__pricelabel {
    font-family: var(--ra-sans); font-size: .66rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--ra-muted);
}
.ra-vspecs__cta { width: 100%; justify-content: center; margin-top: 1rem; }

/* --- Cabin / facility cards --------------------------------------------- */

.ra-rooms {
    display: grid; gap: clamp(1.1rem, 2vw, 1.75rem);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 620px)  { .ra-rooms { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .ra-rooms { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.ra-room {
    display: flex; flex-direction: column;
    background: var(--ra-white);
    border: 1px solid var(--ra-line);
    border-radius: var(--ra-r-xs);
    overflow: hidden;
    transition: border-color .35s var(--ra-ease), box-shadow .35s var(--ra-ease),
                transform .35s var(--ra-ease);
}
.ra-room:hover {
    border-color: var(--ra-line-strong);
    box-shadow: var(--ra-shadow);
    transform: translateY(-3px);
}
.ra-room__media {
    position: relative; overflow: hidden;
    aspect-ratio: 3 / 2; background: var(--ra-line-soft);
}
.ra-room__media img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.1s var(--ra-ease);
}
.ra-room:hover .ra-room__media img { transform: scale(1.045); }
.ra-room__media.is-placeholder {
    display: grid; place-items: center;
    color: var(--ra-line-strong); font-size: 2rem;
}
.ra-room__body {
    display: flex; flex-direction: column; gap: .4rem;
    padding: clamp(1rem, 1.8vw, 1.35rem);
}
.ra-room__title {
    margin: 0;
    font-family: var(--ra-display);
    font-size: 1.12rem; line-height: 1.25; color: var(--ra-ink);
}
.ra-room__text {
    margin: 0;
    font-size: .88rem; line-height: 1.65; color: var(--ra-text-soft);
}

/* --- Voyage notes ------------------------------------------------------- */

.ra-notes {
    display: grid; gap: 0;
    grid-template-columns: minmax(0, 1fr);
    border-top: 1px solid var(--ra-line-ink);
}
@media (min-width: 720px)  { .ra-notes { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .ra-notes { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.ra-note {
    display: flex; flex-direction: column; gap: .5rem;
    padding: clamp(1.4rem, 2.6vw, 2rem) clamp(1rem, 2vw, 1.6rem);
    border-bottom: 1px solid var(--ra-line-ink);
}
@media (min-width: 720px) {
    .ra-note { border-right: 1px solid var(--ra-line-ink); }
    .ra-note:nth-child(2n) { border-right: 0; }
}
@media (min-width: 1040px) {
    .ra-note { border-right: 1px solid var(--ra-line-ink); }
    .ra-note:nth-child(2n) { border-right: 1px solid var(--ra-line-ink); }
    .ra-note:last-child { border-right: 0; }
}
.ra-note__icon { font-size: 1.35rem; color: var(--ra-teal-l); }
.ra-note__label {
    font-size: .66rem; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: var(--ra-on-ink-mut);
}
.ra-note__value {
    margin: 0;
    font-family: var(--ra-display);
    font-size: 1.05rem; line-height: 1.4; color: var(--ra-on-ink);
}

/* --- Card links --------------------------------------------------------- */
/* Vessel cards became links once each vessel had a page. The anchor wraps the
   whole card, so the reset here stops it inheriting link colour/underline and
   flattening the card's own typography. */

.ra-vessel__link {
    display: flex; flex-direction: column; flex: 1;
    color: inherit; text-decoration: none;
    background-image: none;
}
.ra-vessel__link:hover { color: inherit; }
.ra-vessel__link:focus-visible {
    outline: 2px solid var(--ra-teal);
    outline-offset: 3px;
}
.ra-vessel__more {
    display: inline-flex; align-items: center; gap: .35rem;
    margin-top: auto; padding-top: .85rem;
    border-top: 1px solid var(--ra-line-soft);
    font-size: .72rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--ra-teal);
}
/* .ra-vessel__price already carries `margin: auto 0 0` to reach the card foot.
   Two auto margins would split the free space between them and neither would
   get there, so when a price is present this row simply follows it. */
.ra-vessel__price + .ra-vessel__more { margin-top: .85rem; }
.ra-vessel:hover .ra-vessel__more { color: var(--ra-teal-d); }
.ra-vessel__more i { transition: transform .3s var(--ra-ease); }
.ra-vessel:hover .ra-vessel__more i { transform: translateX(3px); }

/* The fleet ledger rows link through too. */
.ra-fleet__row a.ra-fleet__id { color: inherit; text-decoration: none; background-image: none; }
.ra-fleet__row a.ra-fleet__id:hover .ra-fleet__name { color: var(--ra-teal); }

.ra-vhero__unit {
    margin: .3rem 0 0;
    font-size: .7rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--ra-on-ink-soft);
}
.ra-vspecs__unit {
    margin: .2rem 0 0; text-align: right;
    font-size: .68rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--ra-muted);
}

/* A vessel still awaiting its copy shows the ledger on its own, centred,
   rather than beside an empty column. */
.ra-vspecs--solo { grid-template-columns: minmax(0, 1fr); justify-items: center; }
.ra-vspecs--solo .ra-vspecs__panel { width: min(100%, 30rem); position: static; }


/* --- Vessel rail: swipeable on touch, a grid on wider screens ------------ */
/* The gesture is native CSS scroll-snap rather than a script, so it inherits
   the platform's own momentum and never fights the browser's back-swipe. */

.ra-rail {
    display: flex;
    gap: clamp(.85rem, 2.5vw, 1.25rem);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    /* Bleed to the viewport edge, then pad back in, so the first card lines up
       with the heading while the next one still peeks past the screen edge —
       the visual cue that there is more to swipe. */
    margin-inline: calc(var(--ra-gut) * -1);
    padding-inline: var(--ra-gut);
    /* Snapping ignores the padding above unless scroll-padding says otherwise:
       without this the first card sits on the gutter but every card after it
       snaps flush against the screen edge. Keep the two values in step. */
    scroll-padding-inline: var(--ra-gut);
    padding-bottom: .5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.ra-rail::-webkit-scrollbar { display: none; }
.ra-rail:focus-visible { outline: 2px solid var(--ra-teal); outline-offset: 4px; }

.ra-rail > .ra-vessel {
    flex: 0 0 min(80%, 20rem);
    scroll-snap-align: start;
}

/* Dots are a position readout for the rail; the grid has no use for them. */
.ra-rail__dots {
    display: flex; justify-content: center; gap: .45rem;
    margin-top: 1.1rem;
}
.ra-rail__dot {
    width: 22px; height: 2px; padding: 0;
    border: 0; border-radius: 2px;
    background: var(--ra-line-strong);
    cursor: pointer;
    transition: background-color .3s var(--ra-ease), width .3s var(--ra-ease);
}
.ra-rail__dot.is-active { width: 34px; background: var(--ra-teal); }
.ra-rail__dot:focus-visible { outline: 2px solid var(--ra-teal); outline-offset: 3px; }

@media (min-width: 720px) {
    .ra-rail {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
        margin-inline: 0;
        padding-inline: 0;
        padding-bottom: 0;
    }
    .ra-rail > .ra-vessel { flex: none; }
    .ra-rail__dots { display: none; }
}

@media (min-width: 1100px) {
    .ra-rail { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
