/* ============================================================
   CAMBER SANDS — coastal editorial design system
   Palette: sea ink, warm sand, coral. Type: Fraunces + Hanken Grotesk.
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Sand neutrals */
    --sand-25: #FCF9F3;
    --sand-50: #FAF5EC;
    --sand-100: #F3EBDC;
    --sand-200: #E9DEC8;
    --sand-300: #D9C9AC;
    --white: #FFFFFF;

    /* Sea greens (primary) */
    --sea-50: #EEF7F4;
    --sea-100: #DCEEE9;
    --sea-200: #B7DDD3;
    --sea-500: #1B7F74;
    --sea-600: #14655D;
    --sea-700: #11514B;
    --sea-800: #0E3F3B;
    --sea-900: #0B2C2A;

    /* Coral accent */
    --coral-100: #FBE7DD;
    --coral-400: #E97A52;
    --coral-500: #E0603C;
    --coral-600: #C94F2E;
    --coral-700: #A93F23;

    /* Text */
    --text: #1F2E2B;
    --text-soft: #495A56;
    --text-faint: #66776F;

    /* Utility */
    --green-500: #3D9070;
    --green-600: #2D7358;
    --amber-100: #FCF3DC;
    --amber-600: #B07D1E;

    /* Typography */
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 7.5rem;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(11, 44, 42, 0.05);
    --shadow-md: 0 4px 16px rgba(11, 44, 42, 0.07);
    --shadow-lg: 0 10px 32px rgba(11, 44, 42, 0.10);
    --shadow-xl: 0 22px 50px rgba(11, 44, 42, 0.14);

    /* Layout */
    --max-width: 1200px;
    --nav-height: 72px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 1rem);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--sand-50);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--sea-600);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--coral-600); }

:focus-visible {
    outline: 2px solid var(--coral-500);
    outline-offset: 2px;
    border-radius: 2px;
}

::selection { background: var(--sea-200); color: var(--sea-900); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.12;
    color: var(--sea-900);
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: var(--space-lg);
    line-height: 1.08;
}

h3 {
    font-family: var(--font-body);
    font-size: clamp(1.15rem, 2vw, 1.3rem);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: var(--space-md);
    color: var(--text);
}

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

section {
    padding: var(--space-3xl) 0;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral-600);
    margin-bottom: var(--space-sm);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--coral-500);
}

.section-label::after { content: none; }

.section-intro {
    font-size: 1.12rem;
    color: var(--text-soft);
    max-width: 660px;
    margin-bottom: var(--space-2xl);
    line-height: 1.75;
}

/* ===== NAVIGATION ===== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(250, 245, 236, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(14, 63, 59, 0.08);
    z-index: 1000;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-nav.scrolled {
    background: rgba(250, 245, 236, 0.98);
    box-shadow: 0 2px 16px rgba(11, 44, 42, 0.08);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--sea-900);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo:hover { color: var(--sea-700); }

.nav-logo svg { width: 30px; height: 30px; }

.nav-links {
    display: none;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-soft);
    position: relative;
    padding: 10px 2px;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--coral-500);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover { color: var(--sea-900); }
.nav-links a:hover::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--sea-700); font-weight: 700; }
.nav-links a[aria-current="page"]::after { width: 100%; background: var(--sea-500); }

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--sea-900);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--sand-50);
    z-index: 999;
    padding: var(--space-2xl) var(--space-xl);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--sea-900);
    padding: var(--space-sm) var(--space-md);
    transition: color 0.2s ease;
}

.mobile-menu a:hover { color: var(--coral-600); }

@media (min-width: 900px) {
    .nav-links { display: flex; }
    .nav-toggle { display: none; }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl) var(--space-3xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('hero.jpg') center 30% / cover no-repeat;
    background-color: var(--sand-100);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(11, 44, 42, 0.12) 0%, rgba(11, 44, 42, 0) 30%, rgba(11, 44, 42, 0.52) 72%, rgba(11, 44, 42, 0.78) 100%),
        linear-gradient(to right, rgba(11, 44, 42, 0.28) 0%, rgba(11, 44, 42, 0) 55%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sand-50);
    border: none;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--sea-800);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7.5vw, 5.8rem);
    line-height: 1.0;
    margin-bottom: var(--space-lg);
    color: var(--white);
    letter-spacing: -0.02em;
    font-weight: 600;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero h1 em {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--sand-200);
    margin-top: 0.08em;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    max-width: 540px;
    margin: 0 0 var(--space-xl);
    line-height: 1.7;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.9rem 1.8rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--coral-500);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(201, 79, 46, 0.35);
}
.btn-primary:hover {
    background: var(--coral-600);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(201, 79, 46, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(6px);
}
.btn-secondary:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--sea-900);
    transform: translateY(-2px);
}

/* ===== QUICK INFO BAR ===== */
.quick-info {
    position: relative;
    z-index: 10;
    margin-top: -3.5rem;
    background: transparent;
    padding: 0 0 var(--space-3xl);
    border: none;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border-top: 3px solid var(--coral-500);
    overflow: hidden;
}

