/* ============================================
   My Boat Club — Premium Nautical Design
   ============================================ */

/* --- Variables --- */
:root {
    --navy: #0B1D3A;
    --navy-light: #112B52;
    --gold: #C9A96E;
    --gold-light: #D4BA8A;
    --gold-dark: #B08C4A;
    --white: #FFFFFF;
    --off-white: #F8F7F5;
    --cream: #F3F0EB;
    --charcoal: #1A1A2E;
    --grey: #6B7280;
    --grey-light: #E5E7EB;
    --grey-lighter: #F3F4F6;
    --teal: #1B7A8A;
    --teal-dark: #156A78;
    --teal-light: #E0F4F7;
    --font-heading: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --content-width: 720px;
    --radius: 8px;
    --shadow: 0 2px 8px rgba(11, 29, 58, 0.08);
    --shadow-lg: 0 8px 30px rgba(11, 29, 58, 0.12);
    --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.7;
    background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.3;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 1.75rem; margin-top: 2.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); }
h3 { font-size: 1.35rem; margin-top: 2rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1.25rem; }
ul, ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }
blockquote {
    border-left: 4px solid var(--gold);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--off-white);
    font-style: italic;
    color: var(--grey);
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}
th, td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--grey-light);
}
th {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    font-family: var(--font-body);
}
tr:nth-child(even) { background: var(--off-white); }
hr {
    border: none;
    height: 2px;
    background: var(--grey-light);
    margin: 2.5rem 0;
}

/* --- Section Label (Seafarer-style uppercase tag) --- */
.section-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* --- Section Heading (no border, centered for homepage) --- */
.section-heading {
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 3.5rem;
    font-size: 2.2rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--navy);
}
.btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--off-white);
    border-color: var(--off-white);
    color: var(--navy);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--white);
}

/* --- Navigation --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--grey-light);
    transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.header-scrolled {
    box-shadow: var(--shadow);
}

/* Transparent header on homepage */
.header-transparent {
    position: fixed;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom-color: transparent;
}
.header-transparent .logo-text {
    color: var(--white);
}
.header-transparent .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}
.header-transparent .nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}
.header-transparent .nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
}
.header-transparent .nav-toggle-bar {
    background: var(--white);
}
/* Once scrolled, revert to solid */
.header-transparent.header-scrolled {
    background: var(--white);
    border-bottom-color: var(--grey-light);
}
.header-transparent.header-scrolled .logo-text {
    color: var(--navy);
}
.header-transparent.header-scrolled .nav-links a {
    color: var(--charcoal);
}
.header-transparent.header-scrolled .nav-links a:hover {
    color: var(--teal);
    background: var(--off-white);
}
.header-transparent.header-scrolled .nav-toggle-bar {
    background: var(--navy);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.nav-logo {
    text-decoration: none;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy);
    transition: color var(--transition);
}
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}
.nav-links a {
    display: block;
    padding: 8px 16px;
    color: var(--charcoal);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all var(--transition);
    letter-spacing: 0.2px;
}
.nav-links a:hover {
    color: var(--teal);
    background: var(--off-white);
}
.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 600 !important;
}
.nav-cta:hover {
    background: var(--gold-dark) !important;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px 0;
    z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--charcoal) !important;
}
.nav-dropdown-menu a:hover {
    background: var(--off-white) !important;
    color: var(--teal) !important;
}

/* Mobile nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all var(--transition);
}
.nav-toggle-active .nav-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle-active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle-active .nav-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 24px;
        overflow-y: auto;
    }
    .nav-open { display: block; }
    .nav-links {
        flex-direction: column;
        gap: 4px;
    }
    .nav-links a {
        padding: 12px 16px;
        font-size: 1.1rem;
        color: var(--charcoal) !important;
    }
    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 0 16px;
        display: none;
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
    /* On mobile, transparent header mobile menu should be solid */
    .header-transparent .nav-menu {
        background: var(--white);
    }
}

/* --- Breadcrumbs --- */
.breadcrumb {
    background: var(--off-white);
    padding: 12px 0;
    font-size: 0.85rem;
}
.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    margin: 0;
}
.breadcrumb-item::after {
    content: "/";
    margin-left: 8px;
    color: var(--grey);
}
.breadcrumb-item:last-child::after { content: ""; }
.breadcrumb-item a { color: var(--teal); }
.breadcrumb-active { color: var(--grey); }

/* --- Page Content (core pages) --- */
.page-content {
    padding: 3rem 0;
}
.page-content .container {
    max-width: var(--content-width);
}

