/* ============================================================
   Hale Kohanaiki - Guest Guide
   Tropical-premium design system. Mobile-first. No frameworks.
   ============================================================ */

:root {
    /* Palette - lava charcoal, warm sand, palm green, ocean teal, hibiscus */
    --c-lava-900:   #15110d;
    --c-lava-800:   #1d1813;
    --c-lava-700:   #2a221b;
    --c-ink:        #1a1410;

    --c-sand-50:    #fbf7ef;
    --c-sand-100:   #f5ecdc;
    --c-sand-200:   #ecdcc1;
    --c-sand-300:   #d9c4a1;
    --c-sand-400:   #b89a72;

    --c-ti-900:     #0c2a1f;
    --c-ti-700:     #1d4a36;
    --c-ti-500:     #2f7b59;
    --c-ti-400:     #4ea582;

    --c-ocean-900:  #082a35;
    --c-ocean-700:  #0a4554;
    --c-ocean-500:  #137389;
    --c-ocean-400:  #2a9ab4;
    --c-ocean-100:  #c6eaf0;

    --c-coral:      #de5b4b;
    --c-coral-soft: #f1ad9b;
    --c-hibiscus:   #c2305a;

    --c-text:       #1d1813;
    --c-text-soft:  #4a4036;
    --c-text-faint: #847665;
    --c-line:       #e7dcc8;

    /* Type */
    --f-display: 'Gambarino', 'Cabinet Grotesk', Georgia, serif;
    --f-sans:    'Cabinet Grotesk', 'Satoshi', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

    /* Spacing rhythm */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 96px;
    --space-10: 128px;

    --radius-sm: 8px;
    --radius:    14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --shadow-card: 0 1px 2px rgba(20,16,12,0.04), 0 12px 30px -12px rgba(20,16,12,0.18);
    --shadow-elevated: 0 1px 2px rgba(20,16,12,0.05), 0 30px 60px -22px rgba(20,16,12,0.32);

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--f-sans);
    font-size: 17px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-sand-50);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--c-ocean-700); text-decoration: none; transition: color .2s var(--ease-out); }
a:hover { color: var(--c-ocean-500); }

h1, h2, h3, h4 { font-family: var(--f-sans); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; margin: 0; color: var(--c-text); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; letter-spacing: -0.01em; }

p { margin: 0 0 .9em; }
strong { font-weight: 700; color: var(--c-text); }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
code { font: inherit; background: var(--c-sand-100); padding: 1px 6px; border-radius: 4px; font-size: 0.9em; color: var(--c-ocean-700); }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--c-ink); color: #fff; padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Nav ---------- */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 14px clamp(16px, 4vw, 40px);
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(180deg, rgba(21,17,13,0.55), rgba(21,17,13,0));
    color: #fbf7ef;
    transition: background .35s var(--ease-out), backdrop-filter .35s var(--ease-out), color .25s ease;
}
.site-nav.is-scrolled {
    background: rgba(251,247,239,0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    color: var(--c-ink);
    border-bottom: 1px solid rgba(20,16,12,0.06);
}
.nav-brand {
    display: flex; align-items: center; gap: 12px;
    color: inherit;
    font-family: var(--f-sans);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.nav-brand:hover { color: inherit; }
.brand-mark { width: 32px; height: 32px; color: currentColor; }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-size: 1rem; font-weight: 700; }
.brand-sub { font-size: 0.72rem; font-weight: 500; opacity: 0.7; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.18em; }

.nav-links {
    display: flex; gap: clamp(10px, 1.8vw, 22px);
    font-size: 0.88rem; font-weight: 600;
}
.nav-links a {
    color: inherit;
    position: relative;
    padding: 6px 0;
}
.nav-links a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
    background: currentColor; transform: scaleX(0); transform-origin: left center;
    transition: transform .3s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
    display: none;
    width: 44px; height: 44px; border: 0; background: transparent;
    color: inherit;
    position: relative;
    z-index: 60;
}
.nav-toggle span {
    display: block; height: 1.5px; background: currentColor; border-radius: 2px;
    width: 22px; margin: 5px auto;
    transition: transform .35s var(--ease-out), opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: fixed;
        top: 0; right: 0;
        width: min(86vw, 360px); height: 100vh;
        background: var(--c-ink); color: var(--c-sand-50);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 18px;
        font-size: 1.15rem;
        transform: translateX(100%);
        transition: transform .42s var(--ease-out);
        box-shadow: var(--shadow-elevated);
    }
    .nav-links.is-open { transform: translateX(0); }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.97rem;
    letter-spacing: -0.005em;
    border: 1px solid transparent;
    transition: transform .25s var(--ease-out), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
    will-change: transform;
}
.btn-primary {
    background: var(--c-coral);
    color: #fff;
    box-shadow: 0 8px 20px -8px rgba(222,91,75,0.55);
}
.btn-primary:hover { background: #c84939; color: #fff; transform: translateY(-1px); }
.btn-ghost {
    background: transparent;
    color: #fbf7ef;
    border-color: rgba(251,247,239,0.5);
}
.btn-ghost:hover { background: rgba(251,247,239,0.12); color: #fff; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    color: #fbf7ef;
    display: flex; align-items: flex-end;
    padding: clamp(100px, 12vh, 160px) clamp(20px, 5vw, 64px) clamp(60px, 8vh, 100px);
    overflow: hidden;
    isolation: isolate;
}
.hero-image { position: absolute; inset: 0; z-index: -2; }
.hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    animation: heroDrift 24s ease-in-out infinite alternate;
}
.hero-image-fallback {
    display: block;
    background: radial-gradient(120% 80% at 30% 30%, var(--c-ocean-500), var(--c-ti-900) 65%, var(--c-lava-900));
}
.hero-image-fallback::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 70% 70%, rgba(222,91,75,0.35), transparent 40%),
                      radial-gradient(circle at 20% 80%, rgba(78,165,130,0.35), transparent 40%);
}
.hero-vignette {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(180deg, rgba(15,12,9,0.55) 0%, rgba(15,12,9,0.2) 28%, rgba(15,12,9,0.88) 95%),
        linear-gradient(90deg, rgba(15,12,9,0.55) 0%, rgba(15,12,9,0.15) 55%, rgba(15,12,9,0) 100%),
        radial-gradient(140% 80% at 20% 90%, rgba(0,0,0,0.55), transparent 60%);
}
@media (max-width: 720px) {
    .hero-vignette {
        background:
            linear-gradient(180deg, rgba(15,12,9,0.7) 0%, rgba(15,12,9,0.4) 35%, rgba(15,12,9,0.92) 95%),
            linear-gradient(90deg, rgba(15,12,9,0.45) 0%, rgba(15,12,9,0.25) 100%);
    }
}
@keyframes heroDrift {
    from { transform: scale(1.06) translate(0, 0); }
    to   { transform: scale(1.12) translate(-2%, -2%); }
}