.quick-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-xl) var(--space-lg);
    transition: background 0.25s ease;
    border-right: 1px solid var(--sand-100);
}

.quick-info-card:last-child { border-right: none; }
.quick-info-card:hover { background: var(--sand-25); }

.quick-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.quick-info-icon.parking { background: var(--sea-100); }
.quick-info-icon.dogs { background: var(--coral-100); }
.quick-info-icon.tides { background: var(--sea-50); }
.quick-info-icon.travel { background: var(--amber-100); }

.quick-info-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-faint);
    margin-bottom: 3px;
}

.quick-info-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sea-900);
    line-height: 1.4;
}

.quick-info-detail {
    font-size: 0.85rem;
    color: var(--text-soft);
    margin-top: 3px;
}

/* ===== ABOUT SECTION ===== */
.about { background: var(--sand-50); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 768px) {
    .about-grid { grid-template-columns: 1.2fr 0.8fr; gap: var(--space-3xl); }
}

.about-content p {
    color: var(--text-soft);
    font-size: 1.06rem;
    line-height: 1.85;
}

.about-content p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 3.2em;
    font-weight: 600;
    float: left;
    line-height: 0.85;
    margin: 0.06em 0.12em 0 0;
    color: var(--sea-700);
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.fact-card {
    background: var(--white);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.fact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--sea-200);
}

.fact-card-icon { font-size: 1.5rem; margin-bottom: var(--space-sm); }

.fact-card h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    color: var(--text);
}

.fact-card p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.65;
}

/* ===== SEASONAL GUIDE ===== */
.seasonal-section { background: var(--white); }

.seasonal-section .section-label,
.seasonal-section h2 {
    display: block;
    text-align: center;
}

.seasonal-section .section-label { display: inline-flex; width: 100%; justify-content: center; }

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.season-tile {
    background: var(--sand-25);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.season-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--sea-200);
}

.season-tile-icon { font-size: 2rem; margin-bottom: var(--space-sm); }

.season-tile h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--sea-800);
}

.season-tile p {
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ===== PARKING SECTION ===== */
.parking-section { background: var(--white); }

.parking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .parking-grid { grid-template-columns: 1fr 1fr; }
}

.parking-card {
    background: var(--sand-25);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-xl);
    position: relative;
    overflow: hidden;
}

.parking-card.featured {
    border-color: var(--sea-200);
    background: var(--sea-50);
}

.parking-card.featured::before {
    content: 'FREE';
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: var(--green-600);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 5px 13px;
    border-radius: 100px;
}

.parking-card h3 { margin-bottom: var(--space-md); }

.parking-card-desc {
    font-size: 0.95rem;
    color: var(--text-soft);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.parking-card-desc--lg { font-size: 0.98rem; }

/* Price tables */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-md) 0;
    font-size: 0.92rem;
}

.price-table caption {
    text-align: left;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: var(--space-sm);
    color: var(--sea-700);
    letter-spacing: 0.02em;
}

.price-table th {
    text-align: left;
    font-weight: 700;
    padding: var(--space-sm) 0;
    border-bottom: 2px solid var(--sea-200);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-faint);
}

.price-table td {
    padding: 10px 0;
    border-bottom: 1px solid var(--sand-200);
    color: var(--text-soft);
}

.price-table td:last-child {
    font-weight: 700;
    text-align: right;
    color: var(--sea-900);
    font-variant-numeric: tabular-nums;
}

.price-table + .price-table { margin-top: var(--space-lg); }