/* ============================================
   HOMEPAGE — Seafarer-Inspired Sections
   ============================================ */

/* --- Hero Section (homepage) --- */
.hero-image {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/static/images/hero-sydney-harbour-full.jpg') center center / cover no-repeat;
    text-align: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 29, 58, 0.5) 0%,
        rgba(11, 29, 58, 0.3) 40%,
        rgba(11, 29, 58, 0.55) 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 6rem 24px 4rem;
}
.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}
.hero-content h1 {
    color: var(--white);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.5px;
}
.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 400;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* Scroll hint arrow */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll-hint span {
    display: block;
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    animation: scrollHint 2s infinite;
}
@keyframes scrollHint {
    0%   { opacity: 0; transform: rotate(45deg) translate(0, 0); }
    50%  { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(8px, 8px); }
}

@media (max-width: 768px) {
    .hero-image { min-height: 100vh; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-description { font-size: 1.05rem; }
    .hero-content { padding: 5rem 20px 3rem; }
    .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; }
}

/* --- Intro Section --- */
.intro-section {
    padding: 7rem 0;
    background: var(--white);
}
.intro-container {
    max-width: 680px;
    margin: 0 auto;
}
.intro-text h2 {
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 0;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}
.intro-text p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--grey);
}

/* --- Image Band (full-width photo break) --- */
.image-band {
    position: relative;
    height: 50vh;
    min-height: 360px;
    overflow: hidden;
}
.image-band-inner {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .image-band { height: 35vh; min-height: 240px; }
}

/* --- Features Section (v2 — refined) --- */
.features-section {
    padding: 7rem 0;
    background: var(--off-white);
}
.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.feature-v2 {
    text-align: center;
    padding: 2rem 1.5rem;
}
.feature-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1.5rem;
}
.feature-v2-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}
.feature-v2 p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .features-grid-v2 { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- Boat Split Section (image + text side by side) --- */
.boat-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}
.boat-split-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}
.boat-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    background: var(--white);
}
.boat-split-content h2 {
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 0;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}
.boat-split-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--grey);
}
.boat-specs-v2 {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2.5rem;
}
.boat-specs-v2 li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--grey-light);
    font-size: 0.95rem;
    color: var(--charcoal);
}
.boat-specs-v2 li:last-child { border-bottom: none; }
.boat-specs-v2 li span {
    display: inline-block;
    width: 100px;
    font-weight: 600;
    color: var(--navy);
}

@media (max-width: 960px) {
    .boat-split { grid-template-columns: 1fr; }
    .boat-split-image { min-height: 300px; }
    .boat-split-content { padding: 3rem 2rem; }
}

/* --- Steps Section (v2 — refined) --- */
.steps-section {
    padding: 7rem 0;
    background: var(--cream);
}
.steps-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.step-v2 {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}
.step-v2-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1.25rem;
}
.step-v2-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 1.25rem;
}
.step-v2-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}
.step-v2 p {
    font-size: 0.92rem;
    color: var(--grey);
    line-height: 1.65;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .steps-grid-v2 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 480px) {
    .steps-grid-v2 { grid-template-columns: 1fr; gap: 1rem; }
}

/* --- Audience Section --- */
.audience-section {
    padding: 7rem 0;
    background: var(--white);
}
.audience-container {
    max-width: 800px;
    margin: 0 auto;
}
.audience-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--grey);
    max-width: 640px;
    margin: -2rem auto 3rem;
    line-height: 1.8;
}
.audience-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.audience-v2 {
    padding: 1.25rem 1.5rem;
    background: var(--off-white);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.5;
}
.audience-v2 strong {
    color: var(--navy);
}

@media (max-width: 480px) {
    .audience-grid-v2 { grid-template-columns: 1fr; }
}

/* --- Guides / Pillar Links Section --- */
.guides-section {
    padding: 7rem 0;
    background: var(--off-white);
}
.pillar-links-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.pillar-v2 {
    display: block;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    color: var(--charcoal);
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
}
.pillar-v2:hover {
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--gold);
    color: var(--charcoal);
}
.pillar-v2-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.pillar-v2:hover .pillar-v2-title {
    color: var(--teal);
}
.pillar-v2 p {
    font-size: 0.9rem;
    color: var(--grey);
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .pillar-links-v2 { grid-template-columns: 1fr; }
}

