/* ===== CSS VARIABLES ===== */
:root {
    --sand-50: #fafaf8;
    --sand-100: #f5f4f0;
    --sand-200: #eae8e1;
    --sand-300: #dbd8cd;
    --sand-400: #c8c3b4;
    --sand-500: #b0a994;
    --sand-600: #948c76;
    --sand-700: #7a735f;
    --sand-800: #5e584a;
    --sand-900: #3d3930;

    --ocean-50: #f0f8fa;
    --ocean-100: #d6eef4;
    --ocean-200: #aadce9;
    --ocean-300: #6bc2d8;
    --ocean-400: #2ea5c2;
    --ocean-500: #148ba6;
    --ocean-600: #0e6f87;
    --ocean-700: #0d5a6e;
    --ocean-800: #0f4858;
    --ocean-900: #0a3340;

    --driftwood-50: #f6f6f5;
    --driftwood-100: #ececea;
    --driftwood-200: #d8d7d3;
    --driftwood-300: #bfbdb7;
    --driftwood-400: #a3a098;
    --driftwood-500: #8a867d;
    --driftwood-600: #726e66;
    --driftwood-700: #5d5a53;
    --driftwood-800: #4d4a44;
    --driftwood-900: #43403b;

    --sky-50: #f4f9fb;
    --sky-100: #e5f2f7;
    --sky-200: #c0e2ee;

    --sunset-400: #e88d5e;
    --sunset-500: #d47340;
    --sunset-600: #b85a2a;

    --seagrass-500: #3d9070;
    --seagrass-600: #2d7358;

    --white: #ffffff;
    --text-primary: #1a1d1f;
    --text-secondary: #4e5459;
    --text-light: #8b9299;

    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.1);

    --max-width: 1200px;
    --nav-height: 60px;
}

/* ===== 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: 16px;
    line-height: 1.65;
    color: var(--text-primary);
    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(--ocean-600); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ocean-700); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

h2 { font-size: clamp(1.75rem, 4vw, 2.8rem); margin-bottom: var(--space-lg); letter-spacing: -0.02em; }
h3 { font-family: var(--font-body); font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; line-height: 1.3; margin-bottom: var(--space-md); }

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ocean-500);
    margin-bottom: var(--space-xs);
    display: inline-block;
    padding: 4px 0;
    border-bottom: 2px solid var(--ocean-200);
}

.section-intro {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 680px;
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

/* ===== NAVIGATION ===== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(250, 250, 248, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    letter-spacing: -0.01em;
}

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

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

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-500);
    transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--ocean-600); }

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(24px);
    z-index: 999;
    padding: var(--space-xl);
    overflow-y: auto;
}

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

.mobile-menu a {
    display: block;
    padding: var(--space-md) 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--sand-200);
}

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

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
    overflow: hidden;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
    letter-spacing: 0.02em;
}

.hero h1 {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    line-height: 1.0;
    margin-bottom: var(--space-lg);
    color: var(--white);
    letter-spacing: -0.03em;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4);
}

.hero h1 em {
    font-style: italic;
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    color: var(--white);
    max-width: 560px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.65;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.35);
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.15s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--ocean-600);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--ocean-700);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(23,115,152,0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--sand-300);
}
.btn-secondary:hover {
    background: var(--sand-100);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ===== QUICK INFO BAR ===== */
.quick-info {
    background: var(--white);
    border-top: 1px solid var(--sand-200);
    border-bottom: 1px solid var(--sand-200);
    padding: var(--space-2xl) 0;
    position: relative;
}

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

.quick-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transition: background 0.2s;
}

.quick-info-card:hover {
    background: var(--sand-50);
}

.quick-info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.quick-info-icon.parking { background: var(--ocean-100); }
.quick-info-icon.dogs { background: #fef3e2; }
.quick-info-icon.tides { background: #e8f5e9; }
.quick-info-icon.travel { background: #f3e8ff; }

.quick-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 2px;
}

.quick-info-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

.quick-info-detail {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* ===== 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-secondary);
    font-size: 1.05rem;
}

.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);
    transition: transform 0.2s, box-shadow 0.2s;
}