.parking-tip {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: var(--coral-100);
    border-left: 3px solid var(--coral-500);
    padding: var(--space-lg) var(--space-lg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: var(--space-xl);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
}

.parking-tip strong {
    color: var(--coral-700);
    white-space: nowrap;
}

.parking-meta {
    font-size: 0.85rem;
    color: var(--text-faint);
    margin-top: var(--space-lg);
    line-height: 1.6;
}

.parking-alt-heading {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: var(--space-sm);
    margin-top: var(--space-xl);
    color: var(--sea-700);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ===== DOGS SECTION ===== */
.dogs-section { background: var(--sand-50); }

.dogs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .dogs-grid { grid-template-columns: 1fr 1fr; }
}

.season-card {
    background: var(--white);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-xl);
}

.season-badge {
    display: inline-flex;
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.season-badge.summer { background: var(--coral-100); color: var(--coral-700); }
.season-badge.winter { background: var(--sea-100); color: var(--sea-800); }

.rule-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rule-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.6;
}

.rule-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral-500);
    flex-shrink: 0;
    margin-top: 9px;
}

.dogs-map-link {
    font-size: 0.88rem;
    color: var(--text-faint);
    margin-top: var(--space-lg);
}

.dogs-pubs {
    font-size: 0.93rem;
    color: var(--text-soft);
    margin-top: var(--space-lg);
    line-height: 1.7;
}

/* ===== ACTIVITIES / THINGS TO DO ===== */
.activities-section { background: var(--white); }

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.activity-card {
    background: var(--sand-25);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-xl);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sea-200);
}

.activity-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--sea-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.activity-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.activity-card p {
    font-size: 0.93rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ===== NEARBY ATTRACTIONS ===== */
.nearby-section {
    background: var(--sand-50);
    position: relative;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.nearby-card {
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.nearby-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sea-200);
}

.nearby-card-img {
    height: 160px;
    background: linear-gradient(135deg, var(--sea-100), var(--sand-100));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.nearby-card-content { padding: var(--space-lg) var(--space-xl); }

.nearby-card-distance {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--coral-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nearby-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin: var(--space-xs) 0 var(--space-sm);
    line-height: 1.2;
    color: var(--sea-900);
}

.nearby-card p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ===== GETTING THERE ===== */
.getting-there { background: var(--sand-50); }

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.transport-card {
    background: var(--white);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-xl);
}

.transport-card h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--sea-900);
}

.transport-card p,
.transport-card ul {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.transport-card ul {
    list-style: none;
    margin-top: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.transport-card ul li {
    padding-left: 1.4rem;
    position: relative;
}

.transport-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--coral-500);
    font-size: 0.9rem;
}

/* ===== ACCOMMODATION ===== */
.accommodation-section { background: var(--sand-50); }

.accomm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.accomm-card {
    background: var(--white);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-xl);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.accomm-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--sea-200);
}

.accomm-type {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--coral-600);
    margin-bottom: var(--space-sm);
    display: block;
}

.accomm-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
    color: var(--sea-900);
}

.accomm-card p {
    font-size: 0.93rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.accomm-price {
    font-size: 0.85rem;
    color: var(--text-faint);
    margin-top: var(--space-sm);
}

/* ===== FOOD & DRINK ===== */
.food-section { background: var(--white); }

/* ===== SAFETY ===== */
.safety-section { background: var(--sand-50); }

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.safety-card {
    background: var(--white);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-xl);
}

.safety-card.warning {
    border-color: rgba(176, 125, 30, 0.4);
    background: var(--amber-100);
}

.safety-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--sea-900);
}

.safety-card-intro {
    font-size: 0.95rem;
    color: var(--text-soft);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.flag-guide {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-sm) var(--space-md);
    font-size: 0.92rem;
    margin-top: var(--space-md);
    color: var(--text-soft);
    align-items: center;
}