.hero-content {
    position: relative; z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    width: 100%;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 24px;
    color: var(--c-sand-200);
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-coral); box-shadow: 0 0 0 6px rgba(222,91,75,0.18); }

.hero-title {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(3rem, 9vw, 7.5rem);
    line-height: 0.95;
    letter-spacing: -0.025em;
    margin: 0 0 28px;
    color: #fbf7ef;
    text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero-title .hero-aloha { display: block; font-style: italic; color: #fff; }
.hero-title .hero-and {
    display: block;
    font-family: var(--f-sans);
    font-weight: 400;
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    text-transform: uppercase;
    letter-spacing: 0.32em;
    margin: 14px 0 14px;
    color: var(--c-sand-300);
}
.hero-title .hero-house { display: block; color: #fbf7ef; }

.hero-lede {
    max-width: 56ch;
    font-size: clamp(1.05rem, 1.3vw, 1.18rem);
    color: rgba(251,247,239,0.98);
    line-height: 1.65;
    background: linear-gradient(135deg, rgba(21,17,13,0.64), rgba(21,17,13,0.36));
    border: 1px solid rgba(251,247,239,0.22);
    border-radius: 24px;
    padding: 16px 18px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-shadow: 0 1px 16px rgba(0,0,0,0.42);
}
.hero-cta {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-top: 32px;
}
.hero-stats {
    list-style: none; padding: 0; margin: 56px 0 0;
    display: flex; gap: clamp(20px, 4vw, 56px); flex-wrap: wrap;
    border-top: 1px solid rgba(251,247,239,0.18);
    padding-top: 28px;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--f-display); font-weight: 400; font-size: 1.9rem; color: #fff; letter-spacing: -0.02em; }
.hero-stats span { font-size: 0.85rem; color: var(--c-sand-300); margin-top: 4px; letter-spacing: 0.05em; }

/* ---------- Sections ---------- */
.section {
    padding: clamp(72px, 11vw, 140px) clamp(20px, 5vw, 56px);
    position: relative;
    overflow: hidden;
}
.section > .container { position: relative; z-index: 1; }
.section-practical::before,
#around::before,
#garden::before,
#history::before,
#pool::before,
#trash::before {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.13;
    background-repeat: no-repeat;
    background-size: contain;
}
.section-practical::before {
    width: min(440px, 62vw);
    height: min(240px, 34vw);
    right: -72px;
    top: 48px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 440 240' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232f7b59' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 200c76-72 118-116 170-116s88 49 132 116'/%3E%3Cpath d='M142 124c28-55 88-80 126-26'/%3E%3Cpath d='M214 86c8 42 24 68 62 104'/%3E%3Cpath d='M80 201h312'/%3E%3Cpath d='M230 118c32-6 61-4 87 8'/%3E%3C/svg%3E");
}
#around::before {
    width: min(360px, 52vw);
    height: min(300px, 46vw);
    left: -62px;
    top: 120px;
    opacity: 0.10;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 360 300' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fbf7ef' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M121 233c84-47 139-111 168-192'/%3E%3Cpath d='M148 214c-38-55-36-112 8-171 42 38 48 98-8 171Z'/%3E%3Cpath d='M197 170c-10-54 10-101 60-141 25 52 7 100-60 141Z'/%3E%3Cpath d='M105 241c-35-26-56-61-64-105 45 7 77 39 64 105Z'/%3E%3C/svg%3E");
}
#garden::before {
    width: min(420px, 60vw);
    height: min(330px, 48vw);
    right: -120px;
    top: 40px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 420 330' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232f7b59' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M204 304C170 206 176 103 218 24'/%3E%3Cpath d='M206 172c-44-80-100-117-168-111 20 68 76 107 168 111Z'/%3E%3Cpath d='M214 151c56-66 116-90 180-72-30 61-90 85-180 72Z'/%3E%3Cpath d='M206 244c-69-42-125-45-169-9 47 40 103 43 169 9Z'/%3E%3Cpath d='M218 238c72-21 123-11 154 29-55 24-107 14-154-29Z'/%3E%3C/svg%3E");
}
#history::before {
    width: min(390px, 60vw);
    height: min(210px, 32vw);
    left: -90px;
    bottom: 54px;
    opacity: 0.11;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 390 210' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23137389' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 152c58-64 106-76 144-36 34-54 83-67 145-21 25 19 47 30 66 34'/%3E%3Cpath d='M22 154h332'/%3E%3Cpath d='M258 151c26 0 49 12 69 35'/%3E%3Cpath d='M84 130c-4 34-16 56-36 67'/%3E%3Cpath d='M192 103c-14 34-22 66-24 96'/%3E%3C/svg%3E");
}
#pool::before {
    width: min(360px, 54vw);
    height: min(320px, 48vw);
    right: -80px;
    top: 90px;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 360 320' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23137389' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M164 294c11-74 26-142 46-204'/%3E%3Cpath d='M206 90c-52-9-88 3-108 36 46 15 83 3 108-36Z'/%3E%3Cpath d='M214 88c24-42 58-59 102-50-10 42-45 59-102 50Z'/%3E%3Cpath d='M212 91c45 8 78 28 98 60-42 6-75-14-98-60Z'/%3E%3Cpath d='M202 88c-38-28-61-61-68-100 44 15 67 48 68 100Z'/%3E%3Cellipse cx='176' cy='128' rx='18' ry='24'/%3E%3Cellipse cx='214' cy='123' rx='17' ry='23'/%3E%3Cpath d='M35 274c73-20 144-20 213 0'/%3E%3C/svg%3E");
}
#trash::before {
    width: min(300px, 50vw);
    height: min(260px, 42vw);
    left: -74px;
    bottom: 34px;
    opacity: 0.10;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 260' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23de5b4b' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M150 134c-12-54 5-89 45-105 6 45-9 80-45 105Z'/%3E%3Cpath d='M148 136c-47-29-62-66-45-108 35 29 50 65 45 108Z'/%3E%3Cpath d='M150 138c-53 14-91 0-114-39 44-11 82 2 114 39Z'/%3E%3Cpath d='M153 140c42 36 50 76 22 119-29-35-37-75-22-119Z'/%3E%3Cpath d='M156 138c54-3 88 19 102 64-45-1-79-22-102-64Z'/%3E%3Ccircle cx='151' cy='137' r='18'/%3E%3C/svg%3E");
}
.section-dark {
    background: var(--c-ink);
    color: var(--c-sand-100);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark strong { color: #fbf7ef; }
.section-dark .kicker { color: var(--c-coral-soft); }
.section-dark .lede { color: var(--c-sand-300); }
.section-tinted { background: var(--c-sand-100); }
.section-pool {
    background: linear-gradient(180deg, var(--c-ocean-100), var(--c-sand-50));
}

.container { max-width: var(--container); margin: 0 auto; width: 100%; }

.section-head { max-width: 760px; margin: 0 auto var(--space-8); text-align: center; }
.kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-weight: 600;
    color: var(--c-coral);
    margin-bottom: 18px;
}
.section-head h2 { font-family: var(--f-display); font-weight: 400; letter-spacing: -0.025em; }
.lede {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--c-text-soft);
    line-height: 1.6;
    margin-top: 18px;
}
.sub-h { font-family: var(--f-display); font-weight: 400; font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -0.02em; margin: var(--space-8) 0 var(--space-5); }
.muted { color: var(--c-text-faint); }