/* --- Final CTA (v2 — Seafarer-style dark) --- */
.final-cta-v2 {
    padding: 7rem 0;
    background: var(--white);
}
.cta-box-v2 {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 5rem 3.5rem;
    border-radius: var(--radius);
}
.cta-box-v2 h2 {
    color: var(--white);
    border-bottom: none;
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 1.25rem;
}
.cta-box-v2 p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.cta-buttons .btn-secondary:hover { background: rgba(255,255,255,0.1); color: var(--white); }


/* ============================================
   LEGACY HOMEPAGE STYLES (kept for compatibility)
   ============================================ */

/* --- Hero Section (basic — non-homepage) --- */
.hero {
    background: var(--navy);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}
.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}
.hero .btn { margin: 0 8px; }

@media (max-width: 768px) {
    .hero { padding: 3rem 0; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
}

/* --- How It Works Steps (legacy) --- */
.how-it-works {
    padding: 5rem 0;
    background: var(--white);
}
.how-it-works h2 {
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 3rem;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.step {
    text-align: center;
    padding: 1.5rem 1rem;
}
.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
}
.step-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}
.step p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 480px) {
    .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* --- Audience Grid (legacy) --- */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}
.audience-item {
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
    font-size: 0.95rem;
    color: var(--charcoal);
    box-shadow: var(--shadow);
}
.audience-item strong {
    color: var(--navy);
}

@media (max-width: 480px) {
    .audience-grid { grid-template-columns: 1fr; }
}

/* --- Boat Section (legacy) --- */
.boat-section {
    padding: 5rem 0;
    background: var(--white);
}
.boat-section h2 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1.5rem;
}
.boat-content {
    max-width: 720px;
    margin: 0 auto;
}
.boat-specs {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}
.boat-specs li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--grey-light);
    font-size: 0.95rem;
}
.boat-specs li:last-child { border-bottom: none; }

/* --- Feature Card (legacy) --- */
.feature-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border-radius: 50%;
    color: var(--teal);
}
.feature-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

/* --- Pillar Title (legacy) --- */
.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}
.pillar-link-card:hover .pillar-title {
    color: var(--teal);
}

/* --- Final CTA (legacy) --- */
.final-cta {
    padding: 5rem 0;
    background: var(--white);
}

/* --- Features Grid (legacy) --- */
.features {
    padding: 4rem 0;
    background: var(--off-white);
}
.features h2 {
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 2.5rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.feature-card p {
    color: var(--grey);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* --- Section (legacy) --- */
.section {
    padding: 4rem 0;
}
.section-alt {
    background: var(--off-white);
}
.section h2 {
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
}

/* --- Membership Cards --- */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.membership-card {
    background: var(--white);
    border: 2px solid var(--grey-light);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition);
}
.membership-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    position: relative;
}
.membership-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
}
.membership-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.membership-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 1rem 0;
}
.membership-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey);
}
.membership-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 1.5rem 0;
}
.membership-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--grey-lighter);
    padding-left: 28px;
    position: relative;
    color: var(--charcoal);
}
.membership-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

/* ============================================
   ARTICLE PAGES
   ============================================ */

.article-page {
    padding: 2rem 0 4rem;
}
.article-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.article-header {
    max-width: var(--content-width);
    margin: 0 auto 2rem;
}
.article-category {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.article-meta {
    color: var(--grey);
    font-size: 0.9rem;
    margin-top: 0.75rem;
}
.article-separator { margin: 0 8px; }

/* Article Layout (sidebar TOC) */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 3rem;
    max-width: calc(var(--content-width) + 240px + 3rem);
    margin: 0 auto;
}
.article-body {
    max-width: var(--content-width);
    min-width: 0;
}
.article-body h2 { scroll-margin-top: 100px; }
.article-body h3 { scroll-margin-top: 100px; }

.article-body h2[id], .article-body h3[id] {
    scroll-margin-top: 100px;
}

/* Desktop TOC */
.article-toc {
    position: relative;
}
.toc-wrapper {
    position: sticky;
    top: 96px;
}
.toc-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey);
    margin-bottom: 1rem;
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 0;
}
.toc-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.toc-nav li {
    margin-bottom: 0;
}
.toc-h2 a {
    display: block;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: var(--grey);
    border-left: 2px solid var(--grey-light);
    transition: all var(--transition);
}
.toc-h3 a {
    display: block;
    padding: 4px 12px 4px 24px;
    font-size: 0.8rem;
    color: var(--grey);
    border-left: 2px solid var(--grey-light);
}
.toc-nav a:hover,
.toc-nav a.toc-active {
    color: var(--teal);
    border-left-color: var(--teal);
}

