:root {
    --navy: #071f33;
    --navy-2: #0d304a;
    --navy-3: #16435f;
    --teal: #1bb3a9;
    --teal-dark: #0b6b83;
    --coral: #ff775e;
    --sand: #f4efe5;
    --paper: #fffdf8;
    --white: #ffffff;
    --ink: #102433;
    --muted: #62717d;
    --line: #dbe4e8;
    --shadow: 0 24px 70px rgba(7, 31, 51, 0.14);
    --radius: 22px;
    --shell: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

.shell { width: var(--shell); margin-inline: auto; }
.section-space { padding: 110px 0; }
.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 1000;
    padding: 10px 16px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.skip-link:focus { top: 16px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    border-bottom: 1px solid rgba(7, 31, 51, 0.08);
    background: rgba(255, 253, 248, 0.93);
    backdrop-filter: blur(18px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { width: 210px; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: 0.93rem; font-weight: 700; }
.site-nav a { text-decoration: none; position: relative; }
.site-nav a:not(.nav-instagram)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .2s ease;
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-instagram { color: var(--coral); }
.nav-toggle { display: none; border: 0; background: transparent; font-weight: 800; color: var(--navy); }

.eyebrow {
    margin: 0 0 15px;
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 30%, rgba(27, 179, 169, .22), transparent 30%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #0b5065 100%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to right, transparent, black 50%);
}
.hero-grid { position: relative; min-height: 700px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; padding-top: 70px; padding-bottom: 100px; }
.hero-copy { max-width: 690px; }
.hero .eyebrow { color: #61d6cf; }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(3.2rem, 7.4vw, 6.7rem); line-height: .93; letter-spacing: -.065em; }
.hero-lead { max-width: 670px; margin: 30px 0 0; color: #d9e8ee; font-size: clamp(1.08rem, 2vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 850;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy); background: var(--coral); box-shadow: 0 12px 30px rgba(255, 119, 94, .26); }
.button-primary:hover { background: #ff8c76; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.05); }
.button-secondary { color: var(--navy); border-color: var(--line); background: var(--white); }
.button-small { min-height: 42px; padding: 8px 16px; font-size: .9rem; }
.hero-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 46px 0 0; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(255,255,255,.13); }
.hero-facts div { padding: 17px 18px; background: rgba(7,31,51,.72); }
.hero-facts dt { color: #8fb4c3; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.hero-facts dd { margin: 3px 0 0; font-size: .95rem; font-weight: 800; }
.hero-visual { position: relative; min-height: 480px; display: grid; place-items: center; }
.hero-compass { position: relative; width: min(440px, 100%); aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.hero-compass::before, .hero-compass::after { content: ""; position: absolute; inset: 10%; border: 1px dashed rgba(255,255,255,.17); border-radius: 50%; }
.hero-compass::after { inset: 22%; }
.hero-compass > span { position: absolute; top: -12px; font-weight: 900; letter-spacing: .18em; color: #61d6cf; }
.hero-compass img { width: 58%; filter: drop-shadow(0 30px 35px rgba(0,0,0,.25)); animation: float 5s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-12px) rotate(1deg); } }
.status-card { position: absolute; right: 0; bottom: 32px; display: flex; align-items: center; gap: 13px; min-width: 250px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; background: rgba(7,31,51,.84); box-shadow: var(--shadow); backdrop-filter: blur(16px); }
.status-card strong, .status-card span { display: block; }
.status-card span:not(.status-dot) { color: #9bbac7; font-size: .78rem; }
.status-dot { width: 11px; height: 11px; border-radius: 50%; background: #61d6cf; box-shadow: 0 0 0 8px rgba(97,214,207,.12); }
.wave-divider { position: absolute; right: -5%; bottom: -36px; left: -5%; height: 88px; border-radius: 50% 50% 0 0 / 100% 100% 0 0; background: var(--paper); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-heading h2, .project-story h2, .guestbook-section h2, .single-post h1 { margin: 0; color: var(--navy); font-size: clamp(2.3rem, 5vw, 4.5rem); line-height: 1.02; letter-spacing: -.045em; }
.section-heading p:not(.eyebrow) { max-width: 700px; margin: 16px 0 0; color: var(--muted); }
.tracking-section { background: var(--paper); }
.tracking-heading { align-items: center; }
.live-badge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid rgba(27,179,169,.28); border-radius: 999px; color: var(--teal-dark); background: rgba(27,179,169,.08); font-size: .8rem; font-weight: 800; }
.live-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: pulse-dot 1.8s infinite; }
@keyframes pulse-dot { 50% { box-shadow: 0 0 0 8px rgba(27,179,169,0); } 0%,100% { box-shadow: 0 0 0 2px rgba(27,179,169,.18); } }
.map-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 24px; align-items: stretch; }
.map-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.map-toolbar { display: flex; flex-wrap: wrap; align-items: end; gap: 12px; padding: 17px; border-bottom: 1px solid var(--line); }
.date-field { display: grid; gap: 4px; }
.date-field label { color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.date-field input { min-height: 42px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: var(--paper); }
.map-frame { position: relative; min-height: 590px; background: #dce7e5; }
#ship-map { width: 100%; min-height: 590px; z-index: 1; }
.map-consent { position: absolute; inset: 0; z-index: 10; display: grid; place-content: center; justify-items: center; padding: 32px; text-align: center; background: radial-gradient(circle at 50% 20%, rgba(27,179,169,.16), transparent 35%), linear-gradient(145deg, #edf5f3, #dbe7e8); }
.map-consent[hidden] { display: none; }
.map-consent h3 { margin: 18px 0 5px; color: var(--navy); font-size: 1.5rem; }
.map-consent p { max-width: 520px; margin: 0 0 20px; color: var(--muted); }
.map-loading { position: absolute; z-index: 20; top: 16px; left: 50%; transform: translateX(-50%); padding: 8px 14px; border-radius: 999px; color: var(--white); background: rgba(7,31,51,.86); font-size: .82rem; }
.map-attribution-note { padding: 10px 16px; color: var(--muted); font-size: .72rem; }
.tracking-panel { display: flex; flex-direction: column; gap: 16px; }
.panel-block, .metric-grid, .weather-card { border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 12px 35px rgba(7,31,51,.07); }
.panel-block { padding: 22px; }
.panel-label { display: block; color: var(--muted); font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .11em; }
.current-position strong { display: block; margin-top: 7px; color: var(--navy); font-size: 1.35rem; }
.current-position > span:last-child { color: var(--muted); font-size: .82rem; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.metric-grid div { min-height: 100px; padding: 17px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric-grid div:nth-child(2n) { border-right: 0; }
.metric-grid div:nth-last-child(-n+2) { border-bottom: 0; }
.metric-grid span, .weather-metrics span { display: block; color: var(--muted); font-size: .72rem; }
.metric-grid strong, .weather-metrics strong { display: block; margin-top: 4px; color: var(--navy); font-size: 1.25rem; }
.weather-card { padding: 20px; color: var(--white); border: 0; background: linear-gradient(145deg, var(--navy-2), var(--teal-dark)); }
.weather-card .panel-label, .weather-card .weather-metrics span { color: #a9c7d0; }
.weather-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.weather-head strong { display: block; margin-top: 6px; font-size: 1.15rem; }
.weather-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); font-size: 1.6rem; }
.weather-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 18px; }
.weather-metrics strong { color: var(--white); font-size: 1rem; }
.data-note { margin: 0; padding: 0 5px; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.ship-marker { position: relative; width: 34px; height: 34px; display: grid; place-items: center; border: 3px solid var(--white); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--coral); box-shadow: 0 8px 22px rgba(7,31,51,.35); }
.ship-marker::before { content: "⛵"; transform: rotate(45deg); font-size: 15px; }
.ship-marker::after { content: ""; position: absolute; inset: -9px; border: 2px solid rgba(255,119,94,.6); border-radius: 50%; animation: ship-pulse 2s infinite; }
@keyframes ship-pulse { to { transform: scale(1.65); opacity: 0; } }
.route-popup { min-width: 190px; }
.route-popup strong { color: var(--navy); }
.route-popup p { margin: 8px 0; color: var(--muted); }
.route-popup a { color: var(--teal-dark); font-weight: 800; }
.story-map-marker { position: relative; display: grid; width: 28px; height: 28px; place-items: center; border: 3px solid var(--white); border-radius: 50%; background: var(--teal-dark); box-shadow: 0 6px 18px rgba(7,31,51,.3); }
.story-map-marker span { width: 7px; height: 7px; border-radius: 50%; background: var(--white); }
.story-map-marker::after { content: ""; position: absolute; inset: -7px; border: 2px solid rgba(27,179,169,.65); border-radius: 50%; animation: story-pulse 2.2s infinite; }
@keyframes story-pulse { to { transform: scale(1.6); opacity: 0; } }

.project-section { color: var(--white); background: var(--navy); }
.project-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: start; }
.project-story .eyebrow { color: #61d6cf; }
.project-story h2 { color: var(--white); }
.project-intro { margin-top: 27px; color: #e1edf1; font-size: 1.22rem; }
.project-story > p:not(.eyebrow):not(.project-intro) { color: #afc5ce; }
.project-story blockquote { margin: 35px 0 0; padding: 4px 0 4px 24px; border-left: 4px solid var(--coral); color: var(--sand); font-size: 1.35rem; font-weight: 750; }
.shoe-timeline { position: relative; display: grid; gap: 17px; }
.shoe-timeline::before { content: ""; position: absolute; top: 34px; bottom: 34px; left: 31px; width: 1px; background: rgba(255,255,255,.2); }
.shoe-timeline article { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 22px; border: 1px solid rgba(255,255,255,.11); border-radius: 18px; background: rgba(255,255,255,.05); }
.shoe-timeline article > span { z-index: 1; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--navy); background: var(--teal); font-size: .75rem; font-weight: 900; }
.shoe-timeline h3 { margin: 0; font-size: 1.2rem; }
.shoe-timeline p { margin: 5px 0 0; color: #a9c0ca; }

.blog-section { background: var(--sand); }
.text-link { color: var(--teal-dark); font-weight: 850; text-underline-offset: 4px; }
.post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.post-card { position: relative; min-height: 270px; padding: 30px; overflow: hidden; border: 1px solid rgba(7,31,51,.1); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 35px rgba(7,31,51,.05); }
.post-card-featured { grid-column: span 2; min-height: 330px; padding-right: 36%; background: linear-gradient(135deg, var(--white), #eef8f6); }
.post-card-featured::after { content: ""; position: absolute; right: -50px; bottom: -120px; width: 390px; height: 390px; border: 65px solid rgba(27,179,169,.12); border-radius: 50%; }
.post-number { position: absolute; right: 24px; top: 12px; color: rgba(7,31,51,.08); font-size: 5rem; line-height: 1; font-weight: 900; }
.post-card-body { position: relative; z-index: 1; }
.post-meta { color: var(--muted); font-size: .78rem; font-weight: 750; }
.post-card h3 { margin: 12px 0 10px; color: var(--navy); font-size: clamp(1.45rem, 3vw, 2.3rem); line-height: 1.1; }
.post-card h3 a { text-decoration: none; }
.post-card h3 a:hover { color: var(--teal-dark); }
.post-card p:not(.post-meta) { color: var(--muted); }
.empty-state, .notice { padding: 24px; border: 1px dashed var(--line); border-radius: 16px; color: var(--muted); background: rgba(255,255,255,.5); }
.notice-error { color: #8a2f24; border-color: #efb0a5; background: #fff1ee; }

.guestbook-section { background: var(--paper); }
.guestbook-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.guestbook-section h2 { margin-bottom: 18px; }
.guestbook-section > .shell > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.guestbook-form { display: grid; gap: 9px; margin-top: 28px; }
.guestbook-form label:not(.privacy-check) { color: var(--navy); font-size: .8rem; font-weight: 800; }
.guestbook-form input[type="text"], .guestbook-form textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.guestbook-form textarea { resize: vertical; }
.privacy-check { display: flex; align-items: flex-start; gap: 9px; margin: 8px 0; color: var(--muted); font-size: .76rem; }
.privacy-check input { margin-top: 4px; }
.form-status { min-height: 24px; margin: 0; color: var(--teal-dark); font-size: .84rem; font-weight: 700; }
.honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); }
.guestbook-entries { display: grid; align-content: start; gap: 15px; }
.guest-entry { display: grid; grid-template-columns: 48px 1fr; gap: 15px; padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); box-shadow: 0 8px 25px rgba(7,31,51,.05); }
.guest-avatar { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; color: var(--navy); background: var(--sand); font-weight: 900; }
.guest-entry h3 { margin: 0; color: var(--navy); font-size: 1rem; }
.guest-entry p { margin: 5px 0; color: var(--muted); }
.guest-entry time { color: #87949d; font-size: .72rem; }

.single-post { max-width: 900px; }
.back-link { display: inline-block; margin-bottom: 35px; color: var(--teal-dark); font-weight: 800; }
.single-post .post-meta { margin: 20px 0 35px; }
.prose { color: #263b49; font-size: 1.08rem; }
.prose h2, .prose h3 { margin: 2em 0 .7em; color: var(--navy); line-height: 1.15; }
.prose h2 { font-size: 2rem; }
.prose h3 { font-size: 1.45rem; }
.prose p { margin: 1.1em 0; }
.prose blockquote { margin: 2em 0; padding: 10px 0 10px 24px; border-left: 4px solid var(--teal); color: var(--navy); font-size: 1.25rem; font-weight: 700; }
.prose a { color: var(--teal-dark); }
.instagram-placeholder { display: block; margin: 30px 0; padding: 28px; border: 1px solid var(--line); border-radius: 16px; text-align: center; background: var(--sand); }
.instagram-placeholder .instagram-copy { display: block; margin-bottom: 14px; }
.instagram-direct { display: block; margin-top: 12px; color: var(--muted); font-size: .8rem; }

.site-footer { padding: 70px 0 25px; color: #b9ccd4; background: #041522; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 60px; }
.footer-grid > div:first-child p { max-width: 450px; }
.footer-grid h2 { margin: 0 0 13px; color: var(--white); font-size: .92rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid a { display: block; margin: 7px 0; color: #b9ccd4; text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }

.leaflet-control-attribution { font-size: 10px !important; }
.leaflet-popup-content-wrapper { border-radius: 14px; box-shadow: 0 16px 45px rgba(7,31,51,.22); }

@media (max-width: 1000px) {
    .site-nav { gap: 17px; font-size: .85rem; }
    .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; }
    .hero-visual { min-height: 420px; }
    .hero-compass { width: 390px; }
    .map-layout { grid-template-columns: 1fr; }
    .tracking-panel { display: grid; grid-template-columns: repeat(2, 1fr); }
    .data-note { grid-column: span 2; }
    .project-grid, .guestbook-grid { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 780px) {
    :root { --shell: min(100% - 28px, 1180px); }
    .section-space { padding: 78px 0; }
    .nav-toggle { display: block; }
    .site-nav { position: absolute; top: 77px; right: 14px; left: 14px; display: none; flex-direction: column; align-items: stretch; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow); }
    .site-nav.is-open { display: flex; }
    .hero-grid { gap: 30px; padding-top: 70px; padding-bottom: 95px; }
    .hero h1 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
    .hero-facts { grid-template-columns: 1fr 1fr; }
    .hero-visual { min-height: 360px; }
    .hero-compass { width: min(330px, 86vw); }
    .status-card { right: 5px; bottom: 10px; }
    .section-heading { align-items: flex-start; flex-direction: column; }
    .map-frame, #ship-map { min-height: 500px; }
    .tracking-panel { grid-template-columns: 1fr; }
    .data-note { grid-column: auto; }
    .post-grid { grid-template-columns: 1fr; }
    .post-card-featured { grid-column: auto; padding-right: 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
    .brand img { width: 174px; }
    .header-inner { min-height: 70px; }
    .site-nav { top: 69px; }
    .hero-copy { min-width: 0; }
    .hero h1 { max-width: 100%; font-size: clamp(2.7rem, 12.8vw, 3.75rem); line-height: .98; letter-spacing: -.05em; overflow-wrap: break-word; hyphens: auto; }
    .hero-lead { font-size: 1rem; }
    .hero-facts { grid-template-columns: 1fr; }
    .hero-actions .button { width: 100%; }
    .hero-visual { min-height: 315px; }
    .status-card { position: relative; bottom: auto; right: auto; margin-top: -38px; }
    .map-toolbar { align-items: stretch; }
    .date-field { width: calc(50% - 6px); }
    .date-field input { width: 100%; }
    .map-toolbar .button { flex: 1; }
    .map-frame, #ship-map { min-height: 440px; }
    .metric-grid { grid-template-columns: 1fr; }
    .metric-grid div { border-right: 0; border-bottom: 1px solid var(--line) !important; }
    .metric-grid div:last-child { border-bottom: 0 !important; }
    .shoe-timeline article { grid-template-columns: 48px 1fr; padding: 18px; }
    .shoe-timeline::before { left: 25px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* REGINA_MARIS_SEO_GEO_PATCH */
.hero-slogan {
    max-width: 680px;
    margin: 20px 0 0;
    color: #61d6cf;
    font-size: clamp(1.25rem, 2.5vw, 1.9rem);
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: -.025em;
}
.hero-slogan + .hero-lead { margin-top: 18px; }
.faq-section { background: #eef5f4; }
.faq-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: start;
}
.faq-intro h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.04;
    letter-spacing: -.045em;
}
.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.faq-list { display: grid; gap: 13px; }
.faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 8px 28px rgba(7,31,51,.05);
}
.faq-item summary {
    position: relative;
    padding: 19px 54px 19px 21px;
    color: var(--navy);
    font-weight: 850;
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 21px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--teal-dark);
    font-size: 1.5rem;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0; padding: 0 21px 21px; color: var(--muted); }
@media (max-width: 900px) {
    .faq-layout { grid-template-columns: 1fr; gap: 38px; }
}
@media (max-width: 520px) {
    .hero-slogan { font-size: 1.2rem; }
}

/* REGINA_MARIS_TRACKING_SAFE_V2: veraltete AIS-Positionen klar kennzeichnen */
.tracking-is-stale .live-badge {
    border-color: rgba(164, 93, 25, .35);
    background: rgba(255, 244, 224, .92);
    color: #7a4615;
}
.tracking-is-stale .live-badge span,
.tracking-is-stale .status-dot {
    background: #b66a20;
    box-shadow: 0 0 0 5px rgba(182, 106, 32, .14);
}
.ship-marker-stale {
    opacity: .62;
    filter: grayscale(.75);
}
.tracking-is-stale .current-position .panel-label {
    color: #7a4615;
}