.flag-swatch {
    width: 26px;
    height: 26px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.flag-swatch--red-yellow { background: linear-gradient(to right, #dc2626 50%, #facc15 50%); }
.flag-swatch--chequered { background: repeating-conic-gradient(#1F2E2B 0% 25%, #fff 0% 50%) 50%/12px 12px; }
.flag-swatch--red { background: #dc2626; }
.flag-swatch--orange { background: #f97316; }

.safety-note {
    font-size: 0.85rem;
    color: var(--text-faint);
    margin-top: var(--space-md);
}

/* ===== FAQ ===== */
.faq-section { background: var(--white); }

.faq-section .section-label,
.faq-section h2 {
    display: block;
    text-align: center;
}

.faq-section .section-label { display: inline-flex; width: 100%; justify-content: center; }

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--sand-200); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-lg) 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--sea-900);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    line-height: 1.3;
    transition: color 0.2s ease;
}

.faq-question:hover { color: var(--coral-600); }

.faq-question::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--coral-500);
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    width: 28px;
    text-align: center;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: var(--space-lg);
}

.faq-answer p {
    font-size: 0.98rem;
    color: var(--text-soft);
    line-height: 1.8;
}

/* ===== READ NEXT (content articles) ===== */
.read-next {
    background: var(--sea-50);
    border-left: 3px solid var(--sea-500);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: var(--space-md) var(--space-lg);
    font-size: 0.95rem;
    margin: var(--space-lg) 0;
}

.read-next a { font-weight: 700; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: linear-gradient(150deg, var(--sea-800), var(--sea-900));
    color: var(--white);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% 85%, rgba(27, 127, 116, 0.35) 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 85% 15%, rgba(224, 96, 60, 0.18) 0%, transparent 65%);
}

.newsletter-inner {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-inner h2 {
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.newsletter-inner p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-xl);
    font-size: 0.98rem;
    line-height: 1.7;
}

.signup-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 440px;
    margin: 0 auto;
}

.signup-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.signup-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.signup-form input:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.16);
}

.signup-form button {
    padding: 0.9rem 1.7rem;
    border-radius: 100px;
    border: none;
    background: var(--coral-500);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.signup-form button:hover {
    background: var(--coral-400);
    transform: translateY(-1px);
}

@media (max-width: 500px) {
    .signup-form { flex-direction: column; }
}

.signup-privacy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: var(--space-md);
}

/* ===== HELPFUL LINKS ===== */
.links-section { background: var(--sand-50); }

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.link-group h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--sand-200);
    color: var(--sea-900);
}

.link-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-group li a {
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-soft);
    padding: 2px 0;
    transition: color 0.2s ease;
}

.link-group li a:hover { color: var(--coral-600); }

.link-group li a::before {
    content: '→';
    color: var(--coral-500);
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.link-group li a:hover::before { transform: translateX(3px); }

/* ===== ESSENTIAL INFO BLOCK ===== */
.essential-info {
    background: var(--sea-900);
    padding: var(--space-2xl) 0 0;
    color: var(--white);
}

.essential-info h2 {
    font-size: 1.3rem;
    color: var(--sand-200);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.essential-info-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    list-style: none;
}

.essential-info-links a {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.essential-info-links a:hover {
    background: var(--coral-500);
    border-color: var(--coral-500);
    color: var(--white);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--sea-900);
    color: rgba(255, 255, 255, 0.55);
    padding: var(--space-2xl) 0;
    text-align: center;
    font-size: 0.85rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s ease;
}
.site-footer a:hover { color: var(--white); }

.footer-links {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.88rem;
    padding: 6px 4px;
}

.footer-disclaimer {
    margin-top: var(--space-sm);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.38);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sea-700);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--coral-500);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
    background: linear-gradient(135deg, var(--sea-50), var(--sand-100));
    border-radius: var(--radius-lg);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-faint);
    font-size: 0.85rem;
    overflow: hidden;
    position: relative;
}

.img-placeholder::after {
    content: '📷 Photo placeholder';
    font-size: 0.85rem;
    color: var(--text-faint);
}

/* ===== UTILITIES ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal, .hero-badge, .hero h1, .hero-subtitle, .hero-ctas {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    section { padding: var(--space-2xl) 0; }
    .container { padding: 0 var(--space-lg); }

    .hero {
        min-height: 78vh;
        padding-bottom: var(--space-2xl);
    }

    .quick-info {
        margin-top: 0;
        padding: var(--space-xl) 0;
    }

    .quick-info-grid {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        grid-template-columns: 1fr 1fr;
    }

    .quick-info-card {
        border-right: none;
        border-bottom: 1px solid var(--sand-100);
        padding: var(--space-lg);
    }

    .quick-info-card:nth-child(odd) {
        border-right: 1px solid var(--sand-100);
    }

    .quick-info-card:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .activities-grid { grid-template-columns: 1fr; }
    .nearby-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: clamp(2.6rem, 11vw, 3.2rem); }

    .quick-info-grid { grid-template-columns: 1fr; }

    .quick-info-card {
        border-right: none !important;
        border-bottom: 1px solid var(--sand-100);
    }

    .quick-info-card:last-child { border-bottom: none; }
}

/* ============================================================
   ARTICLE TEMPLATE
   Breadcrumbs, byline, article body, quick-answer, read-next,
   related guides. Used by spoke pages and the about page.
   ============================================================ */