.fact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.fact-card h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.fact-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

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

/* ===== 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-50);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
}

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

.parking-card.featured::before {
    content: 'FREE';
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--seagrass-500);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 100px;
}

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

.parking-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

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

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-md) 0;
    font-size: 0.9rem;
}

.price-table caption {
    text-align: left;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    color: var(--ocean-600);
}

.price-table th {
    text-align: left;
    font-weight: 600;
    padding: var(--space-sm) 0;
    border-bottom: 2px solid var(--sand-300);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.price-table td {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--sand-200);
}

.price-table td:last-child {
    font-weight: 600;
    text-align: right;
    color: var(--ocean-700);
}

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

.parking-tip {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    background: rgba(232,149,106,0.1);
    border-left: 3px solid var(--sunset-500);
    padding: var(--space-md);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: var(--space-lg);
    font-size: 0.9rem;
}

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

.parking-meta {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: var(--space-md);
}

.parking-alt-heading {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    margin-top: var(--space-xl);
    color: var(--ocean-600);
}

/* ===== 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);
}

.season-badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.season-badge.summer { background: #fef3e2; color: #b45309; }
.season-badge.winter { background: var(--ocean-100); color: var(--ocean-700); }

.rule-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

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

.rule-list li::before {
    content: '•';
    color: var(--ocean-500);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}

.dogs-map-link {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: var(--space-md);
}

.dogs-pubs {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: var(--space-lg);
}

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

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

.activity-card {
    background: var(--sand-50);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: transform 0.2s, box-shadow 0.2s;
}

.activity-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.activity-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

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

.activity-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

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

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 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);
}

.transport-card h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

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

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

.transport-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ocean-500);
}

/* ===== NEARBY SECTION ===== */
.nearby-section {
    background: var(--white);
    position: relative;
}

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

.nearby-card {
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--sand-50);
    transition: transform 0.2s, box-shadow 0.2s;
}

.nearby-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

.nearby-card-distance {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ocean-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nearby-card h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; margin-bottom: var(--space-sm); line-height: 1.3; }
.nearby-card p { font-size: 0.9rem; color: var(--text-secondary); }

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

.accomm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 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);
    transition: transform 0.2s, box-shadow 0.2s;
}

.accomm-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.accomm-card h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; margin-bottom: var(--space-sm); line-height: 1.3; }
.accomm-card p { font-size: 0.9rem; color: var(--text-secondary); }
.accomm-price { font-size: 0.85rem; color: var(--text-light); 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(280px, 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);
}

.safety-card.warning {
    border-color: #fbbf24;
    background: #fffbeb;
}

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

.flag-guide {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
    margin-top: var(--space-md);
}

.flag-swatch {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--sand-300);
}

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

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

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

.faq-list {
    max-width: 800px;
    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-body);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    letter-spacing: -0.01em;
}

.faq-question::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--ocean-500);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

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

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

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

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

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

.season-tile p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: linear-gradient(145deg, var(--ocean-900), var(--ocean-700), var(--ocean-600));
    color: var(--white);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

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

.newsletter-inner h2 { color: var(--white); margin-bottom: var(--space-md); }

.newsletter-inner p {
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-xl);
}

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

.signup-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}

.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.15); }

.signup-form button {
    padding: 0.8rem 1.4rem;
    border-radius: var(--radius-md);
    border: none;
    background: var(--white);
    color: var(--ocean-700);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}

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

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

.signup-privacy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    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-lg);
}

.link-group h3 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--ocean-200);
}

.link-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.link-group li a {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.link-group li a::before {
    content: '→';
    color: var(--ocean-500);
    font-size: 0.85rem;
}

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

.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: var(--white); }

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

.footer-disclaimer {
    margin-top: var(--space-sm);
    font-size: 0.78rem;
}

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

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

.back-to-top:hover {
    background: var(--ocean-700);
    transform: translateY(-2px);
}

/* ===== 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;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.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; }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    section { padding: var(--space-2xl) 0; }
    .container { padding: 0 var(--space-md); }
    .hero { min-height: 60vh; }
}