/* Mobile TOC */
.mobile-toc {
    display: none;
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}
.mobile-toc summary {
    font-weight: 600;
    cursor: pointer;
    color: var(--navy);
}
.mobile-toc ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}
.mobile-toc .toc-h2 a {
    border-left: none;
    padding: 6px 0;
}
.mobile-toc .toc-h3 a {
    border-left: none;
    padding: 4px 0 4px 16px;
}

@media (max-width: 960px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-toc { display: none; }
    .mobile-toc { display: block; }
}

/* --- Article Attribution --- */
.article-attribution {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--off-white);
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
}
.article-attribution strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}
.article-attribution p {
    color: var(--grey);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.attribution-link {
    font-weight: 600;
    color: var(--teal);
}

/* --- Related Articles --- */
.related-articles {
    padding: 4rem 0;
    background: var(--off-white);
}
.related-articles h2 {
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 2rem;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.related-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    display: block;
    color: var(--charcoal);
}
.related-card:hover {
    box-shadow: var(--shadow-lg);
    color: var(--charcoal);
}
.related-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}
.related-card p {
    font-size: 0.9rem;
    color: var(--grey);
    margin-bottom: 0.75rem;
}
.related-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal);
}

/* --- Article CTA (legacy) --- */
.article-cta {
    padding: 4rem 0;
}
.cta-box {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 3.5rem;
    border-radius: var(--radius);
}
.cta-box h2 {
    color: var(--white);
    border-bottom: none;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
}
.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto 2rem;
}

/* --- Pillar Page Links (legacy) --- */
.pillar-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.pillar-link-card {
    display: block;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
    color: var(--charcoal);
    transition: all var(--transition);
}
.pillar-link-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    color: var(--charcoal);
}
.pillar-link-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--navy);
}
.pillar-link-card p {
    font-size: 0.9rem;
    color: var(--grey);
    margin-bottom: 0;
}

/* --- Contact Form --- */
.contact-form {
    max-width: 560px;
    margin: 2rem auto;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--grey-light);
    border-radius: var(--radius);
    transition: border-color var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
}
.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    display: block;
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer-contact a {
    color: var(--gold);
}
.footer-links h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    font-size: 0.85rem;
    text-align: center;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.5); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand { grid-column: 1 / -1; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-3 { margin-bottom: 3rem; }

/* ============================================
   CORE PAGE STYLES
   ============================================ */

/* --- Page Hero --- */
.page-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--white);
    padding: 8rem 0 5rem;
}
.page-hero--short {
    min-height: 40vh;
    padding: 7rem 0 4rem;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,29,58,0.6) 0%, rgba(11,29,58,0.75) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}
.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.15;
}
.page-hero-content p:not(.section-label) {
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* --- Membership Cards (redesigned) --- */
.membership-section {
    padding: 5rem 0;
}
.membership-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.membership-card {
    border: 1px solid var(--grey-light);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    position: relative;
    transition: box-shadow var(--transition);
}
.membership-card:hover {
    box-shadow: var(--shadow-lg);
}
.membership-card--featured {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.15);
}
.membership-card__badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: 0 0 4px 4px;
}
.membership-card__header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--grey-light);
}
.membership-card__header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.membership-card__price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}
.membership-card__price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey);
}
.membership-card__body {
    padding: 2rem;
}
.membership-card__body p {
    color: var(--grey);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.membership-card__body ul {
    list-style: none;
    margin-bottom: 2rem;
}
.membership-card__body ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--charcoal);
    border-bottom: 1px solid var(--grey-lighter);
}
.membership-card__body ul li:last-child { border-bottom: none; }
.membership-card__body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}
.membership-card__body .btn {
    display: block;
    text-align: center;
}

/* --- Info Split (image + text side by side) --- */
.info-section {
    padding: 5rem 0;
}
.info-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 450px;
}
.info-split.reverse {
    direction: rtl;
}
.info-split.reverse > * {
    direction: ltr;
}
.info-split-text {
    padding: 3rem 4rem 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.info-split.reverse .info-split-text {
    padding: 3rem 0 3rem 4rem;
}
.info-split-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1.5rem;
}
.info-split-text p {
    color: var(--grey);
    margin-bottom: 1rem;
    line-height: 1.7;
}
.info-split-text .styled-list {
    list-style: none;
    margin: 1rem 0 1.5rem;
}
.info-split-text .styled-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--charcoal);
    font-size: 0.95rem;
}
.info-split-text .styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}
.info-split-image {
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    min-height: 400px;
}