/* ---------- Family / Hosts ---------- */
.family-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-5);
}
.family-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s ease;
}
.family-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--c-sand-300);
}
.family-avatar {
    width: 88px; height: 88px;
    border-radius: 50%;
    margin: 0 auto var(--space-4);
    background: linear-gradient(135deg, var(--c-ti-500), var(--c-ocean-500));
    display: grid; place-items: center;
    color: #fff;
    font-family: var(--f-display);
    font-size: 2.3rem;
    overflow: hidden;
    box-shadow: 0 8px 20px -8px rgba(31,75,57,0.45);
}
.family-avatar.avatar-photo { background: var(--c-sand-200); }
.family-avatar img { width: 100%; height: 100%; object-fit: cover; }
.family-card h3 { font-family: var(--f-display); font-weight: 400; font-size: 1.65rem; margin-bottom: 6px; }
.family-role { font-size: 0.86rem; color: var(--c-text-faint); margin-bottom: var(--space-3); letter-spacing: 0.03em; }
.family-link { font-size: 0.88rem; font-weight: 600; margin-top: var(--space-3); display: inline-block; }

/* ---------- Exchanges ---------- */
.section-exchanges { background: linear-gradient(180deg, var(--c-sand-50), var(--c-sand-100)); }
.exchange-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-5);
}
.exchange-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--c-line);
    position: relative;
    overflow: hidden;
    transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.exchange-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--c-coral), var(--c-ti-500), var(--c-ocean-500));
}
.exchange-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.exchange-dates {
    display: flex; align-items: baseline; gap: 12px;
    font-family: var(--f-display);
    font-size: 1.5rem;
    color: var(--c-ti-700);
    margin-bottom: var(--space-3);
}
.date-arrow { color: var(--c-text-faint); font-size: 1.1rem; }
.exchange-card h3 { font-family: var(--f-display); font-weight: 400; font-size: 1.8rem; }
.guest-country {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-text-faint);
}
.guest-flag {
    width: 30px;
    height: 20px;
    display: inline-flex;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(20,16,12,0.12), 0 6px 14px -10px rgba(20,16,12,0.45);
    background: #fff;
    flex: 0 0 auto;
}
.guest-flag svg {
    width: 100%;
    height: 100%;
    display: block;
}
.exchange-wish {
    margin-top: var(--space-4);
    font-style: italic;
    color: var(--c-coral);
    font-weight: 500;
    border-top: 1px dashed var(--c-line);
    padding-top: var(--space-3);
}