.article {
    background: var(--sand-25);
    padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-3xl);
}

.article-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.article h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
    color: var(--sea-800);
    margin: var(--space-md) 0 var(--space-md);
    letter-spacing: -0.01em;
}

.article p {
    font-size: 1.075rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 var(--space-md);
}

.article h2 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    color: var(--sea-800);
    margin: var(--space-xl) 0 var(--space-md);
    letter-spacing: -0.005em;
}

.article h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--sea-700);
    margin: var(--space-lg) 0 var(--space-sm);
}

.article ul, .article ol {
    padding-left: 1.4em;
    margin: 0 0 var(--space-md);
    color: var(--text);
    line-height: 1.65;
}

.article ul li, .article ol li {
    margin-bottom: 0.45em;
}

.article a {
    color: var(--sea-600);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article a:hover { color: var(--coral-600); }

.article .price-table {
    margin: var(--space-md) 0 var(--space-lg);
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin: 0 0 var(--space-sm);
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35em;
}

.breadcrumbs .crumb {
    display: inline-flex;
    align-items: center;
}

.breadcrumbs .crumb:not(:last-child)::after {
    content: '›';
    margin: 0 0.5em;
    color: var(--text-faint);
}

.breadcrumbs a {
    color: var(--text-soft);
    text-decoration: none;
}

.breadcrumbs a:hover { color: var(--sea-600); text-decoration: underline; }

.breadcrumbs .crumb-current { color: var(--text); }

/* Byline */
.byline {
    font-size: 0.92rem;
    color: var(--text-soft);
    margin: 0 0 var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--sand-200);
}

.byline a {
    color: var(--sea-700);
    text-decoration: none;
    font-weight: 600;
}

.byline a:hover { text-decoration: underline; }

.byline-sep { margin: 0 0.15em; color: var(--text-faint); }

/* Quick-answer box (TL;DR) */
.quick-answer {
    background: var(--sea-50);
    border-left: 4px solid var(--sea-500);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-sm);
    margin: var(--space-md) 0 var(--space-lg);
}

.quick-answer-label {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sea-700);
    margin-bottom: 0.4em;
}

.quick-answer p { margin: 0 0 0.5em; font-size: 1rem; }
.quick-answer p:last-child { margin-bottom: 0; }

/* Local tip box (reuses parking-tip variant). Already styled in main sheet. */

/* Read-next callout */
.read-next {
    background: var(--sand-50);
    border: 1px solid var(--sand-200);
    border-left: 4px solid var(--coral-500);
    padding: var(--space-sm) var(--space-md);
    margin: var(--space-lg) 0;
    border-radius: var(--radius-sm);
    font-size: 0.98rem;
}

.read-next .read-next-label {
    font-weight: 700;
    color: var(--coral-700);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    margin-right: 0.5em;
}

.read-next a {
    color: var(--sea-700);
    font-weight: 500;
}

/* Related guides */
.related-guides {
    margin: var(--space-xl) 0 0;
    padding: var(--space-lg) 0 0;
    border-top: 1px solid var(--sand-200);
}

.related-guides h2 {
    font-size: 1.25rem;
    margin: 0 0 var(--space-md);
    font-family: var(--font-display);
    color: var(--sea-800);
}

.related-guides-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-sm);
}

.related-guides-list li a {
    display: block;
    padding: var(--space-md);
    background: var(--white);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--sea-700);
    font-weight: 500;
    transition: border-color 0.2s, transform 0.2s;
}

.related-guides-list li a:hover {
    border-color: var(--sea-500);
    transform: translateY(-1px);
}

/* About page */
.about-page {
    background: var(--sand-25);
    padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-3xl);
}

.about-page-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.about-page h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: var(--sea-800);
    margin: var(--space-md) 0 var(--space-lg);
}

.about-page p {
    font-size: 1.075rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 var(--space-md);
}

@media (max-width: 600px) {
    .article-inner, .about-page-inner { padding: 0 var(--space-md); }
    .article h1 { font-size: 1.9rem; }
    .article h2 { font-size: 1.35rem; }
}