/* --- Inclusions Grid --- */
.inclusions-section {
    padding: 5rem 0;
    background: var(--cream);
}
.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.inclusion-item {
    text-align: center;
    padding: 1.5rem 1rem;
}
.inclusion-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.inclusion-item p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.6;
}

/* --- Comparison Table --- */
.comparison-section {
    padding: 5rem 0;
}
.comparison-table-wrap {
    max-width: 800px;
    margin: 2rem auto 0;
    overflow-x: auto;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.comparison-table th {
    background: var(--navy);
    color: var(--white);
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.comparison-table td {
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid var(--grey-light);
    color: var(--charcoal);
}
.comparison-table tr:nth-child(even) td {
    background: var(--off-white);
}
.comparison-table .comparison-total td {
    background: var(--cream);
    font-weight: 600;
    border-bottom: 2px solid var(--gold);
}

/* --- FAQ Grid --- */
.faq-section {
    padding: 5rem 0;
    background: var(--cream);
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--grey-light);
}
.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.75rem;
}
.faq-item p {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.6;
}

/* --- Step Rows (How It Works page) --- */
.steps-section-page {
    padding: 5rem 0;
}
.step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}
.step-row:last-child {
    margin-bottom: 0;
}
.step-row.reverse {
    direction: rtl;
}
.step-row.reverse > * {
    direction: ltr;
}
.step-row-image {
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    min-height: 350px;
    aspect-ratio: 4/3;
}
.step-row-content {
    padding: 1rem 0;
}
.step-row-content .step-v2-number {
    margin-bottom: 1rem;
}
.step-row-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1rem;
}
.step-row-content p {
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* --- Bring Grid --- */
.bring-section {
    padding: 5rem 0;
}
.bring-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.bring-item {
    background: var(--white);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
    font-size: 0.95rem;
    color: var(--charcoal);
}

/* --- Awards Grid --- */
.awards-section {
    padding: 5rem 0;
}
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.award-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--grey-light);
}
.award-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.award-item p {
    font-size: 0.85rem;
    color: var(--grey);
}

/* --- Contact Page --- */
.contact-section {
    padding: 5rem 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info h2,
.contact-form-wrap h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1rem;
}
.contact-info > p {
    color: var(--grey);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.contact-details {
    margin-bottom: 2.5rem;
}
.contact-detail {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--grey-light);
}
.contact-detail:first-child { border-top: 1px solid var(--grey-light); }
.contact-detail-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.contact-detail a {
    color: var(--navy);
    font-weight: 500;
    font-size: 1.05rem;
}
.contact-detail p {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.5;
}
.contact-links {
    display: flex;
    gap: 1rem;
}
.contact-form-wrap {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: var(--radius);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--grey);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--grey-light);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.form-group textarea {
    resize: vertical;
}

/* --- Utility --- */
.alt-bg { background: var(--cream); }
.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.85rem; }

/* --- Core Page Responsive --- */
@media (max-width: 768px) {
    .page-hero { min-height: 45vh; padding: 7rem 0 3rem; }
    .page-hero--short { min-height: 35vh; }
    .page-hero-content h1 { font-size: 2.2rem; }

    .membership-cards { grid-template-columns: 1fr; gap: 2rem; }
    .membership-card__header { padding: 2rem 1.5rem 1.2rem; }
    .membership-card__price { font-size: 2rem; }
    .membership-card__body { padding: 1.5rem; }

    .info-split { grid-template-columns: 1fr; gap: 2rem; min-height: auto; }
    .info-split.reverse { direction: ltr; }
    .info-split-text { padding: 0 !important; }
    .info-split-image { min-height: 280px; }

    .inclusions-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    .faq-grid { grid-template-columns: 1fr; }

    .step-row { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
    .step-row.reverse { direction: ltr; }
    .step-row-image { min-height: 250px; }

    .bring-grid { grid-template-columns: 1fr; }

    .awards-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-form-wrap { padding: 1.5rem; }
    .contact-links { flex-direction: column; }
}

@media (max-width: 480px) {
    .page-hero-content h1 { font-size: 1.8rem; }
    .inclusions-grid { grid-template-columns: 1fr; }
    .awards-grid { grid-template-columns: 1fr; }
    .membership-card__price { font-size: 1.8rem; }
}

/* --- Print --- */
@media print {
    .site-header, .site-footer, .article-toc, .mobile-toc,
    .article-cta, .related-articles, .nav-toggle { display: none; }
    .article-body { max-width: 100%; }
}