/* ---------- Practical info ---------- */
.section-practical {
    background: linear-gradient(180deg, var(--c-sand-100), var(--c-sand-50));
}
.practical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-5);
}
.practical-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: 0 18px 50px -34px rgba(21,17,13,0.35);
}
.practical-card h3 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 1.55rem;
    margin-bottom: var(--space-3);
    color: var(--c-ti-700);
}
.practical-card p { margin-bottom: 6px; }
.practical-card a { font-weight: 700; }
.practical-card-wifi {
    background: black;
    color: white;
    border: none;
}
.practical-card-wifi .tile-icon {
    color: #fff;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.18);
}
.practical-card-wifi h3 { color: #fff; }
.credential-label {
    margin-top: var(--space-3);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(251,247,239,0.68);
    font-weight: 800;
}
.credential-value {
    font-family: var(--f-sans);
    font-size: 1.15rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.03em;
}

/* ---------- Arrival ---------- */
.arrival-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-7);
    align-items: start;
}
@media (min-width: 980px) {
    .arrival-grid { grid-template-columns: 1fr 1.4fr; }
    .arrival-map { position: sticky; top: 100px; }
}
.map-card {
    display: block;
    background: linear-gradient(160deg, var(--c-ti-700), var(--c-ocean-700));
    color: var(--c-sand-50);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    overflow: hidden;
    position: relative;
    min-height: 240px;
    transition: transform .3s var(--ease-out);
}
.map-card:hover { color: #fff; transform: translateY(-2px); }
.map-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(70% 50% at 80% 10%, rgba(255,255,255,0.16), transparent 60%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px);
    pointer-events: none;
}
.map-text { position: relative; }
.map-eyebrow {
    font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.24em; font-weight: 600;
    color: var(--c-coral-soft);
    margin-bottom: var(--space-3);
}
.map-title { font-family: var(--f-display); font-weight: 400; font-size: clamp(1.4rem, 2.6vw, 1.85rem); margin-bottom: 6px; line-height: 1.15; color: #fff; }
.map-sub { color: var(--c-sand-200); margin-bottom: var(--space-5); }
.map-cta { font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.embedded-route-map {
    margin-top: var(--space-4);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(251,247,239,0.18);
    box-shadow: 0 22px 70px -46px rgba(0,0,0,0.6);
    background: rgba(251,247,239,0.06);
}
.embedded-route-map iframe {
    width: 100%;
    min-height: 300px;
    border: 0;
    display: block;
    filter: saturate(0.95) contrast(1.02);
}

.arrival-steps { list-style: none; padding: 0; margin: 0; counter-reset: step; display: grid; gap: var(--space-5); }
.step {
    background: rgba(251,247,239,0.06);
    border: 1px solid rgba(251,247,239,0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    position: relative;
    transition: border-color .3s ease, transform .3s var(--ease-out);
}
.step:hover { border-color: rgba(251,247,239,0.28); transform: translateY(-2px); }
.step-num {
    font-family: var(--f-display);
    font-size: 2rem;
    color: var(--c-coral-soft);
    display: block;
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
}
.step h3 { margin-bottom: 8px; }
.step-warn { border-color: rgba(222,91,75,0.45); background: rgba(222,91,75,0.06); }

/* ---------- Callouts ---------- */
.callout {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: var(--space-5) var(--space-6);
    margin-top: var(--space-5);
    color: var(--c-text-soft);
}
.section-dark .callout { color: var(--c-sand-200); background: rgba(251,247,239,0.05); border-color: rgba(251,247,239,0.12); }
.callout h4 { margin-bottom: 6px; font-size: 1rem; }
.callout-warn { border-left: 3px solid var(--c-coral); }
.callout-alert {
    background: rgba(222,91,75,0.08);
    border: 1px solid rgba(222,91,75,0.35);
    color: var(--c-text);
    margin-top: var(--space-4);
}
.section-dark .callout-alert { color: var(--c-sand-100); }
.callout-feature {
    display: flex; gap: var(--space-5);
    background: linear-gradient(135deg, #fff, var(--c-sand-100));
    border: 1px solid var(--c-sand-300);
    padding: var(--space-7);
    border-radius: var(--radius-lg);
    margin-top: var(--space-8);
    color: var(--c-text);
}
.callout-icon { font-size: 2.4rem; line-height: 1; flex-shrink: 0; }
.callout-body h3 { font-family: var(--f-display); font-weight: 400; font-size: 1.65rem; margin-bottom: var(--space-3); }
.callout-body ul { padding-left: 20px; }
.callout-body ul li { margin-bottom: 6px; }
.callout-links { display: flex; gap: var(--space-4); margin-top: var(--space-4); flex-wrap: wrap; }
.callout-links a { font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.callout-soft {
    background: var(--c-sand-100);
    border: 1px solid var(--c-sand-200);
    margin-top: var(--space-7);
}
.callout-soft a {
    color: var(--c-ti-900);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid var(--c-coral);
    background: rgba(255,255,255,0.6);
    border-radius: 8px;
    padding: 1px 4px;
}
.callout-soft a:hover {
    color: var(--c-coral);
    background: #fff;
}

/* ---------- Media Placeholder ---------- */
.media-placeholder {
    margin-top: var(--space-4);
    border: 1.5px dashed rgba(251,247,239,0.25);
    background: rgba(251,247,239,0.04);
    border-radius: var(--radius);
    padding: var(--space-6);
    text-align: center;
    color: var(--c-sand-300);
    font-size: 0.9rem;
}
.section:not(.section-dark) .media-placeholder {
    border-color: var(--c-sand-300);
    background: rgba(255,255,255,0.6);
    color: var(--c-text-soft);
}
.placeholder-icon { font-size: 2rem; margin-bottom: 8px; }
.placeholder-hint { display: block; margin-top: 8px; font-size: 0.78rem; opacity: 0.7; }
.media-placeholder.small { padding: var(--space-4); font-size: 0.85rem; }
.placeholder-warn { border-color: rgba(222,91,75,0.6); background: rgba(222,91,75,0.06); color: var(--c-coral); }
.section:not(.section-dark) .placeholder-warn { color: var(--c-coral); }

/* ---------- Safety ---------- */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-5);
}
.safety-row {
    margin-top: var(--space-7);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-5);
}
.safety-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: var(--space-5) var(--space-6);
    transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.safety-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.safety-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.tile-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-ocean-700);
    background: linear-gradient(145deg, rgba(19,115,137,0.11), rgba(47,123,89,0.10));
    border: 1px solid rgba(19,115,137,0.16);
    margin-bottom: 14px;
}
.tile-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.card-links { display: flex; gap: 14px; margin-top: 8px; flex-wrap: wrap; font-size: 0.92rem; font-weight: 600; }
.safety-card-alert {
    background: linear-gradient(160deg, #fff, rgba(222,91,75,0.08));
    border-color: rgba(222,91,75,0.4);
    grid-column: 1 / -1;
}
.warn-line { color: var(--c-hibiscus); margin-top: 8px; }

/* ---------- Privacy ---------- */
.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-5);
}
.privacy-card {
    background: #fff;
    border-radius: var(--radius);
    padding: var(--space-6);
    border: 1px solid var(--c-line);
}
.privacy-card h3 { margin-bottom: var(--space-3); }

/* ---------- Trash ---------- */
.trash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
    max-width: 880px;
    margin: 0 auto;
}
.trash-day {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--c-line);
    border-top: 4px solid var(--c-ti-500);
}
.day-label {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--c-ti-500);
    margin-bottom: var(--space-3);
}
.trash-day:last-child { border-top-color: var(--c-coral); }
.trash-day:last-child .day-label { color: var(--c-coral); }

/* ---------- Pool ---------- */
.pool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
}
.pool-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow-card);
}
.pool-card h3 { font-family: var(--f-display); font-weight: 400; font-size: 1.6rem; margin-bottom: var(--space-3); color: var(--c-ocean-700); }
.spa-steps { padding-left: 20px; }
.spa-steps li { margin-bottom: 6px; }

/* ---------- Filter / Activities ---------- */
.filter-bar {
    background: rgba(251,247,239,0.06);
    border: 1px solid rgba(251,247,239,0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    margin-bottom: var(--space-7);
    display: grid;
    gap: var(--space-4);
}
@media (min-width: 720px) {
    .filter-bar { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}
.filter-set { display: flex; flex-direction: column; gap: 10px; }
.filter-label {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--c-sand-300);
    font-weight: 600;
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
    background: transparent;
    color: var(--c-sand-200);
    border: 1px solid rgba(251,247,239,0.22);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 500;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.chip:hover { background: rgba(251,247,239,0.08); color: #fff; }
.chip.is-active {
    background: var(--c-coral);
    border-color: var(--c-coral);
    color: #fff;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-5);
}
.activity-card {
    background: rgba(251,247,239,0.05);
    border: 1px solid rgba(251,247,239,0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: all .3s var(--ease-out);
    color: var(--c-sand-100);
    display: flex;
    flex-direction: column;
}
.activity-card:hover {
    background: rgba(251,247,239,0.09);
    transform: translateY(-3px);
    border-color: rgba(251,247,239,0.3);
}
.activity-card.is-hidden { display: none; }
.act-time {
    font-family: var(--f-sans);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--c-coral-soft);
    font-weight: 600;
    margin-bottom: var(--space-3);
}
.activity-card h3 { font-family: var(--f-display); font-weight: 400; font-size: 1.6rem; margin-bottom: var(--space-3); color: #fff; }
.act-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: var(--space-3); }
.act-tags span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(251,247,239,0.1);
    padding: 3px 10px;
    border-radius: 999px;
    color: var(--c-sand-200);
}
.act-link { font-size: 0.88rem; font-weight: 600; color: var(--c-coral-soft); margin: 0 var(--space-3) var(--space-3) 0; display: inline-block; }
.act-link:hover { color: #fff; }
.empty-state {
    text-align: center;
    color: var(--c-sand-300);
    padding: var(--space-7) 0;
    display: none;
}
.empty-state.is-visible { display: block; }

/* ---------- Stores / Restaurants ---------- */
.store-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-3);
    margin-bottom: var(--space-7);
}
.store {
    background: rgba(251,247,239,0.06);
    border: 1px solid rgba(251,247,239,0.12);
    border-radius: var(--radius);
    padding: var(--space-4) var(--space-5);
    color: var(--c-sand-100);
    transition: all .25s ease;
    display: flex; flex-direction: column;
}
.store:hover { background: rgba(251,247,239,0.1); color: #fff; }
.store-logo {
    align-self: flex-start;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: #fff;
}
.store-logo svg { width: 88px; height: 30px; display: block; }
.logo-costco {
    background: #fff;
    color: #e31837;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    padding: 4px 10px;
    border-radius: 8px;
    text-transform: uppercase;
    box-shadow: inset 0 -3px 0 #005dab;
}
.logo-sack {
    background: #1f7a3a;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 8px;
    text-transform: uppercase;
}
.store strong { font-family: var(--f-display); font-weight: 400; font-size: 1.4rem; color: #fff; display: block; margin-bottom: 4px; }
.store span { font-size: 0.86rem; color: var(--c-sand-300); }

.rest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-5);
}
.rest-card {
    background: rgba(251,247,239,0.04);
    border: 1px solid rgba(251,247,239,0.1);
    border-radius: var(--radius);
    padding: var(--space-5);
    transition: border-color .25s ease, transform .25s var(--ease-out);
}
.rest-card:hover { border-color: rgba(251,247,239,0.3); transform: translateY(-2px); }
.rest-card h4 { font-size: 1.1rem; color: #fff; margin-bottom: 4px; }
.rest-cuisine { font-size: 0.82rem; color: var(--c-coral-soft); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; margin-bottom: 8px; }
.rest-rating {
    color: var(--c-sand-100);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.rest-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--space-3);
}
.rest-actions a {
    border: 1px solid rgba(251,247,239,0.14);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--c-coral-soft);
}
.rest-actions a:hover {
    background: rgba(251,247,239,0.1);
    color: #fff;
}

/* ---------- Cleaning / Garden ---------- */
.cleaning-grid, .garden-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
}
.cleaning-card, .garden-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: box-shadow .3s ease, transform .3s var(--ease-out);
}
.cleaning-card:hover, .garden-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.cleaning-card h3, .garden-card h3 { font-family: var(--f-display); font-weight: 400; font-size: 1.6rem; margin-bottom: var(--space-3); color: var(--c-ti-700); }
.garden-card-big {
    grid-column: 1 / -1;
    background:
        radial-gradient(circle at 12% 20%, rgba(222,91,75,0.16), transparent 26%),
        radial-gradient(circle at 84% 10%, rgba(47,123,89,0.18), transparent 30%),
        linear-gradient(145deg, #fff, var(--c-sand-50));
    border-color: rgba(47,123,89,0.18);
}
.garden-card-big h3 {
    font-size: clamp(1.8rem, 3vw, 2.45rem);
}
.garden-punchline {
    margin-top: var(--space-4);
    font-weight: 800;
    color: var(--c-coral);
}
.jurassic-illo {
    float: right;
    width: min(360px, 100%);
    margin: -6px 0 var(--space-4) var(--space-5);
}
.jurassic-illo svg {
    width: 100%;
    height: auto;
    display: block;
}
.jurassic-illo text {
    font-family: var(--f-display);
    font-size: 22px;
    fill: var(--c-ti-700);
}
.jurassic-illo .vine {
    fill: none;
    stroke: var(--c-ti-500);
    stroke-width: 8;
    stroke-linecap: round;
    opacity: 0.55;
}
.jurassic-illo .vine-b { stroke: var(--c-coral); opacity: 0.25; }
.jurassic-illo .dino {
    transform-origin: 230px 106px;
    animation: dino-bob 3.4s ease-in-out infinite;
}
.jurassic-illo .jaw {
    transform-origin: 258px 105px;
    animation: dino-chomp 1.25s ease-in-out infinite;
}
.jurassic-illo .grass-bite {
    transform-origin: 320px 130px;
    animation: grass-nibble 1.25s ease-in-out infinite;
}
.jurassic-illo .vine-a { animation: vine-sway 4.6s ease-in-out infinite; transform-origin: 180px 120px; }
.jurassic-illo .vine-b { animation: vine-sway 5.2s ease-in-out infinite reverse; transform-origin: 190px 130px; }
.card-illo {
    height: 118px;
    margin: -4px 0 var(--space-4);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(47,123,89,0.08), rgba(19,115,137,0.08));
    display: grid;
    place-items: center;
    overflow: hidden;
}
.card-illo svg {
    width: min(220px, 92%);
    height: auto;
    fill: none;
    stroke: var(--c-ti-700);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.wildlife-illo svg { stroke: var(--c-ocean-700); }
.ahupuaa-visual {
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(47,123,89,0.08), rgba(19,115,137,0.08));
    border: 1px solid var(--c-line);
    padding: var(--space-4);
    margin-bottom: var(--space-5);
}
.ahupuaa-visual svg {
    width: 100%;
    height: auto;
    display: block;
    fill: none;
    stroke: var(--c-ti-700);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.ahupuaa-visual text {
    fill: var(--c-text-muted);
    stroke: none;
    font-family: var(--f-sans);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
@keyframes dino-bob {
    0%, 100% { transform: translateY(0) rotate(-0.5deg); }
    50% { transform: translateY(-5px) rotate(1deg); }
}
@keyframes dino-chomp {
    0%, 100% { transform: rotate(0deg); }
    45% { transform: rotate(8deg) translateX(2px); }
}
@keyframes grass-nibble {
    0%, 100% { transform: scaleY(1); }
    45% { transform: scaleY(0.82) translateY(9px); }
}
@keyframes vine-sway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(1.5deg); }
}
.cleaning-card-key {
    background: linear-gradient(160deg, var(--c-ti-700), var(--c-ti-900));
    color: var(--c-sand-100);
    border: none;
    grid-column: 1 / -1;
}
.cleaning-card-key h3 { color: #fff; }
.cleaning-card-key strong { color: var(--c-coral-soft); }

.chip-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: var(--space-3); }
.chip-static {
    font-size: 0.8rem;
    background: var(--c-sand-100);
    color: var(--c-ti-700);
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid var(--c-sand-200);
}

/* ---------- History ---------- */
.history-card {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(160deg, var(--c-sand-100), var(--c-sand-50));
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border: 1px solid var(--c-sand-200);
    text-align: left;
    font-size: 1.08rem;
    line-height: 1.7;
}
.history-card em { font-family: var(--f-display); font-style: italic; color: var(--c-ti-700); font-weight: 500; }

/* ---------- Checklist ---------- */
.checklist-wrap {
    max-width: 680px;
    margin: 0 auto;
    background: rgba(251,247,239,0.05);
    border: 1px solid rgba(251,247,239,0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-7);
}
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { border-bottom: 1px solid rgba(251,247,239,0.08); }
.checklist li:last-child { border-bottom: 0; }
.checklist label {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 14px 4px;
    cursor: pointer;
    color: var(--c-sand-100);
    transition: color .25s ease;
}
.checklist label:hover { color: #fff; }
.checklist input {
    appearance: none;
    -webkit-appearance: none;
    width: 22px; height: 22px;
    border-radius: 6px;
    border: 1.5px solid rgba(251,247,239,0.4);
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all .2s ease;
    display: grid; place-items: center;
}
.checklist input:checked {
    background: var(--c-coral);
    border-color: var(--c-coral);
}
.checklist input:checked::after {
    content: '';
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checklist input:focus-visible { outline: 2px solid var(--c-coral); outline-offset: 3px; }
.checklist label:has(input:checked) span { text-decoration: line-through; color: var(--c-sand-300); }
.checklist a { color: var(--c-coral-soft); }
.checklist a:hover { color: #fff; }

.checklist-progress { margin-top: var(--space-5); }
.progress-track {
    height: 6px;
    border-radius: 999px;
    background: rgba(251,247,239,0.1);
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--c-coral), var(--c-ti-500));
    border-radius: 999px;
    transition: width .45s var(--ease-out);
}
.progress-label {
    margin-top: 10px;
    font-size: 0.86rem;
    color: var(--c-sand-300);
    text-align: center;
}
.progress-label span:first-child { font-family: var(--f-display); font-size: 1.1rem; color: #fff; }

.farewell {
    text-align: center;
    margin-top: var(--space-8);
}
.farewell p {
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    color: var(--c-coral-soft);
    margin: 0;
}
.farewell-sub {
    font-family: var(--f-sans);
    font-size: 1rem !important;
    color: var(--c-sand-300) !important;
    margin-top: var(--space-3) !important;
    letter-spacing: 0.06em;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--c-lava-900);
    color: var(--c-sand-300);
    padding: var(--space-8) clamp(20px, 5vw, 56px);
    border-top: 1px solid rgba(251,247,239,0.08);
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    gap: var(--space-5);
    grid-template-columns: 1fr;
}
@media (min-width: 760px) {
    .footer-inner { grid-template-columns: 2fr 1fr; align-items: end; }
    .footer-meta { text-align: right; }
}
.footer-tag { font-family: var(--f-display); font-size: 1.1rem; color: var(--c-sand-100); margin: var(--space-4) 0 6px; }
.footer-fine { font-size: 0.88rem; max-width: 50ch; }
.footer-meta p { font-size: 0.82rem; margin: 0; line-height: 1.6; color: var(--c-text-faint); }

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Accessibility / Focus ---------- */
:focus-visible {
    outline: 2px solid var(--c-coral);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-image img { animation: none; transform: none; }
    .reveal { opacity: 1; transform: none; }
}
