/* ═══════════════════════════════════════════════════════════════
   WaterEgo — Awwwards-Level Design System
   3D Effects, Glassmorphism, Floating Orbs, Animations, Layout
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
    --deep-ocean: #0B4F6C;
    --bright-water: #01BAEF;
    --sunset-orange: #E8702A;
    --emerald: #20BF55;
    --deep-navy: #1A1E2E;
    --deep-black: #0d1117;
    --mist-white: #F0F5F9;
    --sand: #E8DCC8;
    --glass-white: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --ocean-gradient: linear-gradient(135deg, #0B4F6C, #01BAEF);
    --hero-overlay: linear-gradient(180deg, rgba(26,30,46,0.7) 0%, rgba(11,79,108,0.5) 100%);
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-editorial: 'DM Serif Display', serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
    --shadow-card: 0 2px 8px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.2), 0 24px 48px rgba(0,0,0,0.15);
    --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.2), 0 16px 40px rgba(0,0,0,0.25), 0 32px 64px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 60px rgba(1, 186, 239, 0.15);
    --space-xs: 1.5rem;
    --space-sm: 2.5rem;
    --space-md: 3.5rem;
    --space-lg: 4.5rem;
    --space-xl: 7rem;
}


/* ─── Animation Pre-hide (prevents blink before GSAP loads) ── */
[data-animate="hero"] .hero-eyebrow,
[data-animate="hero"] .hero-headline,
[data-animate="hero"] .hero-description,
[data-animate="hero"] .hero-ctas {
    opacity: 0;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: #fff;
    background: #fff;
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; cursor: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
img { max-width: 100%; height: auto; }


/* ─── Custom Cursor ─────────────────────────────────────────── */
.cursor-outer {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1.5px solid var(--bright-water);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    mix-blend-mode: difference;
}

.cursor-inner {
    position: fixed;
    top: 0; left: 0;
    width: 6px; height: 6px;
    background: var(--bright-water);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.15s var(--ease-out), height 0.15s var(--ease-out), background 0.15s ease, opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-outer,
body:hover .cursor-inner { opacity: 1; }

.cursor-outer.cursor-hover {
    width: 64px; height: 64px;
    border-color: var(--sunset-orange);
    background: rgba(232, 112, 42, 0.06);
}
.cursor-inner.cursor-hover { width: 4px; height: 4px; background: var(--sunset-orange); }


/* ─── Noise Texture ─────────────────────────────────────────── */
.hero-noise, .newsletter-noise {
    position: absolute; inset: 0; z-index: 2;
    opacity: 0.03; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}


/* ─── Floating Gradient Orbs ────────────────────────────────── */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(80px);
}

.orb-water {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(1, 186, 239, 0.12), transparent 70%);
}

.orb-orange {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(232, 112, 42, 0.1), transparent 70%);
}

.orb-emerald {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(32, 191, 85, 0.08), transparent 70%);
}


/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600; font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 1rem 2.2rem;
    border-radius: 60px;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.btn-primary {
    background: var(--sunset-orange);
    color: #fff;
    box-shadow: 0 4px 20px rgba(232, 112, 42, 0.3), 0 8px 32px rgba(232, 112, 42, 0.15);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 112, 42, 0.4), 0 16px 48px rgba(232, 112, 42, 0.2);
}

.btn-water {
    background: var(--bright-water);
    color: #fff;
    box-shadow: 0 4px 20px rgba(1, 186, 239, 0.3);
}
.btn-water:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(1, 186, 239, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
/* Admin bar offset for logged-in users */
.admin-bar .site-header { top: 32px; }
.admin-bar .mobile-menu { top: 32px; }
@media (max-width: 782px) {
    .admin-bar .site-header { top: 46px; }
    .admin-bar .mobile-menu { top: 46px; }
}

.site-header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    padding: 0 2rem;
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(26, 30, 46, 0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.header-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 80px;
}

.site-logo, .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}
.site-logo:hover { opacity: 0.8; }
.logo-water { color: #fff; }
.logo-ego { color: var(--bright-water); }

/* Navigation */
.main-nav { display: none; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: #fff;
    padding: 2rem 1.2rem;
    transition: color 0.3s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.nav-link:hover { color: var(--bright-water); text-shadow: 0 1px 8px rgba(1, 186, 239, 0.4); }

/* Mega Panel */
.mega-panel {
    position: absolute; top: 100%;
    left: 50%; transform: translateX(-50%) translateY(8px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: all 0.35s var(--ease-out);
    padding-top: 0.5rem;
}
.nav-item:hover .mega-panel {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.mega-panel-inner {
    background: rgba(26, 30, 46, 0.94);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem 2rem; min-width: 260px;
    box-shadow: var(--shadow-card), 0 0 80px rgba(1, 186, 239, 0.05);
}
.mega-col { display: flex; flex-direction: column; gap: 0.2rem; }
.mega-link {
    font-family: var(--font-body); font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 0.75rem; border-radius: 8px;
    transition: all 0.25s ease;
}
.mega-link:hover { color: #fff; background: rgba(255, 255, 255, 0.06); padding-left: 1rem; }
.mega-footer { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--glass-border); }
.mega-cta {
    font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--sunset-orange); transition: color 0.3s ease;
}
.mega-cta:hover { color: var(--bright-water); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 1rem; }
.search-toggle { color: rgba(255,255,255,0.6); transition: color 0.3s ease; padding: 0.5rem; }
.search-toggle:hover { color: var(--bright-water); }
.header-cta {
    display: none;
    font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    background: var(--sunset-orange); color: #fff;
    padding: 0.65rem 1.6rem; border-radius: 60px;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 2px 12px rgba(232, 112, 42, 0.25);
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(232, 112, 42, 0.4); }

/* Mobile Toggle */
.mobile-toggle { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.35s var(--ease-out); transform-origin: center; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ═══════════════════════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════════════════════ */
.mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(13, 17, 23, 0.97);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    opacity: 0; visibility: hidden;
    transition: all 0.4s var(--ease-out);
    overflow-y: auto;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu-inner { padding: 7rem 2rem 3rem; max-width: 480px; margin: 0 auto; }
.mobile-accordion { border-bottom: 1px solid var(--glass-border); }
.accordion-trigger {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 0;
    font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; color: #fff;
    transition: color 0.3s ease;
}
.accordion-trigger:hover { color: var(--bright-water); }
.accordion-icon { font-size: 1.4rem; font-weight: 300; color: var(--bright-water); transition: transform 0.3s var(--ease-out); }
.accordion-trigger.open .accordion-icon { transform: rotate(45deg); }
.accordion-panel { display: none; padding: 0 0 1.2rem 0.5rem; }
.accordion-panel.open { display: flex; flex-direction: column; gap: 0.3rem; }
.accordion-panel a { font-family: var(--font-body); font-size: 0.95rem; color: rgba(255,255,255,0.5); padding: 0.5rem 0; transition: color 0.25s ease; }
.accordion-panel a:hover { color: var(--bright-water); }
.mobile-cta {
    display: block; text-align: center; margin-top: 2rem; padding: 1rem;
    font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
    text-transform: uppercase; letter-spacing: 0.1em;
    background: var(--sunset-orange); color: #fff; border-radius: 60px;
}


/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: -20px;
    background-image: var(--bg-image);
    background-size: cover; background-position: center;
    will-change: transform;
}

/* Layered gradient hero (Irish lake at golden hour) */
.hero-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(1, 186, 239, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(232, 112, 42, 0.06) 0%, transparent 40%),
        linear-gradient(180deg,
            #0d1117 0%,
            #1A1E2E 15%,
            #0B4F6C 45%,
            #0d6d94 65%,
            #c45a1a 92%,
            #E8702A 100%
        );
}

.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(11, 79, 108, 0.3) 0%, transparent 60%),
        linear-gradient(180deg,
            rgba(13, 17, 23, 0.35) 0%,
            rgba(13, 17, 23, 0.1) 40%,
            rgba(13, 17, 23, 0.15) 70%,
            rgba(13, 17, 23, 0.3) 100%
        );
}

/* Hero video background */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Hide the static image fallback once video plays */
.hero-video-wrap + .hero-bg {
    z-index: -1;
}

.hero-content {
    position: relative; z-index: 5;
    text-align: center; max-width: 900px;
    padding: 0 2rem;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.3em;
    color: var(--bright-water);
    margin-bottom: 1.5rem; opacity: 0;
}
.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900; text-transform: uppercase;
    letter-spacing: 0.02em; line-height: 0.92;
    color: #fff; margin-bottom: 1.5rem; opacity: 0;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
.hero-description {
    font-family: var(--font-body); font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px; margin: 0 auto 2.5rem;
    line-height: 1.7; opacity: 0;
}
.hero-ctas {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; flex-wrap: wrap; opacity: 0;
}

/* SVG Wave at hero bottom */
.hero-wave {
    position: absolute; bottom: -2px; left: 0; width: 100%;
    z-index: 4; line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }
.hero-wave .wave-back { fill: var(--mist-white); opacity: 0.3; }
.hero-wave .wave-front { fill: var(--mist-white); }

/* Animated wave — horizontal shift creates gentle water movement */
.hero-wave svg {
    overflow: hidden;
}

.wave-animated-wrap {
    display: flex;
    width: 200%;
}

.wave-animated-wrap svg {
    width: 50%;
    flex-shrink: 0;
}

/* Single wave subtle vertical pulse — handled by GSAP */
.wave-animated {
    transform-origin: bottom;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute; bottom: 6rem; left: 50%;
    transform: translateX(-50%); z-index: 5;
    display: flex; flex-direction: column; align-items: center;
    gap: 0.75rem; opacity: 0;
}
.scroll-text {
    font-family: var(--font-heading); font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.4);
}
.scroll-line { width: 1px; height: 48px; background: rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.scroll-dot {
    width: 100%; height: 16px; background: var(--bright-water);
    position: absolute; top: -16px;
}


/* ═══════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════ */
.stats-bar {
    position: absolute;
    z-index: 10;
    margin: -4.5rem auto 0 auto;
    padding: 0 2rem;
    left: 0;
    right: 0;
}
.stats-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    padding: 2.5rem 3rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
}
.stat-item { flex: 1; text-align: center; padding: 0.5rem 1.5rem; }
.stat-number {
    font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800;
    color: var(--deep-ocean); line-height: 1;
}
.stat-suffix { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--deep-ocean); }
.stat-label {
    display: block; font-family: var(--font-body); font-size: 0.8rem;
    color: rgba(26, 30, 46, 0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.3rem;
}
.stat-divider {
    width: 1px; height: 48px;
    background: linear-gradient(180deg, transparent, rgba(26,30,46,0.12), transparent);
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   SHARED SECTION STYLES
   ═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   SECTION SHAPE DIVIDERS
   ═══════════════════════════════════════════════════════════════ */
.shape-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    z-index: 5;
    margin-top: -1px;
    margin-bottom: -1px;
}
.shape-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}
@media (min-width: 768px) {
    .shape-divider svg { height: 120px; }
}
@media (min-width: 1024px) {
    .shape-divider svg { height: 150px; }
}

.section { padding: 7rem 0; position: relative; overflow: hidden; }
.section-dark {
    background: #1A1E2E;
}
.section-light {
    background: #eef3f8;
}
.section-warm {
    background: var(--sand);
}
.section-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.3em;
    color: var(--bright-water); margin-bottom: 0.75rem;
}
.section-eyebrow-dark { color: var(--deep-ocean); }
.section-title {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff; line-height: 1.15; margin-bottom: 1rem;
}
.section-title-dark { color: var(--deep-navy); }
.section-description { font-family: var(--font-body); font-size: 1.05rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.section-desc-dark { color: rgba(26, 30, 46, 0.55); }

/* Gradient text */
.gradient-text {
    background: var(--ocean-gradient);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ═══════════════════════════════════════════════════════════════
   MAP PREVIEW
   ═══════════════════════════════════════════════════════════════ */
.section-map {
    background: #1A1E2E;
    padding: 14rem 0 7rem 0;
}
.map-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.map-content { max-width: 520px; }
.map-features { display: flex; flex-direction: column; gap: 0.75rem; margin: 2rem 0 2.5rem; }
.map-feature {
    display: flex; align-items: center; gap: 0.75rem;
    font-family: var(--font-body); font-size: 0.95rem; color: rgba(255,255,255,0.6);
}
.map-feature-icon { color: var(--bright-water); font-size: 0.7rem; }

/* Leaflet Map */
.map-visual { position: relative; perspective: 1000px; }

.leaflet-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card), var(--shadow-glow);
    border: 1px solid rgba(255,255,255,0.15);
    min-height: 500px;
}

#waterego-map {
    width: 100%;
    height: 550px;
    z-index: 1;
    cursor: grab;
}
#waterego-map:active { cursor: grabbing; }

/* ─── Map Scroll Hint Overlay ─────────────────────────────────── */
.map-scroll-hint {
    position: absolute;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26,30,46,0.65);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.map-scroll-hint.visible {
    opacity: 1;
}
.map-scroll-hint span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: rgba(1,186,239,0.2);
    border: 1px solid rgba(1,186,239,0.3);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
}

/* Override Leaflet default cursor */
.leaflet-container { cursor: none !important; }
.leaflet-grab { cursor: none !important; }
.leaflet-dragging .leaflet-grab { cursor: none !important; }

/* Clean up Leaflet zoom controls */
.leaflet-control-zoom a {
    background: rgba(26, 30, 46, 0.85) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.leaflet-control-zoom a:hover {
    background: rgba(26, 30, 46, 0.95) !important;
}

/* Attribution styling */
.leaflet-control-attribution {
    background: rgba(26, 30, 46, 0.6) !important;
    color: rgba(255,255,255,0.4) !important;
    font-size: 10px !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.leaflet-control-attribution a {
    color: rgba(255,255,255,0.5) !important;
}

.map-glow {
    position: absolute; inset: -3px; border-radius: 18px;
    background: linear-gradient(135deg, var(--bright-water), var(--deep-ocean), var(--emerald));
    z-index: -1; opacity: 0.2; filter: blur(24px);
    pointer-events: none;
}

/* Map legend overlay — compact row at bottom-left (main definition in SHARED COMPONENT section) */
.legend-item {
    display: flex; align-items: center; gap: 6px;
    font-family: var(--font-body); font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
}
.legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; background: var(--dot-bg); }

/* Custom Leaflet popup styling */
.waterego-popup .leaflet-popup-content-wrapper {
    background: rgba(26, 30, 46, 0.95);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    padding: 0;
    color: #fff;
}
.waterego-popup .leaflet-popup-content {
    margin: 0;
    font-family: var(--font-body);
    min-width: 200px;
}
.waterego-popup .leaflet-popup-tip {
    background: rgba(26, 30, 46, 0.95);
    border: none;
}
.waterego-popup .leaflet-popup-close-button {
    color: rgba(255,255,255,0.4) !important;
    font-size: 18px !important;
    top: 6px !important;
    right: 10px !important;
}
.waterego-popup .leaflet-popup-close-button:hover {
    color: var(--bright-water) !important;
}

/* Popup inner content */
.popup-inner { padding: 1.2rem 1.4rem; }
.popup-name {
    font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: #fff; margin-bottom: 0.5rem;
}
.popup-meta {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.popup-badge {
    font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: #fff; padding: 0.2rem 0.6rem; border-radius: 20px;
}
.popup-distance {
    font-family: var(--font-body); font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}
.popup-link {
    font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--sunset-orange); transition: color 0.3s ease;
    text-decoration: none;
}
.popup-link:hover { color: var(--bright-water); }


/* ═══════════════════════════════════════════════════════════════
   FEATURED ROUTES (Horizontal Scroll)
   ═══════════════════════════════════════════════════════════════ */
.routes-scroll {
    overflow-x: auto; overflow-y: visible;
    padding: 1rem 0 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.routes-scroll::-webkit-scrollbar { display: none; }
.routes-track { display: flex; gap: 1.5rem; padding: 1rem 2rem 2rem; width: max-content; }

.route-card {
    position: relative; width: 320px; height: 420px;
    border-radius: 20px; overflow: hidden; flex-shrink: 0;
    scroll-snap-align: start;
    transform-style: preserve-3d; perspective: 800px;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
    box-shadow: var(--shadow-card);
}
.route-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-card-hover); }

.route-card-image {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.6s var(--ease-out);
}
.route-card-gradient {
    position: absolute; inset: 0;
    transition: transform 0.6s var(--ease-out);
}
.route-card:hover .route-card-image,
.route-card:hover .route-card-gradient { transform: scale(1.08); }

.route-card-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, transparent 30%, rgba(13,17,23,0.5) 60%, rgba(13,17,23,0.92) 100%);
}
.route-difficulty {
    position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2;
    font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em; color: #fff;
    padding: 0.35rem 0.85rem; border-radius: 40px;
    background: var(--bg, var(--bright-water));
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.route-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 2; padding: 1.5rem;
}
.route-title {
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em; color: #fff;
    margin-bottom: 0.2rem;
}
.route-county { font-family: var(--font-body); font-size: 0.85rem; color: var(--bright-water); display: block; margin-bottom: 0.5rem; }
.route-stars { display: flex; gap: 2px; margin-top: 0.5rem; color: var(--sunset-orange); font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 0.5rem; }
.route-meta { display: flex; gap: 1.2rem; }
.route-distance, .route-time {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-family: var(--font-body); font-size: 0.8rem; color: rgba(255,255,255,0.5);
}


/* ═══════════════════════════════════════════════════════════════
   FEATURES BENTO GRID
   ═══════════════════════════════════════════════════════════════ */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.bento-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}
.bento-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: inherit;
    opacity: 0;
    background: linear-gradient(135deg, rgba(1,186,239,0.06), transparent);
    transition: opacity 0.4s ease;
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover {
    border-color: rgba(1, 186, 239, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(1, 186, 239, 0.06);
}

/* Zoom the background image on hover */
.feature-card:hover > div:first-child {
    transform: scale(1.08) !important;
}

.bento-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.bento-large .bento-icon { font-size: 3.5rem; }

.bento-title {
    font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: #fff; margin-bottom: 0.5rem;
}
.bento-large .bento-title { font-size: 1.6rem; }

.bento-desc { font-family: var(--font-body); font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.6; }


/* ═══════════════════════════════════════════════════════════════
   POPULAR GUIDES — Editorial Layout
   ═══════════════════════════════════════════════════════════════ */

/* Featured hero guide — full width */
.guide-hero-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    margin-bottom: 0;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
    box-shadow: var(--shadow-card);
    margin-bottom: 3rem;
}
.guide-hero-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.guide-hero-image {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.7s var(--ease-out);
}
.guide-hero-card:hover .guide-hero-image { transform: scale(1.05); }

.guide-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(13,17,23,0.3) 0%,
        rgba(13,17,23,0.15) 30%,
        rgba(13,17,23,0.6) 60%,
        rgba(13,17,23,0.92) 100%
    );
}

.guide-hero-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 3rem;
    max-width: 640px;
}

.guide-hero-title {
    font-family: var(--font-editorial);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.guide-hero-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 600px;
}

.guide-hero-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* 3-column row for remaining guides */
.guides-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.guide-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
    box-shadow: var(--shadow-card);
}
.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.guide-card-image {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.6s var(--ease-out);
}
.guide-card:hover .guide-card-image { transform: scale(1.06); }

.guide-card-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, transparent 15%, rgba(13,17,23,0.5) 50%, rgba(13,17,23,0.93) 100%);
}

.guide-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 1.75rem;
}

.guide-category {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.68rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--bright-water);
    background: var(--badge-bg, rgba(1, 186, 239, 0.12));
    padding: 0.3rem 0.75rem;
    border-radius: 40px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(1, 186, 239, 0.18);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}

.guide-title {
    font-family: var(--font-editorial);
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.guide-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.guide-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guide-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

.guide-read-link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sunset-orange);
    transition: color 0.3s ease;
}
.guide-read-link:hover { color: var(--bright-water); }

.guides-cta {
    text-align: center;
    padding-top: 0.5rem;
}


/* ═══════════════════════════════════════════════════════════════
   GEAR REVIEWS — Slider with Glass Cards
   ═══════════════════════════════════════════════════════════════ */
.section-reviews { background: #0B4F6C; }

.reviews-slider {
    overflow-x: auto; overflow-y: visible;
    padding: 1rem 0 2rem;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.reviews-slider::-webkit-scrollbar { display: none; }
.reviews-track { display: flex; gap: 1.5rem; padding: 1rem 2rem 2rem; width: max-content; }
.review-card { width: 420px; flex-shrink: 0; scroll-snap-align: center; }

.review-card-inner {
    position: relative;
    padding: 2.5rem 2rem 2rem;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    transition: all 0.5s var(--ease-out);
    box-shadow: 0 4px 24px rgba(0,0,0,0.2), 0 12px 48px rgba(0,0,0,0.1);
    height: 100%;
}
.review-card-inner:hover {
    background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14);
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 24px 64px rgba(0,0,0,0.15), 0 0 60px rgba(1,186,239,0.06);
}

.review-quote {
    position: absolute; top: 1rem; right: 1.5rem;
    font-family: var(--font-editorial); font-size: 5rem; line-height: 1;
    color: var(--bright-water); opacity: 0.08; pointer-events: none;
}
.review-rating { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.25rem; }
.review-rating-big { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; color: var(--sunset-orange); line-height: 1; }
.review-stars-wrap { display: flex; flex-direction: column; gap: 0.35rem; padding-top: 0.3rem; }
.review-stars { display: flex; align-items: center; gap: 0.15rem; }
.star { font-size: 1rem; line-height: 1; }
.star-full { color: var(--sunset-orange); }
.star-half { color: var(--sunset-orange); opacity: 0.5; }
.star-empty { color: rgba(255,255,255,0.15); }
.review-category-tag { font-family: var(--font-heading); font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--bright-water); opacity: 0.7; }
.review-product { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.1rem; }
.review-brand { font-family: var(--font-body); font-size: 0.85rem; color: rgba(255,255,255,0.3); display: block; margin-bottom: 1rem; }
.review-excerpt { font-family: var(--font-body); font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1.25rem; }
.review-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.review-tag { font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; padding: 0.3rem 0.7rem; border-radius: 40px; white-space: nowrap; }
.tag-pro { color: var(--emerald); background: rgba(32,191,85,0.1); border: 1px solid rgba(32,191,85,0.15); }
.tag-con { color: var(--sunset-orange); background: rgba(232,112,42,0.1); border: 1px solid rgba(232,112,42,0.15); }

.review-footer { display: flex; align-items: center; gap: 0.75rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.06); }
.reviewer-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--ocean-gradient);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; color: #fff;
    flex-shrink: 0;
}
.reviewer-info { display: flex; flex-direction: column; }
.reviewer-name { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.reviewer-trips { font-family: var(--font-body); font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════════════════════════
   SHARED SLIDER NAV (Routes, Reviews, Clubs)
   ═══════════════════════════════════════════════════════════════ */
.slider-nav,
.reviews-nav {
    display: flex; align-items: center; justify-content: center;
    gap: 1.5rem; padding: 1rem 2rem 0;
}

.slider-nav-btn,
.reviews-nav-btn {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5); transition: all 0.3s var(--ease-out);
}
.slider-nav-btn:hover,
.reviews-nav-btn:hover {
    background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2);
}

/* Dark variant for light section backgrounds */
.slider-nav-dark .slider-nav-btn {
    background: rgba(26,30,46,0.06); border-color: rgba(26,30,46,0.12);
    color: rgba(26,30,46,0.4);
}
.slider-nav-dark .slider-nav-btn:hover {
    background: rgba(26,30,46,0.1); color: var(--deep-navy); border-color: rgba(26,30,46,0.2);
}

.slider-dots,
.reviews-dots { display: flex; gap: 0.5rem; }

.slider-dot,
.reviews-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: all 0.3s ease; padding: 0;
}
.slider-dot.active,
.reviews-dot.active {
    background: var(--bright-water); width: 24px; border-radius: 4px;
}

/* Dark dots for light backgrounds */
.slider-nav-dark .slider-dot {
    background: rgba(26,30,46,0.15);
}
.slider-nav-dark .slider-dot.active {
    background: var(--deep-ocean);
}


/* ═══════════════════════════════════════════════════════════════
   COMMUNITY SPOTLIGHT
   ═══════════════════════════════════════════════════════════════ */
.spotlight-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }

.spotlight-card {
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.spotlight-card:hover { transform: translateY(-4px); }

.spotlight-paddler {
    background: #fff;
    border: 1px solid rgba(26,30,46,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.spotlight-paddler:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

.spotlight-label {
    font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--bright-water); margin-bottom: 1.5rem;
}
.spotlight-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--ocean-gradient);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: #fff;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 20px rgba(1,186,239,0.2);
}
.spotlight-name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--deep-navy); text-transform: uppercase; }
.spotlight-location { font-family: var(--font-body); font-size: 0.9rem; color: rgba(26,30,46,0.4); margin-bottom: 1rem; }
.spotlight-bio { font-family: var(--font-body); font-size: 0.95rem; color: rgba(26,30,46,0.6); line-height: 1.7; margin-bottom: 1.2rem; }
.spotlight-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--emerald);
    background: rgba(32,191,85,0.08); border: 1px solid rgba(32,191,85,0.12);
    padding: 0.4rem 1rem; border-radius: 40px;
    margin-bottom: 1.2rem;
}
.spotlight-link {
    font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--sunset-orange); transition: color 0.3s ease;
}
.spotlight-link:hover { color: var(--bright-water); }

/* Photo of the Week */
.spotlight-photo {
    background: linear-gradient(135deg, #E8702A 0%, #0B4F6C 50%, #01BAEF 100%);
    min-height: 360px;
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative; overflow: hidden;
}
.spotlight-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(13,17,23,0.8) 100%);
}
.spotlight-photo-content { position: relative; z-index: 2; }
.spotlight-photo-label {
    font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--sunset-orange); margin-bottom: 0.75rem;
}
.spotlight-photo-title { font-family: var(--font-editorial); font-size: 1.4rem; color: #fff; margin-bottom: 0.5rem; }
.spotlight-photo-credit { font-family: var(--font-body); font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.spotlight-photo-likes {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-family: var(--font-body); font-size: 0.85rem; color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
}
.heart-icon { color: #e74c3c; }


/* ═══════════════════════════════════════════════════════════════
   CLUBS CAROUSEL
   ═══════════════════════════════════════════════════════════════ */
/* Clubs section — full background image */
.section-clubs-bg {
    position: relative;
    overflow: hidden;
}

.clubs-bg-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1529753253655-470be9a42781?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    z-index: 0;
}

.clubs-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(26, 30, 46, 0.88) 0%,
        rgba(11, 79, 108, 0.75) 40%,
        rgba(26, 30, 46, 0.85) 70%,
        rgba(26, 30, 46, 0.92) 100%
    );
}

.clubs-scroll {
    overflow-x: auto; overflow-y: visible;
    padding: 1rem 0 2rem;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.clubs-scroll::-webkit-scrollbar { display: none; }
.clubs-track { display: flex; gap: 1.25rem; padding: 1rem 2rem 2rem; width: max-content; }

.club-card {
    width: 280px; flex-shrink: 0;
    scroll-snap-align: start;
    padding: 2rem; text-align: center;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s var(--ease-out);
}
.club-card:hover {
    border-color: rgba(1,186,239,0.15);
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(1,186,239,0.06);
    background: rgba(255,255,255,0.06);
}

.club-logo {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--ocean-gradient);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: #fff;
    margin: 0 auto 1.2rem;
    box-shadow: 0 4px 16px rgba(1,186,239,0.2);
}
.club-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; color: #fff; margin-bottom: 0.25rem; }
.club-county { font-family: var(--font-body); font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; }
.club-rating { color: var(--sunset-orange); font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 0.25rem; }
.club-rating-number { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.6); margin-left: 0.3rem; }
.club-members { font-family: var(--font-body); font-size: 0.8rem; color: rgba(255,255,255,0.3); }

.clubs-cta { text-align: center; padding: 1rem 2rem 0; }


/* ═══════════════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════════════ */
.newsletter-section {
    position: relative;
    padding: 7rem 2rem;
    display: flex; align-items: center; justify-content: center;
    min-height: 500px; overflow: hidden;
    background: #01BAEF;
}
.newsletter-content { position: relative; z-index: 5; text-align: center; max-width: 600px; }
.newsletter-headline { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.newsletter-description { font-family: var(--font-body); font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 2rem; }
.newsletter-form { max-width: 480px; margin: 0 auto; }
.newsletter-input-wrap {
    display: flex; gap: 0;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 60px; padding: 0.35rem;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.newsletter-input {
    flex: 1; background: none; border: none; outline: none;
    font-family: var(--font-body); font-size: 0.95rem; color: #fff;
    padding: 0.75rem 1.2rem;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-btn { padding: 0.75rem 1.8rem; font-size: 0.8rem; white-space: nowrap; }
.newsletter-gdpr {
    display: flex; align-items: flex-start; gap: 0.5rem;
    margin-top: 1rem; font-family: var(--font-body);
    font-size: 0.75rem; color: rgba(255,255,255,0.4);
    text-align: left; cursor: none;
}
.newsletter-gdpr input[type="checkbox"] { margin-top: 2px; accent-color: var(--bright-water); cursor: none; }


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer-wave { position: relative; margin-top: -1px; }
.footer-wave svg { display: block; width: 100%; height: 80px; }
.site-footer { background: linear-gradient(180deg, #1A1E2E 0%, #111827 50%, #0a0f18 100%); padding: 4rem 0 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr; gap: 2rem; }
.footer-brand { max-width: 320px; }
.footer-logo { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; display: inline-block; margin-bottom: 1rem; }
.footer-tagline { font-family: var(--font-body); font-size: 0.9rem; color: rgba(255,255,255,0.35); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border);
    color: rgba(255,255,255,0.4); transition: all 0.3s var(--ease-out);
}
.social-link:hover { color: var(--bright-water); background: rgba(1,186,239,0.08); border-color: rgba(1,186,239,0.2); transform: translateY(-2px); }
.footer-col { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-heading { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: #fff; margin-bottom: 0.75rem; }
.footer-link {
    font-family: var(--font-body); font-size: 0.88rem;
    color: rgba(255,255,255,0.35); padding: 0.2rem 0;
    transition: color 0.25s ease;
    position: relative; display: inline-block;
}
.footer-link::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--bright-water);
    transition: width 0.3s var(--ease-out);
}
.footer-link:hover { color: var(--bright-water); }
.footer-link:hover::after { width: 100%; }
.footer-copyright { margin-top: 3rem; border-top: 1px solid var(--glass-border); padding: 1.5rem 2rem; text-align: center; }
.copyright-inner p { font-family: var(--font-body); font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.copyright-sub { margin-top: 0.25rem; font-size: 0.75rem !important; }


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
    .map-grid { grid-template-columns: 3fr 2fr; }
    .guides-row { grid-template-columns: repeat(3, 1fr); }
    .spotlight-grid { grid-template-columns: 1fr 1fr; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-large { grid-column: span 2; }
    .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; }
}

@media (min-width: 1024px) {
    .main-nav { display: flex; }
    .header-cta { display: inline-flex; }
    .mobile-toggle { display: none; }
    .bento-grid { grid-template-columns: repeat(3, 1fr); }
    .bento-large { grid-column: span 1; grid-row: span 2; }
    .stat-number { font-size: 3.2rem; }
}

@media (max-width: 767px) {
    .stats-bar {
        margin-top: -7rem;
    }
    .stats-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 1.5rem;
    }
    .stat-item {
        padding: 0.75rem 0.5rem;
    }
    .stat-divider { display: none; }
    .stat-number { font-size: 1.8rem; }
    .stat-suffix { font-size: 1.2rem; }
    .stat-label { font-size: 0.65rem; }
    .hero-ctas { flex-direction: column; }
    .btn { width: 100%; max-width: 280px; }
    .review-card { width: 320px; }
    .review-card-inner { padding: 2rem 1.5rem 1.5rem; }
    .review-rating-big { font-size: 2.2rem; }
    .newsletter-input-wrap { flex-direction: column; border-radius: 16px; padding: 0.5rem; }
    .newsletter-btn { border-radius: 60px; width: 100%; }
    .section { padding: 5rem 0; }
    .section-map { padding: 10rem 0 5rem 0; }
    #waterego-map { height: 350px; }
    .scroll-indicator { bottom: 7rem; }
    .spotlight-grid { grid-template-columns: 1fr !important; }
    .features-bento { grid-template-columns: 1fr !important; }
    .features-bento .feature-card { grid-column: span 1 !important; grid-row: span 1 !important; min-height: 180px !important; }
    .map-grid { grid-template-columns: 1fr !important; }
}


/* Keyframe animations moved to GSAP in main.js */

/* Particle orbs */
.particle-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Hero wave */
.hero { position: relative; }
.hero-wave { pointer-events: none; }

/* Clubs scrollbar hide */
.clubs-scroll::-webkit-scrollbar { display: none; }


/* ═══════════════════════════════════════════════════════════════
   SHARED COMPONENTS — Used across multiple page templates
   ═══════════════════════════════════════════════════════════════ */

/* ─── Newsletter Lead Magnet ─────────────────────────────────── */
.newsletter-magnet {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.newsletter-magnet::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: var(--sunset-orange);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
}

/* ─── Guide Read Time Badge ──────────────────────────────────── */
.guide-time {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}
.guide-author {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ─── Filter Pill Shared Styles ──────────────────────────────── */
.filter-pill {
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1.15rem;
    border-radius: 50px;
    border: 1px solid rgba(26,30,46,0.12);
    background: rgba(26,30,46,0.04);
    color: rgba(26,30,46,0.6);
    cursor: pointer;
    display: inline-block;
}
.filter-pill:hover {
    transform: translateY(-2px);
    background: rgba(11,79,108,0.1);
    border-color: rgba(11,79,108,0.2);
    color: var(--deep-ocean);
}
.filter-pill.active {
    background: var(--bright-water);
    border-color: var(--bright-water);
    color: #fff;
    box-shadow: 0 4px 12px rgba(1,186,239,0.25);
}

/* Dark variant — for pills on dark backgrounds */
.filter-pill--dark,
.section-dark .filter-pill {
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.7);
}
.filter-pill--dark:hover,
.section-dark .filter-pill:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}
.filter-pill--dark.active,
.section-dark .filter-pill.active {
    background: var(--bright-water);
    border-color: var(--bright-water);
    color: var(--deep-navy);
}

/* ─── Page Hero Shared (subpages: routes, reviews, etc.) ────── */
[data-animate="hero"],
[data-animate="fade-up"] {
    will-change: transform, opacity;
}

/* ─── Responsive Spacing Override for Mobile ─────────────────── */
@media (max-width: 767px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 5rem;
    }
}


/* ═══════════════════════════════════════════════════════════════
   PAGE-SPECIFIC STYLES
   Extracted from inline <style> blocks in PHP templates.
   ═══════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════
   ROUTES PAGE (page-routes.php)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Filter Bar Responsive ─── */
.routes-filter-bar .filter-group::-webkit-scrollbar { display: none; }

/* Routes page: filter pill hover on dark background (default) */
body.page-template-page-routes .filter-pill:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.25) !important;
    color: #fff !important;
    transform: translateY(-1px);
}
/* Routes page: filter pill hover on light background (scrolled into grid) */
.routes-filter-bar[data-theme="light"] .filter-pill:hover {
    background: rgba(11,79,108,0.1) !important;
    border-color: rgba(11,79,108,0.2) !important;
    color: var(--deep-ocean) !important;
    transform: translateY(-1px);
}
/* Active pill hover keeps its accent color */
body.page-template-page-routes .filter-pill-active:hover,
.routes-filter-bar[data-theme="light"] .filter-pill-active:hover {
    transform: translateY(-1px);
}

.filter-county-select {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.45rem 2.5rem 0.45rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
    background-color: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%2212%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22rgba(255,255,255,0.5)%22 stroke-width=%222%22><polyline points=%226 9 12 15 18 9%22/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
}

.filter-county-select:hover {
    border-color: rgba(255,255,255,0.25);
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}

.filter-county-select:focus {
    outline: none;
    border-color: var(--bright-water);
    box-shadow: 0 0 0 3px rgba(1,186,239,0.15);
}

/* Routes sort dropdown (light bg) */
.routes-sort .filter-county-select,
.routes-sort .form-select {
    background-color: rgba(26,30,46,0.04);
    border: 1px solid rgba(26,30,46,0.12);
    color: var(--deep-navy);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(26,30,46,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    padding: 0.45rem 2.5rem 0.45rem 1rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.routes-sort .filter-county-select:hover,
.routes-sort .form-select:hover {
    border-color: rgba(26,30,46,0.25);
    background-color: rgba(26,30,46,0.08);
}

.routes-sort .filter-county-select:focus,
.routes-sort .form-select:focus {
    outline: none;
    border-color: var(--bright-water);
    box-shadow: 0 0 0 3px rgba(1,186,239,0.15);
}

.filter-county-select option {
    background: var(--deep-navy);
    color: #fff;
}

/* County select on light filter bar */
.routes-filter-bar[data-theme="light"] .filter-county-select {
    color: rgba(26,30,46,0.7);
    border-color: rgba(26,30,46,0.12);
    background-color: rgba(255,255,255,0.7);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%2212%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22rgba(26,30,46,0.4)%22 stroke-width=%222%22><polyline points=%226 9 12 15 18 9%22/></svg>');
}

/* ─── Route Grid Cards ─── */
.route-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}
.route-grid-card:hover .route-grid-card-image {
    transform: scale(1.08);
}

/* ─── Routes Grid Responsive ─── */
@media (max-width: 1024px) {
    .routes-grid-layout {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}
@media (max-width: 640px) {
    .routes-grid-layout {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .routes-filter-bar > div {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .filter-group {
        margin-left: 0 !important;
        flex-wrap: wrap;
    }
}

/* ─── Map legend responsive ─── */
@media (max-width: 640px) {
    #routesMapSection .section-container [style*="bottom:1rem"] {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}


/* ═══════════════════════════════════════════════════════════════
   SINGLE ROUTE PAGE (page-single-route.php)
   ═══════════════════════════════════════════════════════════════ */

/* Gallery hover effects */
#routeGallery [style*="aspect-ratio"]:hover img {
    transform: scale(1.08);
}
#routeGallery [style*="aspect-ratio"]:hover div[style*="opacity:0"] {
    opacity: 1 !important;
}

/* Gallery responsive */
@media (max-width: 1024px) {
    #routeGallery [style*="grid-template-columns"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 640px) {
    #routeGallery [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

/* Route info grid responsive */
@media (max-width: 900px) {
    #routeInfo [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    #routeInfo [style*="sticky"] {
        position: static !important;
    }
}

/* Hero quick stats responsive */
@media (max-width: 640px) {
    .single-route-hero h1 {
        font-size: 2.8rem !important;
    }
}

/* Weather cards responsive */
@media (max-width: 900px) {
    #routeConditions [style*="grid-template-columns:repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 540px) {
    #routeConditions [style*="grid-template-columns:repeat(4"] {
        grid-template-columns: 1fr !important;
    }
}

/* Related routes responsive */
@media (max-width: 900px) {
    #relatedRoutes .related-routes-grid {
        grid-template-columns: 1fr !important;
        overflow-x: auto;
        display: flex !important;
        gap: 1.25rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }
    #relatedRoutes .related-routes-grid > article {
        min-width: 300px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}

/* Safety tips responsive */
@media (max-width: 768px) {
    #routeSafety [style*="grid-template-columns:repeat(3"] {
        grid-template-columns: 1fr !important;
    }
}

/* Leaflet map single route — bright & colorful */
#route-map-leaflet .leaflet-tile-pane {
    /* No desaturation — keep Voyager tiles vibrant */
}


/* ═══════════════════════════════════════════════════════════════
   REVIEWS PAGE (page-reviews.php)
   ═══════════════════════════════════════════════════════════════ */

/* Reviews Grid — Responsive */
@media (max-width: 1024px) {
    .reviews-grid-layout {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    .top-rated-inner {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1.5rem !important;
        padding: 2rem !important;
    }
    .top-rated-card {
        grid-template-columns: 6px 1fr !important;
    }
}

@media (max-width: 640px) {
    .reviews-grid-layout {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .top-rated-inner {
        padding: 1.5rem !important;
        gap: 1rem !important;
    }
}

/* Filter pill hover (reviews page) */
body.page-template-page-reviews .filter-pill:hover {
    background: var(--bright-water) !important;
    color: #fff !important;
    border-color: var(--bright-water) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1,186,239,0.25);
}

/* Review card hover — 3D lift effect */
.review-grid-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1), 0 24px 48px rgba(0,0,0,0.08) !important;
    border-color: rgba(1,186,239,0.15) !important;
}

/* Top rated card hover */
.top-rated-card:hover {
    background: rgba(255,255,255,0.06) !important;
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* Read Full Review link hover */
.review-grid-card a:hover {
    color: var(--sunset-orange) !important;
}

/* Submit CTA button hovers */
#submitReview .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(232,112,42,0.4) !important;
}
#submitReview .btn-glass:hover {
    background: rgba(26,30,46,0.1) !important;
    transform: translateY(-3px);
}

/* Breadcrumb link hover */
.reviews-hero nav a:hover {
    color: var(--bright-water) !important;
}


/* ═══════════════════════════════════════════════════════════════
   SINGLE REVIEW PAGE (page-single-review.php)
   ═══════════════════════════════════════════════════════════════ */

/* Hero Product Grid — Responsive */
@media (max-width: 900px) {
    .hero-product-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding-top: 6rem !important;
    }
}

/* Rating Breakdown Grid — Responsive */
@media (max-width: 768px) {
    .rating-breakdown-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
}

/* Community Reviews Grid — Responsive */
@media (max-width: 1024px) {
    .community-reviews-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}
@media (max-width: 640px) {
    .community-reviews-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Related Reviews Grid — Responsive */
@media (max-width: 1024px) {
    .related-reviews-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}
@media (max-width: 640px) {
    .related-reviews-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Spec rows — Responsive */
@media (max-width: 600px) {
    .spec-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.25rem !important;
        padding: 1rem 1.5rem !important;
    }
    .spec-row span:last-child {
        text-align: left !important;
    }
}

/* Reviewer card — Responsive */
@media (max-width: 600px) {
    .reviewer-card > div:nth-child(4) {
        flex-direction: column !important;
        align-items: center !important;
    }
}

/* Hero breadcrumb hover */
.single-review-hero nav a:hover {
    color: var(--bright-water) !important;
}

/* Buy Now hover */
.btn-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(232,112,42,0.45) !important;
}

/* Compare hover */
.btn-compare:hover {
    background: rgba(255,255,255,0.12) !important;
    transform: translateY(-3px);
}

/* Pro item hover */
.pro-item:hover {
    background: rgba(32,191,85,0.1) !important;
    border-color: rgba(32,191,85,0.25) !important;
    transform: translateX(4px);
}

/* Con item hover */
.con-item:hover {
    background: rgba(232,112,42,0.1) !important;
    border-color: rgba(232,112,42,0.25) !important;
    transform: translateX(4px);
}

/* Community review card hover */
.community-review-card:hover {
    background: rgba(255,255,255,0.08) !important;
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}

/* Helpful button hover */
.helpful-btn:hover {
    background: rgba(1,186,239,0.1) !important;
    border-color: rgba(1,186,239,0.3) !important;
    color: var(--bright-water) !important;
}

/* Related review card hover */
.related-review-card:hover {
    background: rgba(255,255,255,0.08) !important;
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.related-review-card:hover img {
    transform: scale(1.08);
}

/* Related read link hover */
.related-read-link:hover {
    color: var(--sunset-orange) !important;
}

/* Submit review CTA hover */
.btn-submit-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(232,112,42,0.4) !important;
}

/* Reviewer card glassmorphism hover */
.reviewer-card:hover {
    box-shadow: 0 12px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06) !important;
    transform: translateY(-4px);
}


/* ═══════════════════════════════════════════════════════════════
   GUIDES PAGE (page-guides.php)
   ═══════════════════════════════════════════════════════════════ */

/* ── Guides Archive Grid Responsive ───────────────────────── */
@media (max-width: 1024px) {
    .guides-archive-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .safety-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
}
@media (max-width: 640px) {
    .guides-archive-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ── Filter Pills Hover (guides page) ────────────────────── */
body.page-template-page-guides .filter-pill {
    position: relative;
    overflow: hidden;
}
body.page-template-page-guides .filter-pill:hover {
    background: rgba(11, 79, 108, 0.08) !important;
    color: var(--deep-ocean) !important;
}
body.page-template-page-guides .filter-pill.active:hover {
    background: var(--deep-ocean) !important;
    color: #fff !important;
}

/* ── Guide Card Enhancements for Grid Page ────────────────── */
.guides-archive-grid .guide-card {
    border-radius: 20px;
    min-height: 380px;
    box-shadow: 0 8px 30px rgba(11, 79, 108, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.guides-archive-grid .guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(11, 79, 108, 0.15);
}

/* ── Safety Tip Cards Hover ───────────────────────────────── */
#safetyCTA [data-animate="fade-up"]:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateX(4px);
}


/* ═══════════════════════════════════════════════════════════════
   SINGLE GUIDE PAGE (page-single-guide.php)
   ═══════════════════════════════════════════════════════════════ */

/* ── Article Typography ──────────────────────────────────── */
.sg-article p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(26, 30, 46, 0.8);
    line-height: 1.9;
}

/* ── Share Button Hover ──────────────────────────────────── */
.sg-share-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* ── TOC Link Active State ───────────────────────────────── */
.sg-toc-link:hover {
    background: rgba(11, 79, 108, 0.06);
    color: var(--deep-ocean) !important;
}
.sg-toc-link.active {
    background: rgba(1, 186, 239, 0.1);
    color: var(--deep-ocean) !important;
    border-left-color: var(--bright-water) !important;
    font-weight: 600;
}

/* ── Safety Card Hover ───────────────────────────────────── */
.sg-safety-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(11, 79, 108, 0.1);
}

/* ── Author Card Hover ───────────────────────────────────── */
.sg-author-card:hover {
    box-shadow: 0 12px 40px rgba(11, 79, 108, 0.12);
}

/* ── Related Grid Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
    .sg-article-layout {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    .sg-toc-sidebar {
        position: relative !important;
        top: 0 !important;
        order: -1;
        margin-bottom: 2.5rem;
    }
    .sg-toc-toggle {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }
    .sg-toc-nav {
        display: none;
        margin-top: 0.75rem;
    }
    .sg-toc-nav.open {
        display: block;
    }
    .sg-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .sg-author-card {
        flex-direction: column !important;
        text-align: center;
    }
}
@media (max-width: 640px) {
    .sg-related-grid {
        grid-template-columns: 1fr !important;
    }
    .sg-safety-grid {
        grid-template-columns: 1fr !important;
    }
    .sg-article {
        max-width: 100% !important;
    }
}

/* ── Article Image Hover ─────────────────────────────────── */
.sg-article figure {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sg-article figure:hover {
    transform: translateY(-4px);
}

/* ── Blockquote Styling ──────────────────────────────────── */
.sg-article blockquote {
    transition: transform 0.3s ease;
}
.sg-article blockquote:hover {
    transform: translateX(4px);
}

/* ── Newsletter Button Hover ─────────────────────────────── */
#sgNewsletter button[type="submit"]:hover {
    background: #d4621f;
    box-shadow: 0 4px 15px rgba(232, 112, 42, 0.4);
}


/* ═══════════════════════════════════════════════════════════════
   CLUBS PAGE (page-clubs.php)
   ═══════════════════════════════════════════════════════════════ */

/* Filter groups with labels */
.clubs-filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.clubs-filter-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.35);
    min-width: 55px;
    flex-shrink: 0;
}
.clubs-filter-label--dark {
    color: rgba(26,30,46,0.35);
}
.clubs-filters-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.clubs-filter-group--centered {
    justify-content: center;
}

/* Light background filter pills */
.filter-pill--light {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1.5px solid rgba(26,30,46,0.12);
    background: #fff;
    color: var(--deep-navy);
    cursor: pointer;
    transition: all 0.3s;
}
.filter-pill--light:hover {
    border-color: var(--bright-water);
    color: var(--deep-ocean);
}
.filter-pill--light.active {
    background: var(--bright-water);
    color: #fff;
    border-color: var(--bright-water);
    box-shadow: 0 4px 16px rgba(1,186,239,0.25);
}

.filter-pill-type--light {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1.5px solid rgba(26,30,46,0.1);
    background: #fff;
    color: rgba(26,30,46,0.6);
    cursor: pointer;
    transition: all 0.3s;
}
.filter-pill-type--light:hover {
    border-color: var(--emerald);
    color: var(--deep-navy);
}
.filter-pill-type--light.active {
    background: var(--emerald);
    color: #fff;
    border-color: var(--emerald);
    box-shadow: 0 4px 16px rgba(32,191,85,0.25);
}

@media (max-width: 640px) {
    .clubs-filters-centered { align-items: stretch; }
    .clubs-filter-group--centered { flex-direction: column; align-items: center; }
}

/* Club directory card hover */
body.page-template-page-clubs .club-directory-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-color: rgba(1,186,239,0.2);
}

/* Instructor card hover */
body.page-template-page-clubs .instructor-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Filter pill type (clubs page) */
.filter-pill-type {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-pill-type.active {
    border-color: var(--emerald);
    background: var(--emerald);
    color: var(--deep-navy);
}

/* Filter pill hover (clubs page) */
body.page-template-page-clubs .filter-pill:hover,
.filter-pill-type:hover {
    background: rgba(1,186,239,0.15) !important;
    color: var(--bright-water) !important;
    border-color: rgba(1,186,239,0.25) !important;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    #clubsGridContainer {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    #instructorsSpotlight .section-container > div:last-child {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
    #clubsGridContainer {
        grid-template-columns: 1fr !important;
    }
    #instructorsSpotlight .section-container > div:last-child {
        grid-template-columns: 1fr !important;
    }
}

/* Leaflet popup override for dark theme */
#clubs-map .leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
#clubs-map .leaflet-popup-tip {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


/* ═══════════════════════════════════════════════════════════════
   SINGLE CLUB PAGE (page-single-club.php)
   ═══════════════════════════════════════════════════════════════ */

/* Club directory card hover */
.single-club-page .club-directory-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-color: rgba(1,186,239,0.2);
}

/* Event card hover */
.event-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Testimonial card hover */
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-color: rgba(1,186,239,0.2);
}

/* Instructor card hover (single club page) */
.single-club-page .instructor-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Gallery item hover */
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    #clubInfoGrid {
        grid-template-columns: 1fr !important;
    }
    #eventsGrid {
        grid-template-columns: 1fr !important;
    }
    #testimonialsGrid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    #instructorsGrid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    #relatedClubsGrid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    #galleryGrid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
    #clubInfoGrid {
        grid-template-columns: 1fr !important;
    }
    #eventsGrid {
        grid-template-columns: 1fr !important;
    }
    #testimonialsGrid {
        grid-template-columns: 1fr !important;
    }
    #instructorsGrid {
        grid-template-columns: 1fr !important;
    }
    #relatedClubsGrid {
        grid-template-columns: 1fr !important;
    }
    #galleryGrid {
        grid-template-columns: 1fr !important;
    }
}

/* Leaflet popup override */
#club-map .leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
#club-map .leaflet-popup-tip {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


/* ═══════════════════════════════════════════════════════════════
   MAP PAGE (page-map.php)
   ═══════════════════════════════════════════════════════════════ */

.page-fullmap {
    background: var(--deep-navy);
    overflow: hidden;
    padding-top: 80px; /* account for fixed site header */
}
.admin-bar .page-fullmap {
    padding-top: 112px; /* 80px header + 32px admin bar */
}

/* Force solid header on map page (no hero to scroll through) */
body.page-template-page-map .site-header {
    background: rgba(26, 30, 46, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(1, 186, 239, 0.1);
}

/* ─── Map Header Bar ────────────────────────────────── */
.fullmap-header {
    position: relative;
    z-index: 600;
    background: rgba(26, 30, 46, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(1, 186, 239, 0.12);
    height: 60px;
}

.fullmap-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 2rem;
    max-width: 100%;
    gap: 1.5rem;
}

/* Breadcrumb */
.fullmap-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    min-width: 160px;
}

.breadcrumb-link {
    color: rgba(240, 245, 249, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--bright-water);
}

.breadcrumb-sep {
    color: rgba(240, 245, 249, 0.25);
    display: flex;
    align-items: center;
}

.breadcrumb-current {
    color: var(--bright-water);
    font-weight: 500;
}

/* Title */
.fullmap-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mist-white);
    margin: 0;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--bright-water), var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Filter Toggles */
.fullmap-filters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(240, 245, 249, 0.1);
    border-radius: 100px;
    background: rgba(240, 245, 249, 0.04);
    color: rgba(240, 245, 249, 0.5);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    user-select: none;
}

.filter-toggle:hover {
    background: rgba(240, 245, 249, 0.08);
    border-color: var(--filter-color);
    color: var(--mist-white);
}

.filter-toggle.active {
    background: rgba(240, 245, 249, 0.08);
    border-color: var(--filter-color);
    color: var(--mist-white);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2), inset 0 0 0 1px var(--filter-color);
}

.filter-toggle.active .filter-dot {
    box-shadow: 0 0 8px var(--filter-color);
    transform: scale(1.1);
}

.filter-toggle:not(.active) .filter-dot {
    opacity: 0.3;
}

.filter-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--dot-bg, var(--filter-color));
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.filter-label {
    line-height: 1;
}

/* ─── Map Container ─────────────────────────────────── */
.fullmap-container {
    position: relative;
    height: calc(100vh - 80px - 60px); /* viewport minus site-header and map-header */
    min-height: 500px;
    display: flex;
}
.admin-bar .fullmap-container {
    height: calc(100vh - 80px - 60px - 32px);
}

.fullmap-map-wrap {
    flex: 1;
    position: relative;
    z-index: 1;
}

#fullscreen-map {
    width: 100%;
    height: 100%;
    background: var(--mist-white);
}

/* ─── Map Loader ────────────────────────────────────── */
.fullmap-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(240, 245, 249, 0.95);
    z-index: 100;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.fullmap-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-pulse {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.loader-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--bright-water);
    opacity: 0;
}

.loader-ring:nth-child(1) { width: 20px; height: 20px; }
.loader-ring:nth-child(2) { width: 36px; height: 36px; }
.loader-ring:nth-child(3) { width: 52px; height: 52px; }

.loader-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(26, 30, 46, 0.5);
    letter-spacing: 0.04em;
}

/* ─── Panel Toggle & Map Reset Buttons ──────────────── */
.panel-toggle-btn,
.map-reset-btn {
    position: absolute;
    z-index: 500;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(240, 245, 249, 0.12);
    background: rgba(26, 30, 46, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--mist-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.panel-toggle-btn:hover,
.map-reset-btn:hover {
    background: rgba(1, 186, 239, 0.15);
    border-color: var(--bright-water);
    transform: scale(1.05);
}

.panel-toggle-btn {
    top: 1rem;
    left: 1rem;
}

.map-reset-btn {
    top: 4rem;
    left: 1rem;
}

/* ─── Side Panel (Glassmorphism) ────────────────────── */
.fullmap-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 380px;
    height: 100%;
    z-index: 400;
    background: rgba(26, 30, 46, 0.78);
    backdrop-filter: blur(30px) saturate(1.4);
    -webkit-backdrop-filter: blur(30px) saturate(1.4);
    border-right: 1px solid rgba(1, 186, 239, 0.1);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(240, 245, 249, 0.04);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(1, 186, 239, 0.2) transparent;
}

.fullmap-panel::-webkit-scrollbar {
    width: 5px;
}

.fullmap-panel::-webkit-scrollbar-track {
    background: transparent;
}

.fullmap-panel::-webkit-scrollbar-thumb {
    background: rgba(1, 186, 239, 0.2);
    border-radius: 10px;
}

.fullmap-panel.collapsed {
    transform: translateX(-100%);
}

/* Panel drag handle (mobile only) */
.panel-drag-handle {
    display: none;
}

/* ─── Panel: Search ─────────────────────────────────── */
.panel-search {
    flex-shrink: 0;
}

.search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 0.85rem;
    color: rgba(240, 245, 249, 0.35);
    pointer-events: none;
    transition: color 0.3s ease;
}

.panel-search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    background: rgba(240, 245, 249, 0.05);
    border: 1px solid rgba(240, 245, 249, 0.08);
    border-radius: 12px;
    color: var(--mist-white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.panel-search-input::placeholder {
    color: rgba(240, 245, 249, 0.3);
}

.panel-search-input:focus {
    background: rgba(240, 245, 249, 0.08);
    border-color: var(--bright-water);
    box-shadow: 0 0 0 3px rgba(1, 186, 239, 0.1);
}

.panel-search-input:focus ~ .search-icon,
.panel-search-input:focus + .search-icon {
    color: var(--bright-water);
}

.search-input-wrap:focus-within .search-icon {
    color: var(--bright-water);
}

/* ─── Panel: Section Title ──────────────────────────── */
.panel-section-title {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(240, 245, 249, 0.4);
    margin: 0 0 0.65rem 0;
}

/* ─── Panel: Legend ──────────────────────────────────── */
.panel-legend {
    padding: 1rem;
    background: rgba(240, 245, 249, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(240, 245, 249, 0.05);
}

.legend-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legend-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.legend-row .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px currentColor;
}

.legend-label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(240, 245, 249, 0.7);
    flex: 1;
}

.legend-count {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mist-white);
    background: rgba(240, 245, 249, 0.06);
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    min-width: 24px;
    text-align: center;
}

/* ─── Panel: Stats ──────────────────────────────────── */
.panel-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.panel-stat-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.75rem 0.5rem;
    background: rgba(240, 245, 249, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(240, 245, 249, 0.05);
}

.panel-stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bright-water);
    line-height: 1;
}

.panel-stat-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    color: rgba(240, 245, 249, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

/* ─── Panel: Route List ─────────────────────────────── */
.panel-routes {
    flex: 1;
}

.route-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.route-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.85rem;
    background: rgba(240, 245, 249, 0.03);
    border: 1px solid rgba(240, 245, 249, 0.04);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.route-list-item:hover {
    background: rgba(1, 186, 239, 0.08);
    border-color: rgba(1, 186, 239, 0.15);
    transform: translateX(4px);
}

.route-list-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex: 1;
    min-width: 0;
}

.route-list-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--dot-bg);
    box-shadow: 0 0 8px currentColor;
}

.route-list-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.route-list-name {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--mist-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.route-list-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
}

.route-list-diff {
    font-weight: 500;
    color: var(--diff-color, var(--bright-water));
}

.route-list-dist {
    color: rgba(240, 245, 249, 0.4);
}

.route-list-view {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--bright-water);
    text-decoration: none;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.route-list-item:hover .route-list-view {
    opacity: 1;
    transform: translateX(0);
}

/* ─── Bottom Bar (removed from layout, kept hidden) ── */
.fullmap-bottom {
    display: none;
}

.fullmap-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1.5rem;
}

.bottom-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 160px;
}

.bottom-stat-icon {
    color: var(--bright-water);
    display: flex;
    align-items: center;
}

.bottom-stat-text {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(240, 245, 249, 0.6);
}

.bottom-stat-text strong {
    color: var(--mist-white);
    font-weight: 600;
}

.bottom-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bottom-brand .logo-water {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: var(--mist-white);
}

.bottom-brand .logo-ego {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: var(--bright-water);
}

.bottom-brand-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: rgba(240, 245, 249, 0.3);
    letter-spacing: 0.03em;
    border-left: 1px solid rgba(240, 245, 249, 0.1);
    padding-left: 0.5rem;
}

.bottom-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bottom-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(240, 245, 249, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-link:hover {
    color: var(--bright-water);
}

.btn-sm {
    padding: 0.4rem 0.85rem !important;
    font-size: 0.78rem !important;
    gap: 0.35rem;
    display: inline-flex;
    align-items: center;
}

/* ─── Leaflet Popup Overrides (Full Map) ────────────── */
.fullmap-popup .leaflet-popup-content-wrapper {
    background: rgba(26, 30, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(1, 186, 239, 0.15);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    color: var(--mist-white);
    padding: 0;
}

.fullmap-popup .leaflet-popup-content {
    margin: 0;
    font-family: var(--font-body);
}

.fullmap-popup .leaflet-popup-tip {
    background: rgba(26, 30, 46, 0.95);
    border: 1px solid rgba(1, 186, 239, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fullmap-popup .leaflet-popup-close-btn {
    color: rgba(240, 245, 249, 0.5);
    font-size: 18px;
    top: 8px;
    right: 10px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullmap-popup .leaflet-popup-close-btn:hover {
    color: var(--bright-water);
}

.fmp-inner {
    padding: 1rem 1.1rem;
}

.fmp-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 0.4rem;
    color: var(--mist-white);
}

.fmp-badges {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.fmp-type-badge,
.fmp-diff-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
}

.fmp-type-badge {
    color: #fff;
}

.fmp-diff-badge {
    background: rgba(240, 245, 249, 0.08);
    border: 1px solid rgba(240, 245, 249, 0.1);
}

.fmp-distance {
    font-size: 0.78rem;
    color: rgba(240, 245, 249, 0.5);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.6rem;
}

.fmp-desc {
    font-size: 0.78rem;
    color: rgba(240, 245, 249, 0.55);
    line-height: 1.45;
    margin-bottom: 0.65rem;
}

.fmp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bright-water);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.fmp-link:hover {
    gap: 0.5rem;
}

/* ─── Leaflet Control Overrides ─────────────────────── */
#fullscreen-map .leaflet-control-zoom {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    margin-bottom: 1.5rem;
    margin-left: 1rem;
}
@media (max-width: 768px) {
    #fullscreen-map .leaflet-top.leaflet-left {
        left: auto;
        right: 10px;
        top: 10px;
    }
}

#fullscreen-map .leaflet-control-zoom a {
    background: rgba(26, 30, 46, 0.88);
    color: var(--mist-white);
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid rgba(240, 245, 249, 0.08);
    transition: background 0.3s ease;
}

#fullscreen-map .leaflet-control-zoom a:hover {
    background: rgba(1, 186, 239, 0.2);
}

#fullscreen-map .leaflet-control-zoom a:last-child {
    border-bottom: none;
}

#fullscreen-map .leaflet-control-attribution {
    background: rgba(26, 30, 46, 0.7) !important;
    color: rgba(240, 245, 249, 0.35) !important;
    font-size: 0.65rem;
    backdrop-filter: blur(8px);
    border-radius: 6px 0 0 0;
    padding: 2px 8px;
}

#fullscreen-map .leaflet-control-attribution a {
    color: rgba(1, 186, 239, 0.5) !important;
}

/* ─── Map Page Responsive ────────────────────────────── */
@media (max-width: 1024px) {
    .fullmap-panel {
        width: 320px;
    }
}

@media (max-width: 768px) {
    /* Header: stack vertically */
    .fullmap-header {
        height: auto;
        padding: 0.65rem 0;
    }

    .fullmap-header-inner {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0 1rem;
        justify-content: center;
    }

    .fullmap-breadcrumb {
        order: 1;
        min-width: auto;
        width: 100%;
        justify-content: center;
    }

    .fullmap-title {
        order: 2;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        display: none;
    }

    .fullmap-filters {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.35rem;
    }

    .filter-toggle {
        padding: 0.3rem 0.65rem;
        font-size: 0.72rem;
    }

    /* Map container: full height minus header + map-header */
    .fullmap-container {
        height: calc(100vh - 80px - 90px);
        height: calc(100svh - 80px - 90px);
    }
    .admin-bar .fullmap-container {
        height: calc(100vh - 80px - 90px - 46px);
        height: calc(100svh - 80px - 90px - 46px);
    }

    /* Ensure map is fully interactive on touch devices */
    #fullscreen-map {
        touch-action: auto;
    }

    /* Side panel: bottom drawer */
    .fullmap-panel {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 55%;
        max-height: 55%;
        border-right: none;
        border-top: 1px solid rgba(1, 186, 239, 0.15);
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
        transform: translateY(calc(100% - 60px));
        padding: 0.5rem 1.25rem 1.25rem;
    }

    .fullmap-panel.expanded {
        transform: translateY(0);
    }

    .panel-drag-handle {
        display: flex;
        justify-content: center;
        padding: 0.5rem 0 0.75rem;
        cursor: grab;
        touch-action: none;
    }

    .drag-bar {
        width: 40px;
        height: 4px;
        border-radius: 2px;
        background: rgba(240, 245, 249, 0.2);
        transition: background 0.3s ease;
    }

    .fullmap-panel.expanded .drag-bar {
        background: var(--bright-water);
    }

    .fullmap-panel.collapsed {
        transform: translateY(100%);
    }

    /* Button positions */
    .panel-toggle-btn {
        display: none;
    }

    .map-reset-btn {
        top: 1rem;
        left: 1rem;
    }

}

@media (max-width: 480px) {
    .fullmap-filters {
        gap: 0.25rem;
    }

    .filter-toggle {
        padding: 0.25rem 0.55rem;
        font-size: 0.68rem;
    }

    .filter-dot {
        width: 6px;
        height: 6px;
    }

    .panel-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.35rem;
    }

    .bottom-actions {
        gap: 0.5rem;
    }
}

/* Map panel slide-in — handled by GSAP in main.js */

/* ─── Hide default site footer wave on map page ────── */
.page-fullmap ~ .footer-wave,
.page-fullmap ~ .site-footer {
    display: none;
}
body.page-template-page-map .site-footer,
body.page-template-page-map .footer-wave {
    display: none;
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE (page-about.php)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Story Grid Responsive ─── */
@media (max-width: 768px) {
    .about-story-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* ─── Pillars Grid Responsive ─── */
@media (max-width: 900px) {
    .about-pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* ─── Pillar Card Hover ─── */
.about-pillar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(1,186,239,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.07);
}

/* ─── Offer Grid Responsive ─── */
@media (max-width: 1024px) {
    .about-offer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 640px) {
    .about-offer-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ─── Offer Card Hover ─── */
.about-offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(11,79,108,0.12);
    border-color: rgba(1,186,239,0.2);
}
.about-offer-card:hover > div:first-child {
    opacity: 1 !important;
}

/* ─── Stats Grid Responsive ─── */
@media (max-width: 900px) {
    .about-stats-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media (max-width: 640px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ─── CTA Form Responsive ─── */
@media (max-width: 500px) {
    .about-cta-form {
        flex-direction: column !important;
    }
}

/* ─── CTA Input Focus ─── */
.about-cta-form input:focus {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.18);
}

/* ─── CTA Button Hover ─── */
.about-cta-form button:hover {
    background: #d4621f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,112,42,0.5);
}


/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE (page-contact.php)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Contact Grid Responsive ─── */
@media (max-width: 900px) {
    .contact-grid-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* ─── Form Input Focus ─── */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--bright-water) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(1,186,239,0.1);
}

/* ─── Submit Button Hover ─── */
.contact-submit-btn:hover {
    background: #d4621f !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,112,42,0.4) !important;
}
.contact-submit-btn:active {
    transform: translateY(0);
}

/* ─── Contact Info Card Hover ─── */
.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(1,186,239,0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ─── Social Link Hover ─── */
.contact-info-card a[aria-label]:hover {
    background: rgba(1,186,239,0.15) !important;
    border-color: rgba(1,186,239,0.3) !important;
    color: var(--bright-water) !important;
    transform: translateY(-2px);
}

/* ─── FAQ Accordion ─── */
.faq-item.faq-open {
    background: rgba(255,255,255,0.06);
    border-color: rgba(1,186,239,0.15);
}
.faq-item.faq-open .faq-icon {
    background: rgba(1,186,239,0.2);
    transform: rotate(180deg);
}
.faq-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.12);
}

/* ─── Leaflet map dark theme ─── */
#contact-map .leaflet-tile {
    filter: brightness(0.6) invert(1) contrast(3) hue-rotate(200deg) saturate(0.3) brightness(0.7);
}
#contact-map .leaflet-control-zoom a {
    background: var(--deep-navy) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,0.1) !important;
}


/* ═══════════════════════════════════════════════════════════════
   REVIEWS PAGE — Filter Card Show/Hide Transitions
   ═══════════════════════════════════════════════════════════════ */

/* Cards — filtered show/hide */
.review-grid-card.review-card-hidden {
    display: none !important;
}

.review-grid-card.review-card-visible {
    display: block !important;
}

/* Active filter pill override for reviews page */
body.page-template-page-reviews .filter-pill.active {
    background: var(--bright-water) !important;
    border-color: var(--bright-water) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(1,186,239,0.3);
}

/* Results count */
.reviews-results-count {
    transition: opacity 0.3s ease;
}


/* ═══════════════════════════════════════════════════════════════
   REVIEWS PAGE — Review Detail Modal
   ═══════════════════════════════════════════════════════════════ */

/* Overlay */
.review-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.review-modal-overlay.review-modal-active {
    opacity: 1;
    visibility: visible;
}

/* Modal Card */
.review-modal-card {
    position: relative;
    background: #1A1E2E;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 32px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(1, 186, 239, 0.2) transparent;
}

.review-modal-card::-webkit-scrollbar {
    width: 5px;
}
.review-modal-card::-webkit-scrollbar-track {
    background: transparent;
}
.review-modal-card::-webkit-scrollbar-thumb {
    background: rgba(1, 186, 239, 0.2);
    border-radius: 10px;
}

.review-modal-overlay.review-modal-active .review-modal-card {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Close button */
.review-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.review-modal-close:hover {
    background: rgba(232, 112, 42, 0.15);
    border-color: rgba(232, 112, 42, 0.3);
    color: var(--sunset-orange);
    transform: rotate(90deg);
}

/* Modal body */
.review-modal-body {
    padding: 2.5rem 3rem 2.5rem;
}

/* Modal header: category badge + price */
.review-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.review-modal-category-badge {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    border: 1px solid;
}

.review-modal-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

/* Stars */
.review-modal-stars-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.review-modal-star {
    font-size: 1.1rem;
    line-height: 1;
}
.review-modal-star-full {
    color: var(--sunset-orange);
}
.review-modal-star-half {
    color: var(--sunset-orange);
    opacity: 0.65;
}
.review-modal-star-empty {
    color: var(--sunset-orange);
    opacity: 0.2;
}

.review-modal-rating-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-left: 0.35rem;
}

/* Product name */
.review-modal-product {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.25rem;
}

/* Brand */
.review-modal-brand {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 0.5rem;
}

/* Divider */
.review-modal-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    margin: 1.5rem 0;
}

/* Excerpt */
.review-modal-excerpt {
    font-family: var(--font-editorial);
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

/* Tags area */
.review-modal-tags {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.review-modal-pros,
.review-modal-cons {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-modal-tag-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.25rem;
}

.review-modal-tag {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

.review-modal-tag-pro {
    color: #20BF55;
    background: rgba(32, 191, 85, 0.1);
    border: 1px solid rgba(32, 191, 85, 0.2);
}

.review-modal-tag-con {
    color: #E8702A;
    background: rgba(232, 112, 42, 0.1);
    border: 1px solid rgba(232, 112, 42, 0.2);
}

/* Reviewer */
.review-modal-reviewer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.review-modal-reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.review-modal-reviewer-info {
    display: flex;
    flex-direction: column;
}

.review-modal-reviewer-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

.review-modal-reviewer-trips {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* Modal responsive */
@media (max-width: 700px) {
    .review-modal-overlay {
        padding: 1rem;
    }
    .review-modal-body {
        padding: 2rem 1.5rem;
    }
    .review-modal-tags {
        flex-direction: column;
        gap: 1.25rem;
    }
    .review-modal-pros,
    .review-modal-cons {
        min-width: 0;
    }
}

/* ─── IR Location Input ─── */
.ir-location-input-wrap .ir-location-dot {
    left: -3px;
}


/* ═══════════════════════════════════════════════════════════════
   SHARED COMPONENT CLASSES (replacing inline styles)
   Phase 1 cleanup — these classes mirror the inline styles found
   in inner-page PHP templates so they can be swapped 1-to-1.
   ═══════════════════════════════════════════════════════════════ */


/* ─── Inner Page Heroes ──────────────────────────────────────── */

.inner-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.inner-hero--tall {
    min-height: 60vh;
}

.inner-hero--short {
    min-height: 40vh;
}

.inner-hero--align-end {
    align-items: flex-end;
}

.inner-hero__bg {
    position: absolute;
    inset: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.inner-hero__bg--zoom {
    transform: scale(1.05);
    transition: transform 8s ease;
}

.inner-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,30,46,0.85) 0%, rgba(11,79,108,0.7) 100%);
}

.inner-hero__overlay--about {
    background: linear-gradient(180deg, rgba(26,30,46,0.65) 0%, rgba(11,79,108,0.80) 50%, rgba(26,30,46,0.95) 100%);
}

.inner-hero__overlay--contact {
    background: linear-gradient(180deg, rgba(26,30,46,0.65) 0%, rgba(11,79,108,0.80) 50%, rgba(26,30,46,0.95) 100%);
}

.inner-hero__overlay--routes {
    background: linear-gradient(180deg, rgba(26,30,46,0.65) 0%, rgba(11,79,108,0.80) 50%, rgba(26,30,46,0.95) 100%);
}

.inner-hero__overlay--guides {
    background: linear-gradient(180deg, rgba(26,30,46,0.65) 0%, rgba(11,79,108,0.75) 50%, rgba(26,30,46,0.9) 100%);
}

.inner-hero__overlay--reviews {
    background: linear-gradient(180deg, rgba(26,30,46,0.85) 0%, rgba(11,79,108,0.7) 50%, rgba(26,30,46,0.9) 100%);
}

.inner-hero__overlay--clubs {
    background: linear-gradient(180deg, rgba(26,30,46,0.75) 0%, rgba(11,79,108,0.65) 50%, rgba(26,30,46,0.85) 100%);
}

.inner-hero__overlay--single-guide {
    background: linear-gradient(180deg, rgba(26,30,46,0.4) 0%, rgba(11,79,108,0.5) 30%, rgba(26,30,46,0.92) 100%);
}

.inner-hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
}

.inner-hero__noise--04 {
    opacity: 0.04;
}

.inner-hero__orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.inner-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 6rem 2rem 4rem;
}

.inner-hero__content--clubs {
    padding: 4rem 2rem;
}

.inner-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.inner-hero__title--editorial {
    font-family: var(--font-editorial);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.inner-hero__title--clubs {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.inner-hero__title--reviews {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.03em;
    line-height: 1.05;
}

.inner-hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

.inner-hero__subtitle--wide {
    max-width: 650px;
}


/* ─── Floating Orbs (hero particles) ─────────────────────────── */

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    width: var(--orb-size, 200px);
    height: var(--orb-size, 200px);
    top: var(--orb-top, 20%);
    left: var(--orb-left, 10%);
    bottom: var(--orb-bottom, auto);
    right: var(--orb-right, auto);
    background: radial-gradient(circle, var(--orb-color, rgba(1,186,239,0.2)), transparent 70%);
}


/* ─── Breadcrumbs ─────────────────────────────────────────────── */

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.breadcrumb--sm {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.breadcrumb--reviews {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.breadcrumb__sep {
    color: rgba(255,255,255,0.4);
}

.breadcrumb__sep--dim {
    color: rgba(255,255,255,0.35);
}

.breadcrumb__sep--dimmer {
    color: rgba(255,255,255,0.3);
}

.breadcrumb__link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb__link:hover {
    color: #fff;
}

.breadcrumb__link--bright {
    color: var(--bright-water);
}

.breadcrumb__link--dim {
    color: rgba(255,255,255,0.5);
}

.breadcrumb__current {
    color: var(--bright-water);
}

.breadcrumb__current--dim {
    color: rgba(255,255,255,0.6);
}


/* ─── Gradient Text Title ─────────────────────────────────────── */

.section-title--gradient {
    background: linear-gradient(135deg, var(--bright-water), var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title--gradient-blue {
    background: linear-gradient(135deg, var(--sunset-orange), var(--bright-water));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ─── Scroll Indicator ────────────────────────────────────────── */

.scroll-indicator__text {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-bottom: 0.5rem;
    text-align: center;
}

.scroll-indicator__line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.scroll-indicator__line--wide {
    width: 2px;
    border-radius: 2px;
}

.scroll-indicator__dot {
    width: 100%;
    height: 10px;
    background: var(--bright-water);
    border-radius: 1px;
}

.scroll-indicator__dot--pill {
    width: 3px;
    height: 12px;
    border-radius: 2px;
    position: absolute;
    left: -1px;
}

.scroll-indicator__dot--wide {
    width: 2px;
    height: 12px;
    border-radius: 2px;
}


/* ─── Bento Feature Grid ──────────────────────────────────────── */

.features-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
    margin-top: var(--space-lg);
}

.bento-card {
    position: relative;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.bento-card--large {
    grid-column: span 3;
    grid-row: span 2;
    min-height: 340px;
}

.bento-card--medium {
    grid-column: span 3;
    min-height: 200px;
}

.bento-card--small {
    grid-column: span 2;
    min-height: 180px;
}

.bento-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.bento-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,17,23,0.2) 0%, rgba(13,17,23,0.55) 40%, rgba(13,17,23,0.88) 100%);
    z-index: 1;
}

.bento-card__content {
    position: relative;
    z-index: 2;
}

.bento-card__content--large {
    padding: 2.5rem;
}

.bento-card__content--medium,
.bento-card__content--small {
    padding: 1.75rem;
}

.bento-card__icon {
    margin-bottom: 0.75rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.bento-card__icon--large {
    font-size: 2.5rem;
}

.bento-card__icon--medium {
    font-size: 2rem;
}

.bento-card__icon--small {
    font-size: 1.6rem;
}

.bento-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.bento-card__title--large {
    font-size: 1.6rem;
}

.bento-card__title--sm {
    font-size: 1.15rem;
}

.bento-card__desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.bento-card__desc--small {
    font-size: 0.82rem;
}

@media (max-width: 1024px) {
    .features-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-card--large,
    .bento-card--medium,
    .bento-card--small {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 200px;
    }
}

@media (max-width: 640px) {
    .features-bento {
        grid-template-columns: 1fr;
    }
}


/* ─── Spotlight Section (Community) ───────────────────────────── */

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: var(--space-lg);
}

.spotlight-card {
    background: var(--deep-navy);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.06);
}

.spotlight-card--paddler {
    padding: 2.5rem;
}

.spotlight-card--photo {
    display: flex;
    flex-direction: column;
}

.spotlight-card__glow {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(1,186,239,0.1), transparent 70%);
    pointer-events: none;
}

.spotlight-card__label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bright-water);
    display: block;
    margin-bottom: 1.5rem;
}

.spotlight-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep-ocean), var(--bright-water));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    border: 3px solid rgba(1,186,239,0.3);
}

.spotlight-card__name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
    margin-bottom: 0.25rem;
}

.spotlight-card__location {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 1rem;
}

.spotlight-card__bio {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.spotlight-card__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.spotlight-card__stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.spotlight-card__stat-value--orange {
    color: var(--sunset-orange);
}

.spotlight-card__stat-value--blue {
    color: var(--bright-water);
}

.spotlight-card__stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
}

.spotlight-card__badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.spotlight-card__badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 0.35rem 0.9rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.spotlight-card__photo {
    flex: 1;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.spotlight-card__photo-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(0deg, rgba(0,0,0,0.5), transparent);
}

.spotlight-card__photo-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bright-water);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
}

.spotlight-card__photo-info {
    padding: 1.5rem 2rem 2rem;
}

.spotlight-card__photo-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
    margin-bottom: 0.5rem;
}

.spotlight-card__photo-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spotlight-card__photo-credit {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.spotlight-card__likes {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

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


/* ─── Club Cards ──────────────────────────────────────────────── */

.club-card {
    width: 300px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.club-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.club-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.club-card__name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 0.35rem;
}

.club-card__county {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 1.2rem;
}

.club-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.club-card__rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.club-card__rating-star {
    color: var(--sunset-orange);
    font-size: 0.9rem;
}

.club-card__rating-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.club-card__members {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}


/* ─── Club Directory Card (light bg, clubs archive page) ──────── */

.club-directory-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}


/* ─── Contact Form ────────────────────────────────────────────── */

.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.contact-form-wrap--bordered {
    border: 1px solid rgba(11,79,108,0.08);
    box-shadow: 0 8px 30px rgba(11,79,108,0.06);
}

.contact-form__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.contact-form__subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(26,30,46,0.55);
    margin-bottom: 2rem;
}

.form-field {
    margin-bottom: 1.25rem;
}

.form-field--lg {
    margin-bottom: 1.5rem;
}

.form-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--deep-ocean);
    display: block;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.85rem 1.15rem;
    border-radius: 12px;
    border: 1.5px solid rgba(11,79,108,0.12);
    background: #F8FAFB;
    color: var(--deep-navy);
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: var(--bright-water);
    box-shadow: 0 0 0 3px rgba(1,186,239,0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(26,30,46,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-response-note {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(26,30,46,0.45);
    margin-top: 1rem;
    text-align: center;
}


/* ─── Contact Info Cards ──────────────────────────────────────── */

.contact-info-card {
    position: relative;
    background: var(--deep-navy);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.contact-info-card__glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(1,186,239,0.1), transparent 70%);
    pointer-events: none;
}

.contact-info-card__inner {
    position: relative;
    z-index: 2;
}

.contact-info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(1,186,239,0.12);
    border: 1px solid rgba(1,186,239,0.15);
    margin-bottom: 1rem;
    color: var(--bright-water);
}

.contact-info-card__title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.4rem;
}

.contact-info-card__value {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

.contact-info-card__link {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-card__link:hover {
    color: var(--bright-water);
}

.contact-info-card__socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.contact-info-card__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}


/* ─── FAQ Accordion ───────────────────────────────────────────── */

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active {
    border-color: rgba(1,186,239,0.2);
    background: rgba(1,186,239,0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: none;
    background: none;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(1,186,239,0.12);
    border: 1px solid rgba(1,186,239,0.2);
    color: var(--bright-water);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    line-height: 1;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer__inner {
    padding: 0 2rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
}


/* ─── Safety Section (guides page) ────────────────────────────── */

.safety-section {
    position: relative;
    overflow: hidden;
    padding: var(--space-xl) 0;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.safety-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.safety-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 2px;
    background: var(--accent-color);
}

.safety-card__layout {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.safety-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--icon-bg);
}

.safety-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 0.4rem;
}

.safety-card__desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

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


/* ─── About Page Pillars ──────────────────────────────────────── */

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--space-lg);
}

.pillar-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(1,186,239,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(1,186,239,0.1);
}

.pillar-card__glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(1,186,239,0.08), transparent 70%);
    pointer-events: none;
}

.pillar-card__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(1,186,239,0.15), rgba(32,191,85,0.1));
    border: 1px solid rgba(1,186,239,0.2);
    margin-bottom: 1.5rem;
    color: var(--bright-water);
}

.pillar-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 1rem;
}

.pillar-card__desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
}

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


/* ─── About Page Offers Grid ──────────────────────────────────── */

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--space-lg);
}

.offer-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 2.25rem 2rem;
    border: 1px solid rgba(11,79,108,0.08);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.offer-card__accent-line {
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 3px;
    background: linear-gradient(90deg, var(--bright-water), var(--emerald));
    border-radius: 0 0 2px 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.offer-card:hover .offer-card__accent-line {
    opacity: 1;
}

.offer-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(1,186,239,0.1), rgba(11,79,108,0.08));
    margin-bottom: 1.25rem;
    color: var(--deep-ocean);
}

.offer-card__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--deep-navy);
    margin-bottom: 0.6rem;
}

.offer-card__desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: rgba(26,30,46,0.65);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


/* ─── About Page Stats Grid ───────────────────────────────────── */

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: var(--space-lg);
}

.about-stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.about-stat-number-wrap {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-stat-suffix {
    color: var(--bright-water);
}

.about-stat-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
}

.about-stat-underline {
    width: 30px;
    height: 2px;
    background: var(--bright-water);
    border-radius: 1px;
    margin: 0.75rem auto 0;
    opacity: 0.4;
}

@media (max-width: 768px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


/* ─── About Story Grid ────────────────────────────────────────── */

.about-story__eyebrow {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bright-water);
    display: block;
    margin-bottom: 1rem;
}

.about-story__heading {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--deep-navy);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.about-story__accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--bright-water), var(--emerald));
    border-radius: 2px;
    margin-top: 1.5rem;
}

.about-story__paragraph {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(26,30,46,0.75);
}

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


/* ─── Newsletter CTA ──────────────────────────────────────────── */

.newsletter-section__orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}


/* ─── Glassmorphism Info Card (reusable) ──────────────────────── */

.glass-info-card {
    background: rgba(26,30,46,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2rem;
}

.glass-info-card--sticky {
    position: sticky;
    top: 120px;
}


/* ─── Star Rating Display ─────────────────────────────────────── */

.star-display {
    display: flex;
    gap: 2px;
    color: var(--sunset-orange);
    font-size: 0.85rem;
}

.star-display--large {
    font-size: 1.1rem;
}

.star-empty {
    opacity: 0.3;
}


/* ─── Two Column Layout ───────────────────────────────────────── */

.two-col {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 3rem;
    align-items: start;
}

.two-col--map {
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

.two-col--contact {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 900px) {
    .two-col,
    .two-col--map,
    .two-col--contact {
        grid-template-columns: 1fr;
    }
}


/* ─── About CTA Section ──────────────────────────────────────── */

.about-cta__form {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
}

.about-cta__email {
    flex: 1;
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.9rem 1.25rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.about-cta__submit {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    border: none;
    background: var(--sunset-orange);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(232,112,42,0.4);
}


/* ─── Contact Grid Layout ─────────────────────────────────────── */

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


/* ─── FAQ List Container ──────────────────────────────────────── */

.faq-list {
    max-width: 800px;
    margin: var(--space-lg) auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


/* ─── Map Container ───────────────────────────────────────────── */

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 4px 16px rgba(1,186,239,0.08);
}

.map-container__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 20px;
    box-shadow: inset 0 0 60px rgba(1,186,239,0.08);
}

.map-container__map {
    width: 100%;
    height: 450px;
    background: #f0f5f9;
}

.map-container__map--tall {
    height: 500px;
}


/* ─── Map Legend ───────────────────────────────────────────────── */

.map-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 1rem;
    background: rgba(26,30,46,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
}

.map-legend__item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.map-legend__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}


/* ─── Filter Pills ────────────────────────────────────────────── */

.filter-pill--dark {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-pill--dark.active {
    border-color: var(--bright-water);
    background: var(--bright-water);
    color: var(--deep-navy);
}


/* ─── Instructor Card ─────────────────────────────────────────── */

.instructor-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    text-align: center;
}


/* ─── Instructor Card Grid ────────────────────────────────────── */

.instructor-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .instructor-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .instructor-card-grid {
        grid-template-columns: 1fr;
    }
}


/* ─── Single Route Page ───────────────────────────────────────── */

.single-route-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}


/* ─── Single Review Hero ──────────────────────────────────────── */

.single-review-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(165deg, var(--deep-navy) 0%, #0d2033 40%, #0B4F6C 100%);
}


/* ─── Background Glow Effects ─────────────────────────────────── */

.bg-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.bg-glow--orange-tr {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,112,42,0.08), transparent 70%);
}

.bg-glow--blue-bl {
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(1,186,239,0.06), transparent 70%);
}


/* ─── Share Buttons (single guide) ────────────────────────────── */

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.share-btn:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}


/* ─── Article Layout (single guide) ───────────────────────────── */

.sg-article-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .sg-article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* ─── Route Grid Cards ────────────────────────────────────────── */

.route-grid-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}

.route-grid-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,30,46,0.05) 0%, rgba(26,30,46,0.15) 30%, rgba(26,30,46,0.55) 60%, rgba(26,30,46,0.92) 100%);
    transition: background 0.4s ease;
}

.route-grid-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1.5rem;
}


/* ─── Reviews Grid ────────────────────────────────────────────── */

.reviews-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .reviews-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .reviews-grid-layout {
        grid-template-columns: 1fr;
    }
}


/* ─── Routes Grid ─────────────────────────────────────────────── */

.routes-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .routes-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .routes-grid-layout {
        grid-template-columns: 1fr;
    }
}


/* ─── Guides Archive Grid ─────────────────────────────────────── */

.guides-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--space-lg);
}

@media (max-width: 1024px) {
    .guides-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .guides-archive-grid {
        grid-template-columns: 1fr;
    }
}


/* ─── Clubs Grid ──────────────────────────────────────────────── */

.clubs-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .clubs-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .clubs-grid-layout {
        grid-template-columns: 1fr;
    }
}


/* ─── Category Badge ──────────────────────────────────────────── */

.category-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
}


/* ─── Difficulty Badge ────────────────────────────────────────── */

.difficulty-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    background: var(--bg, var(--bright-water));
    color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}


/* ─── Water Type Badge ────────────────────────────────────────── */

.water-type-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.1);
}


/* ─── Register CTA Section ────────────────────────────────────── */

.register-cta__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.register-cta__btn-secondary {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: var(--deep-navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(26,30,46,0.15);
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}

.register-cta__btn-secondary:hover {
    border-color: var(--deep-navy);
    background: rgba(26,30,46,0.05);
}


/* ─── Certification Badge ─────────────────────────────────────── */

.certification-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--emerald);
    background: rgba(32,191,85,0.1);
    border: 1px solid rgba(32,191,85,0.2);
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
}


/* ─── Phase 3: Additional shared classes ─────────────────────── */

.section-bg--mist {
    background: var(--mist-white);
    padding: var(--space-xl) 0;
}

.section-bg--navy {
    background: var(--deep-navy);
    padding: var(--space-xl) 0;
}

.section-bg--bright-water {
    background: #01BAEF;
    position: relative;
    padding: 0 0 6rem 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-story__right {
    padding-top: 0.5rem;
}

.about-cta__orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.about-cta__noise {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    pointer-events: none;
}

.about-cta__content-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-cta__inner {
    max-width: 650px;
    margin: 0 auto;
}

.about-cta__headline {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.about-cta__desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-submit-btn {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    background: var(--sunset-orange);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232,112,42,0.3);
    width: 100%;
}

.guides-filter-section {
    background: var(--mist-white);
    padding: 0 2rem 3rem;
}

.guides-filter-container {
    max-width: 900px;
    margin: 0 auto;
}

.guides-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 60px;
    padding: 0.6rem 1rem;
    box-shadow: 0 8px 32px rgba(11,79,108,0.08);
}

/* Guides filter pills — light background variant */
.guides-filter-bar .filter-pill {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(26,30,46,0.1);
    background: rgba(26,30,46,0.03);
    color: rgba(26,30,46,0.55);
    cursor: pointer;
    transition: all 0.3s ease;
}

.guides-filter-bar .filter-pill:hover {
    background: rgba(11,79,108,0.08);
    border-color: rgba(11,79,108,0.18);
    color: var(--deep-ocean);
}

.guides-filter-bar .filter-pill.active {
    background: var(--bright-water);
    border-color: var(--bright-water);
    color: #fff;
    box-shadow: 0 4px 16px rgba(1,186,239,0.25);
}

.guides-section--mist {
    background: var(--mist-white);
    padding-top: 1rem;
}

#featuredGuide.guides-section--mist {
    padding-bottom: 2rem;
}

.safety-section--gradient {
    background: linear-gradient(180deg, #1A1E2E 0%, #0f1318 100%);
    position: relative;
    overflow: hidden;
}

.safety-section__container {
    position: relative;
    z-index: 2;
    padding-left: clamp(2rem, 5vw, 6rem);
    padding-right: clamp(2rem, 5vw, 6rem);
}

.safety-tips-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.newsletter-section--sand {
    background: #E8DCC8;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.newsletter-orb {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.newsletter-orb--orange {
    top: -20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,112,42,0.1), transparent 70%);
}

.newsletter-orb--blue {
    bottom: -20%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(11,79,108,0.08), transparent 70%);
}

.newsletter-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--deep-ocean);
    display: block;
    margin-bottom: 1rem;
}

.newsletter-heading {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--deep-navy);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.newsletter-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(26,30,46,0.65);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.newsletter-form-wrap {
    max-width: 520px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(11,79,108,0.12);
    border: 2px solid rgba(11,79,108,0.1);
}

.newsletter-section--sand .newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    background: #fff;
    color: var(--deep-navy);
    outline: none;
}

.newsletter-section--sand .newsletter-gdpr {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(26,30,46,0.5);
    text-align: left;
    cursor: pointer;
}

.newsletter-section--sand .newsletter-gdpr input[type="checkbox"] {
    margin-top: 0.15rem;
    accent-color: var(--deep-ocean);
}

.newsletter-section--sand .newsletter-btn {
    border-radius: 0 50px 50px 0;
    padding: 1rem 2rem;
    white-space: nowrap;
}

.guide-card-footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.guide-card-author {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
}

.section-eyebrow--orange {
    color: var(--sunset-orange);
}

.section-eyebrow--emerald {
    color: var(--emerald);
}

.section-title--editorial {
    font-family: var(--font-editorial);
    text-transform: none;
    letter-spacing: 0;
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-description--muted {
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    max-width: 520px;
}

.section-title--heading-font {
    font-family: var(--font-heading);
}

.map-section--mist {
    background: var(--mist-white);
    padding: var(--space-xl) 0;
}

.map-section-header {
    margin-bottom: var(--space-lg);
}

.mt-2rem {
    margin-top: 2rem;
}

.scroll-indicator--inner {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}


/* ═══════════════════════════════════════════════════════════════
   PHASE 3 CLEANUP — Inline-style replacement classes
   ═══════════════════════════════════════════════════════════════ */


/* ─── Homepage Hero Orbs (custom-property driven) ────────────── */

.hero-particle-orb {
    position: absolute;
    border-radius: 50%;
    width: var(--orb-size);
    height: var(--orb-size);
    background: radial-gradient(circle, var(--orb-color), transparent 70%);
    top: var(--orb-top, auto);
    bottom: var(--orb-bottom, auto);
    left: var(--orb-left, auto);
    right: var(--orb-right, auto);
}


/* ─── Section Title Gradient Tri-color ───────────────────────── */

.section-title--gradient-tri {
    background: linear-gradient(135deg, var(--bright-water), var(--emerald), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ─── Relative Z-index Helpers ───────────────────────────────── */

.z-2 { position: relative; z-index: 2; }


/* ─── Text / Spacing Helpers ─────────────────────────────────── */

.text-center { text-align: center; }
.mt-sm  { margin-top: 1.5rem; }
.mt-md  { margin-top: 2rem; }
.mt-lg  { margin-top: 3rem; }


/* ─── Legend Dot Color Variants ──────────────────────────────── */

.legend-dot--lake    { background: #01BAEF; }
.legend-dot--river   { background: #20BF55; }
.legend-dot--sea     { background: #E8702A; }
.legend-dot--blueway { background: #00d4ff; }
.legend-dot--ocean   { background: #0B4F6C; }
.legend-dot--multi   { background: #E8702A; }


/* Route stars already defined above — .star-empty added here */


/* ─── Route Grid Card Inner Elements ─────────────────────────── */

.route-grid-card__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.route-grid-card__title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.route-grid-card__county {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    display: block;
    margin-bottom: 0.75rem;
}

.route-grid-card__meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 0.6rem;
}

.route-grid-card__meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.route-grid-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.route-grid-card__link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bright-water);
    text-decoration: none;
    transition: color 0.3s;
}


/* ─── Filter Bar (routes page) ───────────────────────────────── */

.filter-bar {
    background: rgba(26,30,46,0.92);
}

.filter-bar__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-shrink: 0;
}

.filter-group--end {
    flex-shrink: 0;
    margin-left: auto;
}

.filter-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    margin-right: 0.25rem;
    white-space: nowrap;
}


/* ─── Routes Grid Header ─────────────────────────────────────── */

.routes-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.routes-grid-count {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--deep-ocean);
}

.routes-grid-count__num {
    color: var(--bright-water);
}

.routes-sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.routes-sort__label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(26,30,46,0.4);
}


/* ─── Map Section Wrapper ────────────────────────────────────── */

.map-section-wrap {
    position: relative;
    margin-top: var(--space-lg);
}


/* ─── Section Container Width Variants ───────────────────────── */

.section-container--wide {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-container--narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-container--md {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-container--1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* ─── Review Grid Card (page-reviews.php) ────────────────────── */

.review-grid-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.04);
}

.review-grid-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.review-grid-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.review-grid-card__header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-grid-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.review-grid-card__category {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
}

.review-grid-card__price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-navy);
}

.review-grid-card__rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.review-grid-card__stars {
    display: flex;
    gap: 2px;
}

.review-grid-card__star {
    color: var(--sunset-orange);
    font-size: 0.95rem;
}

.review-grid-card__star--half {
    opacity: 0.7;
}

.review-grid-card__star--empty {
    opacity: 0.2;
}

.review-grid-card__rating-num {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--deep-navy);
}

.review-grid-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--deep-navy);
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.review-grid-card__brand {
    font-size: 0.85rem;
    color: rgba(26,30,46,0.45);
    display: block;
    margin-bottom: 0.75rem;
}

.review-grid-card__excerpt {
    font-size: 0.92rem;
    color: rgba(26,30,46,0.65);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-grid-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.review-grid-card__tag-pro {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #16a34a;
    background: rgba(32,191,85,0.1);
    border: 1px solid rgba(32,191,85,0.2);
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
}

.review-grid-card__tag-con {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #E8702A;
    background: rgba(232,112,42,0.1);
    border: 1px solid rgba(232,112,42,0.2);
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
}

.review-grid-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(26,30,46,0.06);
}

.review-grid-card__reviewer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-grid-card__reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.review-grid-card__reviewer-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--deep-navy);
    display: block;
    line-height: 1.2;
}

.review-grid-card__reviewer-trips {
    font-size: 0.75rem;
    color: rgba(26,30,46,0.4);
}

.review-grid-card__read-full {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bright-water);
    text-decoration: none;
    transition: color 0.3s;
}


/* ─── Reviews No Results ─────────────────────────────────────── */

.reviews-no-results {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
}

.reviews-no-results__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reviews-no-results__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.reviews-no-results__desc {
    font-size: 1rem;
    color: rgba(26,30,46,0.5);
}


/* ─── Top Rated Section ──────────────────────────────────────── */

.top-rated-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.top-rated-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr;
    transition: all 0.4s var(--ease-out);
}

.top-rated-card__accent { width: 6px; }

.top-rated-card__inner {
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.top-rated-card__rank { flex-shrink: 0; }

.top-rated-card__rank-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    line-height: 1;
}

.top-rated-card__body { flex: 1; min-width: 0; }

.top-rated-card__title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.top-rated-card__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
    line-height: 1.2;
}

.top-rated-card__cat-badge {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bright-water);
    background: rgba(1,186,239,0.1);
    border: 1px solid rgba(1,186,239,0.2);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
}

.top-rated-card__brand {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-bottom: 1rem;
}

.top-rated-card__quote {
    font-family: var(--font-editorial);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.top-rated-card__reviewer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.top-rated-card__score { flex-shrink: 0; text-align: center; }

.top-rated-card__score-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sunset-orange), #d4581a);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(232,112,42,0.3);
}

.top-rated-card__score-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.top-rated-card__score-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
    margin-top: 0.5rem;
}

.top-rated-card__star {
    color: var(--sunset-orange);
    font-size: 0.75rem;
}

@media (max-width: 900px) {
    .top-rated-card { grid-template-columns: 1fr; }
    .top-rated-card__accent { width: 100%; height: 6px; }
    .top-rated-card__inner { flex-direction: column; padding: 1.5rem; gap: 1.5rem; }
}


/* ─── Submit CTA (Reviews page) ──────────────────────────────── */

.submit-cta__icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sunset-orange), #d4581a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 32px rgba(232,112,42,0.25);
}

.submit-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.submit-cta__desc {
    font-size: 1.1rem;
    color: rgba(26,30,46,0.6);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.submit-cta__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.submit-cta__stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--deep-ocean);
    display: block;
}

.submit-cta__stat-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(26,30,46,0.45);
}

.submit-cta__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(26,30,46,0.1);
}


/* ─── Filter Pills (reviews/clubs) ───────────────────────────── */

.filter-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.filter-pills-row--sm {
    gap: 0.6rem;
}


/* ─── Club Directory Card Inner Elements ─────────────────────── */

.club-dir__accent-bar { height: 4px; }

.club-dir__body { padding: 1.75rem; }

.club-dir__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.club-dir__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.club-dir__type-badge {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--deep-ocean);
    background: rgba(11,79,108,0.08);
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
}

.club-dir__name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.club-dir__desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: rgba(26,30,46,0.55);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.club-dir__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(26,30,46,0.06);
}

.club-dir__stats {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.club-dir__rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.club-dir__rating-star {
    color: var(--sunset-orange);
    font-size: 0.9rem;
}

.club-dir__rating-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--deep-navy);
}

.club-dir__members {
    font-size: 0.8rem;
    color: rgba(26,30,46,0.45);
    font-family: var(--font-body);
}

.club-dir__link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bright-water);
    text-decoration: none;
    transition: color 0.3s;
}


/* ─── Instructor Card Inner Elements ─────────────────────────── */

.instructor-card__glow {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    pointer-events: none;
}

.instructor-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 1.25rem;
    border: 3px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.instructor-card__name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 1;
}

.instructor-card__location {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    display: block;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.instructor-card__specialty {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.instructor-card__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    position: relative;
    z-index: 1;
}

.instructor-card__rating-star {
    color: var(--sunset-orange);
    font-size: 0.9rem;
}

.instructor-card__rating-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}

.instructor-card__rating-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    margin-left: 0.15rem;
}


/* ─── Warm BG orbs (submit-review, register-club sections) ──── */

.warm-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.warm-bg-orb {
    position: absolute;
    border-radius: 50%;
}

.warm-bg-orb--orange-tr {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,112,42,0.08), transparent 70%);
    top: -10%;
    right: -5%;
}

.warm-bg-orb--blue-bl {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(11,79,108,0.06), transparent 70%);
    bottom: -15%;
    left: -5%;
}

.warm-bg-orb--green-c {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(32,191,85,0.05), transparent 70%);
    top: 30%;
    left: 40%;
}


/* ─── Register CTA Inner Elements ────────────────────────────── */

.register-cta__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sunset-orange), #c45a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 30px rgba(232,112,42,0.25);
}

.register-cta__title {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--deep-navy);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.register-cta__desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(26,30,46,0.6);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   PHASE 3b: SINGLE DETAIL PAGE INLINE-STYLE REPLACEMENTS
   ═══════════════════════════════════════════════════════════════ */
.sp-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.sp-container--cta { max-width: 800px; text-align: center; position: relative; }
.sp-section { padding: 5rem 0; }
.sp-z2 { position: relative; z-index: 2; }
.sp-z3 { position: relative; z-index: 3; }
.sp-center { text-align: center; }
.sp-mb-xl { margin-bottom: 2.5rem; }
.sp-mb-md { margin-bottom: 1.5rem; }
.sp-mb-1 { margin-bottom: 1rem; }
.sp-eyebrow { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; display: block; margin-bottom: 0.75rem; }
.sp-eyebrow--ocean { color: var(--deep-ocean); }
.sp-eyebrow--water { color: var(--bright-water); }
.sp-eyebrow--orange { color: var(--sunset-orange); }
.sp-eyebrow--emerald { color: var(--emerald); }
.sp-eyebrow--dim { color: rgba(255,255,255,0.7); }
.sp-heading { font-family: var(--font-heading); font-size: clamp(1.8rem,4vw,2.5rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }
.sp-heading--white { color: #fff; }
.sp-heading--dark { color: var(--deep-navy); }
.sp-heading--800 { font-weight: 800; letter-spacing: 0.03em; }
.sp-heading--hero { font-size: clamp(3rem,8vw,5.5rem); line-height: 0.95; margin-bottom: 1rem; }
.sp-heading--xl { font-size: clamp(2rem,5vw,3.5rem); }
.sp-heading--editorial { font-family: var(--font-editorial); text-transform: none; letter-spacing: 0; font-weight: 400; }
.sp-heading--editorial-lg { font-family: var(--font-editorial); font-size: clamp(2rem,4vw,3.2rem); text-transform: none; letter-spacing: 0; font-weight: 400; }
.sp-heading--editorial-hero { font-family: var(--font-editorial); font-size: clamp(2.2rem,5.5vw,4rem); line-height: 1.1; text-shadow: 0 4px 20px rgba(0,0,0,0.3); text-transform: none; letter-spacing: 0; margin-bottom: 1.25rem; }
.sp-heading--cta { font-size: clamp(2rem,4.5vw,3.5rem); font-weight: 800; letter-spacing: 0.03em; line-height: 1.1; }
.sp-hero-overlay { position: absolute; inset: 0; }
.sp-hero-overlay--route { background: linear-gradient(180deg, rgba(26,30,46,0.4) 0%, rgba(26,30,46,0.6) 40%, rgba(26,30,46,0.92) 100%); }
.sp-hero-overlay--club { background: linear-gradient(180deg, rgba(26,30,46,0.7) 0%, rgba(11,79,108,0.6) 40%, rgba(26,30,46,0.9) 100%); }
.sp-hero-overlay--guide { background: linear-gradient(180deg, rgba(26,30,46,0.4) 0%, rgba(11,79,108,0.5) 30%, rgba(26,30,46,0.92) 100%); }
.sp-orbs-container { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.sp-hero-noise { position: absolute; inset: 0; opacity: 0.04; pointer-events: none; }
.sp-hero-content { position: relative; z-index: 3; width: 100%; max-width: 1200px; margin: 0 auto; padding: 3rem 2rem 3.5rem; }
.sp-hero-content--centered { text-align: center; max-width: 800px; padding: 6rem 2rem 4rem; margin: 0 auto; }
.sp-hero-content--club { text-align: center; max-width: 900px; padding: 4rem 2rem; margin: 0 auto; }
.sp-hero-content--review { max-width: 1300px; padding: 7rem 2rem 4rem; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.sp-breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; font-family: var(--font-heading); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }
.sp-breadcrumb--center { justify-content: center; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; flex-wrap: wrap; }
.sp-breadcrumb--sm { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; margin-bottom: 2rem; }
.sp-breadcrumb--wrap { flex-wrap: wrap; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; }
.sp-breadcrumb__sep { color: rgba(255,255,255,0.35); }
.sp-breadcrumb__sep--40 { color: rgba(255,255,255,0.4); }
.sp-breadcrumb__link { color: rgba(255,255,255,0.6); transition: color 0.3s ease; text-decoration: none; }
.sp-breadcrumb__link--dim { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.sp-breadcrumb__link--bright { color: var(--bright-water); text-decoration: none; transition: color 0.3s; }
.sp-breadcrumb__current { color: var(--bright-water); }
.sp-breadcrumb__current--dim { color: rgba(255,255,255,0.6); }
.sp-county { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--bright-water); display: block; margin-bottom: 0.5rem; }
.sp-badge { display: inline-block; color: #fff; font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; padding: 0.4rem 1.2rem; border-radius: 30px; margin-bottom: 1.5rem; }
.sp-badge--card { position: absolute; top: 16px; left: 16px; z-index: 2; font-size: 0.72rem; letter-spacing: 0.1em; padding: 0.35rem 1rem; border-radius: 20px; margin-bottom: 0; }
.sp-stats-row { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin-bottom: 2rem; }
.sp-stat-item { display: flex; align-items: center; gap: 0.5rem; }
.sp-stat-value { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; }
.sp-star { color: var(--sunset-orange); }
.sp-star--dim { opacity: 0.3; }
.sp-star--half { opacity: 0.7; }
.sp-star--empty { opacity: 0.2; }
.sp-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.sp-cta-row--center { justify-content: center; }
.sp-body { font-family: var(--font-body); font-size: 1.05rem; line-height: 1.8; color: #3a4150; margin-bottom: 1.25rem; }
.sp-body:last-child { margin-bottom: 0; }
.sp-body--article { color: rgba(26,30,46,0.8); line-height: 1.9; }
.sp-body--note { text-align: center; margin-top: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.4); font-style: italic; }
.sp-body--review { color: rgba(26,30,46,0.75); line-height: 1.85; margin-bottom: 1.75rem; }
.sp-body--meta { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.sp-body--cta { font-size: 1.15rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.sp-body--cta-dark { font-size: 1.1rem; color: rgba(26,30,46,0.6); line-height: 1.7; max-width: 600px; margin: 0 auto 2.5rem; }
.sp-desc--white-dim { color: rgba(255,255,255,0.5); font-size: 1.05rem; max-width: 550px; margin: 0 auto; }
.sp-desc--white-mid { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.sp-glass-light { background: rgba(255,255,255,0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(11,79,108,0.1); border-radius: 24px; padding: 2rem; box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04); position: sticky; top: 120px; }
.sp-glass-light__title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--deep-navy); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--bright-water); }
.sp-info-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 0.75rem 0; }
.sp-info-row--bordered { border-bottom: 1px solid rgba(11,79,108,0.08); }
.sp-info-label { font-family: var(--font-heading); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--deep-ocean); flex-shrink: 0; }
.sp-info-value { font-family: var(--font-body); font-size: 0.92rem; color: #3a4150; text-align: right; margin-left: 1rem; }
.sp-map-link { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; padding: 0.85rem 1.5rem; background: var(--deep-ocean); color: #fff; font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 14px; transition: all 0.3s var(--ease-out); text-decoration: none; }
.sp-map-wrap { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 12px 48px rgba(0,0,0,0.15), 0 4px 16px rgba(1,186,239,0.08); }
.sp-map-leaflet { width: 100%; height: 500px; background: #f0f5f9; }
.sp-map-leaflet--sm { height: 450px; }
.sp-map-glow { position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 60px rgba(1,186,239,0.08); border-radius: 20px; }
.sp-gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.sp-gallery-item { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.sp-gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.sp-gallery-hover { position: absolute; inset: 0; background: rgba(26,30,46,0.4); opacity: 0; transition: opacity 0.4s ease; display: flex; align-items: center; justify-content: center; }
.sp-gallery-hover--bottom { background: linear-gradient(180deg, transparent 50%, rgba(26,30,46,0.7) 100%); align-items: flex-end; padding: 1.25rem; }
.sp-gallery-item:hover .sp-gallery-img { transform: scale(1.08); }
.sp-gallery-item:hover .sp-gallery-hover { opacity: 1; }
.sp-condition-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 2rem 1.5rem; text-align: center; position: relative; overflow: hidden; transition: all 0.4s var(--ease-out); }
.sp-condition-glow { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 100px; height: 60px; background: radial-gradient(circle, rgba(1,186,239,0.15), transparent 70%); pointer-events: none; }
.sp-condition-icon { color: var(--bright-water); margin-bottom: 1rem; }
.sp-condition-label { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); display: block; margin-bottom: 0.5rem; }
.sp-condition-value { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: #fff; display: block; margin-bottom: 0.25rem; }
.sp-condition-detail { font-family: var(--font-body); font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.sp-safety-card { background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(232,112,42,0.12); border-radius: 20px; padding: 2rem; position: relative; overflow: hidden; transition: all 0.4s var(--ease-out); }
.sp-safety-accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--sunset-orange); }
.sp-safety-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: rgba(232,112,42,0.12); position: absolute; top: 12px; right: 20px; line-height: 1; }
.sp-safety-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.sp-safety-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(232,112,42,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sp-safety-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--deep-navy); }
.sp-safety-desc { font-family: var(--font-body); font-size: 0.95rem; line-height: 1.7; color: #3a4150; }
.sp-related-card { position: relative; border-radius: 20px; overflow: hidden; height: 400px; transition: all 0.4s var(--ease-out); box-shadow: var(--shadow-card); }
.sp-related-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.sp-related-card__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.sp-related-card:hover .sp-related-card__bg { transform: scale(1.06); }
.sp-related-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,17,23,0.1) 0%, rgba(13,17,23,0.4) 40%, rgba(13,17,23,0.88) 100%); }
.sp-related-card__content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 1.75rem; }
.sp-related-card__title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: #fff; margin-bottom: 0.25rem; }
.sp-related-card__county { font-size: 0.85rem; color: rgba(255,255,255,0.6); display: block; margin-bottom: 0.75rem; }
.sp-related-card__meta { display: flex; align-items: center; gap: 1.25rem; }
.sp-related-card__stat { display: flex; align-items: center; gap: 0.35rem; font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.06em; }
.sp-related-card__stars { display: flex; gap: 2px; margin-top: 0.5rem; color: var(--sunset-orange); font-size: 0.85rem; }
.sp-cta-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.sp-cta-orb--blue-tl { top: -60px; left: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(1,186,239,0.1), transparent 70%); filter: blur(60px); }
.sp-cta-orb--orange-br { bottom: -60px; right: -80px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(232,112,42,0.08), transparent 70%); filter: blur(60px); }

/* ─── Section Backgrounds (single route) ─────────────────────── */
.sp-section--mist { background: #F0F5F9; padding: 5rem 0; }
.sp-section--navy { background: var(--deep-navy); padding: 5rem 0; }
.sp-section--sand { background: var(--sand); padding: 5rem 0; }

/* ─── Grid Layouts (single route) ────────────────────────────── */
.sp-route-info-grid { display: grid; grid-template-columns: 65% 35%; gap: 3rem; align-items: start; }
.sp-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.sp-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.sp-stars-row { display: flex; align-items: center; gap: 0.4rem; }
.sp-star--hero { font-size: 1.1rem; }
.sp-svg-mr { margin-right: 0.5rem; }
.sp-svg-mr--lg { margin-right: 0.6rem; }
.sp-btn--lg { font-size: 1rem; padding: 1.1rem 2.8rem; }
.sp-hero-orb { position: absolute; border-radius: 50%; filter: blur(40px); }
.sp-hero-orb--water-tl { width: 300px; height: 300px; background: radial-gradient(circle, rgba(1,186,239,0.2), transparent 70%); top: 10%; left: 5%; }
.sp-hero-orb--emerald-br { width: 200px; height: 200px; background: radial-gradient(circle, rgba(32,191,85,0.15), transparent 70%); bottom: 20%; right: 10%; }
.sp-heading--sub { font-size: clamp(1.8rem,4vw,2.5rem); margin-bottom: 1.5rem; }

@media (max-width: 900px) {
    .sp-route-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .sp-grid-3 { grid-template-columns: 1fr; }
    .sp-grid-4 { grid-template-columns: repeat(2,1fr); }
    .sp-gallery-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
    .sp-grid-4 { grid-template-columns: 1fr; }
    .sp-gallery-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   SINGLE GUIDE PAGE — INLINE-STYLE REPLACEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* ─── Hero ────────────────────────────────────────────────────── */

.sg-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.sg-hero__bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sg-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,30,46,0.4) 0%, rgba(11,79,108,0.5) 30%, rgba(26,30,46,0.92) 100%);
}

.sg-hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
}

.sg-hero__orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.sg-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 6rem 2rem 4rem;
    margin: 0 auto;
    text-align: center;
}

/* ─── Hero Breadcrumbs ────────────────────────────────────────── */

.sg-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    flex-wrap: wrap;
}

.sg-breadcrumb__sep {
    color: rgba(255,255,255,0.4);
}

.sg-breadcrumb__link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.sg-breadcrumb__current {
    color: var(--bright-water);
}

/* ─── Hero Category Badge ─────────────────────────────────────── */

.sg-category-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 1.25rem;
}

/* ─── Hero Title ──────────────────────────────────────────────── */

.sg-hero__title {
    font-family: var(--font-editorial);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ─── Hero Meta ───────────────────────────────────────────────── */

.sg-hero__meta {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.sg-hero__meta-sep {
    margin: 0 0.5rem;
    opacity: 0.4;
}

/* ─── Share Buttons Row ───────────────────────────────────────── */

.sg-share-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* ─── Article Body Section ────────────────────────────────────── */

.sg-body-section {
    background: #F0F5F9;
    padding: 4rem 2rem 6rem;
    position: relative;
}

/* ─── Article Max-Width ───────────────────────────────────────── */

.sg-article--constrained {
    max-width: 720px;
}

/* ─── Article Intro Paragraph ─────────────────────────────────── */

.sg-article__intro {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--deep-navy);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* ─── Article Body Paragraph ──────────────────────────────────── */

.sg-article__body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(26,30,46,0.8);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.sg-article__body--second-intro {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.sg-article__body--spaced {
    margin-bottom: 1.5rem;
}

.sg-article__body--bottom {
    margin-bottom: 2rem;
}

.sg-article__body--top {
    margin: 2rem 0 1.25rem;
}

/* ─── Article Figures ─────────────────────────────────────────── */

.sg-article__figure {
    margin: 0 0 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(11,79,108,0.12);
}

.sg-article__figure-img {
    width: 100%;
    height: auto;
    display: block;
}

.sg-article__figcaption {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(26,30,46,0.5);
    padding: 1rem 0 0;
    text-align: center;
    font-style: italic;
}

/* ─── Article Section Headings ────────────────────────────────── */

.sg-article__heading {
    font-family: var(--font-editorial);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--deep-navy);
    margin: 3rem 0 1.25rem;
    line-height: 1.2;
    scroll-margin-top: 100px;
}

/* ─── Pull Quote / Blockquote ─────────────────────────────────── */

.sg-blockquote {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    border-left: 4px solid var(--bright-water);
    background: rgba(1,186,239,0.06);
    border-radius: 0 16px 16px 0;
    position: relative;
}

.sg-blockquote--orange {
    border-left-color: var(--sunset-orange);
    background: rgba(232,112,42,0.06);
}

.sg-blockquote__text {
    font-family: var(--font-editorial);
    font-size: 1.4rem;
    color: var(--deep-ocean);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.sg-blockquote--orange .sg-blockquote__text {
    color: var(--deep-navy);
}

/* ─── Gear Checklist ──────────────────────────────────────────── */

.sg-gear-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.sg-gear-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(11,79,108,0.08);
}

.sg-gear-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bright-water);
    margin-top: 0.6rem;
    flex-shrink: 0;
}

.sg-gear-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-navy);
    display: block;
    margin-bottom: 0.25rem;
}

.sg-gear-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(26,30,46,0.7);
    line-height: 1.7;
}

/* ─── Step Cards ──────────────────────────────────────────────── */

.sg-step {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.sg-step__number {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--deep-ocean), var(--bright-water));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.sg-step__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sg-step__desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(26,30,46,0.7);
    line-height: 1.8;
}

/* ─── Beginner Spots List ─────────────────────────────────────── */

.sg-spots-list {
    margin: 0 0 2.5rem;
    padding: 0 0 0 1.5rem;
}

.sg-spots-item {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(26,30,46,0.8);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

/* ─── Safety Cards ────────────────────────────────────────────── */

.sg-safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.sg-safety-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(11,79,108,0.08);
    border-top: 3px solid var(--card-accent, var(--bright-water));
    transition: all 0.3s ease;
}

.sg-safety-card__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.sg-safety-card__desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(26,30,46,0.65);
    line-height: 1.7;
    margin: 0;
}

/* ─── Conclusion Box ──────────────────────────────────────────── */

.sg-conclusion {
    margin-top: 3rem;
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(11,79,108,0.06), rgba(1,186,239,0.06));
    border: 1px solid rgba(1,186,239,0.12);
}

.sg-conclusion__heading {
    font-family: var(--font-editorial);
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--deep-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sg-conclusion__body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(26,30,46,0.75);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.sg-conclusion__body--last {
    margin-bottom: 1.5rem;
}

.sg-conclusion__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--deep-ocean);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11,79,108,0.3);
}

/* ─── TOC Sidebar ─────────────────────────────────────────────── */

.sg-toc-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.sg-toc-toggle {
    display: none;
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(11,79,108,0.1);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--deep-navy);
    cursor: pointer;
    text-align: left;
}

.sg-toc-nav {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 8px 32px rgba(11,79,108,0.08);
}

.sg-toc-nav__title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--deep-ocean);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(11,79,108,0.1);
}

.sg-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sg-toc-link {
    display: block;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: rgba(26,30,46,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.4;
    border-left: 2px solid transparent;
}

/* ─── Author Card Section ─────────────────────────────────────── */

.sg-author-section {
    background: #F0F5F9;
    padding: 0 2rem 4rem;
}

.sg-author-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.sg-author-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(11,79,108,0.08);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.sg-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep-ocean), var(--bright-water));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(11,79,108,0.2);
}

.sg-author-info {
    flex: 1;
}

.sg-author-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--deep-navy);
    margin-bottom: 0.25rem;
}

.sg-author-bio {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(26,30,46,0.6);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.sg-author-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sg-author-count {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--deep-ocean);
}

.sg-author-link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bright-water);
    text-decoration: none;
    transition: color 0.3s;
}

/* ─── Related Guides Section ──────────────────────────────────── */

.sg-related-section {
    background: linear-gradient(180deg, #1A1E2E 0%, #0f1318 100%);
    position: relative;
    overflow: hidden;
}

.sg-related-glow {
    position: absolute;
    pointer-events: none;
}

.sg-related-glow--blue {
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(1,186,239,0.06), transparent 70%);
}

.sg-related-glow--orange {
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,112,42,0.06), transparent 70%);
}

.sg-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--space-lg);
}

.sg-related-section .section-title {
    text-transform: none;
    letter-spacing: 0;
    font-size: clamp(2rem, 4vw, 3rem);
}

.sg-related-section .section-description {
    color: rgba(255,255,255,0.55);
}

.sg-related-grid .guide-card {
    min-height: 380px;
}

/* ─── Newsletter CTA Section ─────────────────────────────────── */

.sg-newsletter {
    background: linear-gradient(135deg, #0B4F6C 0%, #01BAEF 50%, #0B4F6C 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.sg-newsletter__orb {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.sg-newsletter__orb--white {
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
}

.sg-newsletter__orb--green {
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(32,191,85,0.1), transparent 70%);
}

.sg-newsletter__noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
}

.sg-newsletter__content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.sg-newsletter__eyebrow {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
    display: block;
    margin-bottom: 1rem;
}

.sg-newsletter__heading {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.sg-newsletter__desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.sg-newsletter__form {
    max-width: 520px;
    margin: 0 auto;
}

.sg-newsletter__input-wrap {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.15);
}

.sg-newsletter__input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(255,255,255,0.95);
    color: var(--deep-navy);
    outline: none;
}

.sg-newsletter__submit {
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 1rem 2rem;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--sunset-orange);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sg-newsletter__gdpr {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-align: left;
    cursor: pointer;
}

.sg-newsletter__gdpr-checkbox {
    margin-top: 0.15rem;
    accent-color: var(--sunset-orange);
}


/* ═══════════════════════════════════════════════════════════════
   PHASE 3b-CLUB: SINGLE CLUB PAGE INLINE-STYLE REPLACEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* ─── Club Hero ──────────────────────────────────────────────── */
.sc-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.sc-hero__content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 4rem 2rem; }
.sc-hero__logo { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--deep-ocean), var(--bright-water)); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: #fff; margin: 0 auto 1.5rem; border: 4px solid rgba(255,255,255,0.15); box-shadow: 0 8px 40px rgba(1,186,239,0.3); }
.sc-hero__name { font-family: var(--font-heading); font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; color: #fff; line-height: 0.95; margin-bottom: 1rem; text-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.sc-hero__location { font-family: var(--font-body); font-size: 1.15rem; color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.sc-hero__meta-row { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.sc-hero__meta-item { display: flex; align-items: center; gap: 0.4rem; }
.sc-hero__star { color: var(--sunset-orange); font-size: 1.1rem; }
.sc-hero__meta-value { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: #fff; }
.sc-hero__meta-label { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.sc-hero__cta-row { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.sc-hero__btn-primary { background: var(--sunset-orange); border-color: var(--sunset-orange); font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 1rem 2.5rem; border-radius: 50px; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s cubic-bezier(0.16,1,0.3,1); box-shadow: 0 4px 20px rgba(232,112,42,0.35); }
.sc-hero__btn-secondary { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 1rem 2.5rem; border-radius: 50px; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; border: 2px solid rgba(255,255,255,0.2); transition: all 0.3s cubic-bezier(0.16,1,0.3,1); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }

/* ─── Club Hero Scroll Indicator ─────────────────────────────── */
.sc-scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.sc-scroll-text { font-family: var(--font-heading); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.4); display: block; margin-bottom: 0.5rem; }
.sc-scroll-line { width: 2px; height: 40px; background: rgba(255,255,255,0.15); margin: 0 auto; position: relative; border-radius: 2px; overflow: hidden; }
.sc-scroll-dot { width: 2px; height: 12px; background: var(--bright-water); border-radius: 2px; }

/* ─── Club Hero Orbs ─────────────────────────────────────────── */
.sc-orb { position: absolute; border-radius: 50%; }
.sc-orb--blue { width: 300px; height: 300px; background: radial-gradient(circle, rgba(1,186,239,0.18), transparent 70%); top: 8%; left: 5%; }
.sc-orb--orange { width: 220px; height: 220px; background: radial-gradient(circle, rgba(232,112,42,0.14), transparent 70%); bottom: 12%; right: 8%; }
.sc-orb--green { width: 250px; height: 250px; background: radial-gradient(circle, rgba(32,191,85,0.1), transparent 70%); top: 45%; right: 35%; }

/* ─── Club Info Section ──────────────────────────────────────── */
.sc-section--light { background: #F0F5F9; padding: 5rem 0; }
.sc-section--dark { background: #1A1E2E; padding: 5rem 0; }
.sc-section--warm { background: #E8DCC8; padding: 6rem 0; }
.sc-info-grid { display: grid; grid-template-columns: 65% 35%; gap: 3rem; align-items: start; }
.sc-about-eyebrow { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--deep-ocean); display: block; margin-bottom: 0.75rem; }
.sc-about-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: var(--deep-navy); margin-bottom: 2rem; line-height: 1.1; }
.sc-about-text { font-family: var(--font-body); font-size: 1.05rem; color: rgba(26,30,46,0.7); line-height: 1.8; margin-bottom: 1.25rem; }
.sc-offer-wrap { margin-top: 2rem; }
.sc-offer-heading { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--deep-navy); margin-bottom: 1rem; }
.sc-offer-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.sc-offer-tag { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--deep-ocean); background: rgba(11,79,108,0.08); padding: 0.5rem 1.2rem; border-radius: 50px; border: 1px solid rgba(11,79,108,0.1); }

/* ─── Quick Info Card ────────────────────────────────────────── */
.sc-quick-info { background: rgba(26,30,46,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 2rem; position: relative; overflow: hidden; }
.sc-quick-info__glow { position: absolute; top: -40%; right: -30%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(1,186,239,0.12), transparent 70%); pointer-events: none; }
.sc-quick-info__title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--bright-water); margin-bottom: 1.75rem; position: relative; z-index: 1; }
.sc-quick-info__body { position: relative; z-index: 1; }
.sc-quick-info__row { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sc-quick-info__label { font-family: var(--font-body); font-size: 0.88rem; color: rgba(255,255,255,0.45); }
.sc-quick-info__value { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: #fff; }
.sc-quick-info__value--emerald { color: var(--emerald); }
.sc-quick-info__value--right { text-align: right; max-width: 55%; font-size: 0.85rem; }
.sc-quick-info__divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(1,186,239,0.2), transparent); margin: 1.25rem 0; }
.sc-quick-info__contact-row { display: flex; align-items: center; gap: 0.6rem; padding: 0.65rem 0; }
.sc-quick-info__contact-link { font-family: var(--font-body); font-size: 0.88rem; color: var(--bright-water); text-decoration: none; transition: opacity 0.3s; }

/* ─── Section Headers (single club) ──────────────────────────── */
.sc-section-header { text-align: center; margin-bottom: 3rem; }
.sc-section-eyebrow { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--bright-water); display: block; margin-bottom: 0.75rem; }
.sc-section-eyebrow--dark { color: var(--deep-ocean); }
.sc-section-eyebrow--emerald { color: var(--emerald); }
.sc-section-title { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: #fff; margin-bottom: 1rem; }
.sc-section-title--dark { color: var(--deep-navy); }
.sc-section-desc { font-family: var(--font-body); font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ─── Events Section ─────────────────────────────────────────── */
.sc-events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.sc-event-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 0; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); }
.sc-event-card__inner { display: flex; align-items: stretch; }
.sc-event-card__date { width: 90px; min-height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(1,186,239,0.08); border-right: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 0.75rem; flex-shrink: 0; }
.sc-event-card__day { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.sc-event-card__month { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--bright-water); margin-top: 0.2rem; }
.sc-event-card__body { flex: 1; padding: 1.5rem; }
.sc-event-card__status-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.sc-event-card__status { font-family: var(--font-heading); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.3rem 0.75rem; border-radius: 20px; }
.sc-event-card__difficulty { font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); }
.sc-event-card__name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: #fff; margin-bottom: 0.5rem; line-height: 1.2; }
.sc-event-card__datetime { font-family: var(--font-body); font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.sc-event-card__footer { display: flex; align-items: center; justify-content: space-between; }
.sc-event-card__spots { font-family: var(--font-body); font-size: 0.82rem; }
.sc-event-card__book { font-family: var(--font-heading); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bright-water); text-decoration: none; transition: color 0.3s; }
.sc-event-card__waitlist { font-family: var(--font-heading); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.25); }

/* ─── Gallery Section ────────────────────────────────────────── */
.sc-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.sc-gallery-item { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.sc-gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.sc-gallery-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(26,30,46,0.7) 100%); opacity: 0; transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1); display: flex; align-items: flex-end; padding: 1.25rem; }
.sc-gallery-label { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; }

/* ─── Map Section ────────────────────────────────────────────── */
.sc-map-wrap { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 4px 16px rgba(1,186,239,0.08); }
.sc-map-canvas { width: 100%; height: 450px; background: #f0f5f9; }
.sc-map-glow { position: absolute; inset: 0; pointer-events: none; border-radius: 20px; box-shadow: inset 0 0 60px rgba(1,186,239,0.08); }

/* ─── Testimonials Section ───────────────────────────────────── */
.sc-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sc-testimonial-card { background: rgba(255,255,255,0.65); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.8); border-radius: 20px; padding: 2rem; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.sc-testimonial-card__quote { position: absolute; top: 1rem; right: 1.25rem; font-family: var(--font-editorial); font-size: 4rem; color: rgba(11,79,108,0.06); line-height: 1; pointer-events: none; }
.sc-testimonial-card__header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.sc-testimonial-card__avatar { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.sc-testimonial-card__name { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--deep-navy); line-height: 1.2; }
.sc-testimonial-card__date { font-family: var(--font-body); font-size: 0.78rem; color: rgba(26,30,46,0.4); }
.sc-testimonial-card__text { font-family: var(--font-body); font-size: 0.95rem; color: rgba(26,30,46,0.65); line-height: 1.7; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.sc-testimonial-card__stars { display: flex; align-items: center; gap: 0.2rem; }
.sc-star { color: var(--sunset-orange); font-size: 1rem; }
.sc-star--half { opacity: 0.5; }
.sc-testimonial-card__rating { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--deep-navy); margin-left: 0.4rem; }

/* ─── Instructors Section ────────────────────────────────────── */
.sc-instructors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sc-instructor-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 2rem; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); text-align: center; }
.sc-instructor-card__glow { position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 180px; height: 180px; pointer-events: none; }
.sc-instructor-card__avatar { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: #fff; margin: 0 auto 1.25rem; border: 3px solid rgba(255,255,255,0.1); position: relative; z-index: 1; }
.sc-instructor-card__name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: #fff; margin-bottom: 0.3rem; position: relative; z-index: 1; }
.sc-instructor-card__role { font-family: var(--font-body); font-size: 0.9rem; color: var(--bright-water); display: block; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.sc-instructor-card__cert { display: inline-block; font-family: var(--font-heading); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--emerald); background: rgba(32,191,85,0.1); border: 1px solid rgba(32,191,85,0.2); padding: 0.35rem 0.8rem; border-radius: 20px; margin-bottom: 1rem; position: relative; z-index: 1; }
.sc-instructor-card__bio { font-family: var(--font-body); font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.5; position: relative; z-index: 1; }

/* ─── Related Clubs Section ──────────────────────────────────── */
.sc-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sc-related-card { background: rgba(255,255,255,0.65); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.8); border-radius: 20px; padding: 0; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.sc-related-card__accent { height: 4px; }
.sc-related-card__body { padding: 1.75rem; }
.sc-related-card__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; }
.sc-related-card__icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: #fff; letter-spacing: 0.02em; flex-shrink: 0; }
.sc-related-card__county { font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--deep-ocean); background: rgba(11,79,108,0.08); padding: 0.35rem 0.8rem; border-radius: 20px; }
.sc-related-card__name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--deep-navy); margin-bottom: 0.5rem; line-height: 1.2; }
.sc-related-card__desc { font-family: var(--font-body); font-size: 0.88rem; color: rgba(26,30,46,0.55); line-height: 1.5; margin-bottom: 1.25rem; }
.sc-related-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid rgba(26,30,46,0.06); }
.sc-related-card__stats { display: flex; align-items: center; gap: 1.25rem; }
.sc-related-card__star-wrap { display: flex; align-items: center; gap: 0.3rem; }
.sc-related-card__star { color: var(--sunset-orange); font-size: 0.9rem; }
.sc-related-card__rating { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: var(--deep-navy); }
.sc-related-card__members { font-size: 0.8rem; color: rgba(26,30,46,0.45); font-family: var(--font-body); }
.sc-related-card__link { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bright-water); text-decoration: none; transition: color 0.3s; }

/* ─── Register CTA Section ───────────────────────────────────── */
.sc-cta-icon { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--sunset-orange), #c45a1a); display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; box-shadow: 0 8px 30px rgba(232,112,42,0.25); }
.sc-cta-heading { font-family: var(--font-editorial); font-size: clamp(2rem, 5vw, 3rem); font-weight: 400; color: var(--deep-navy); margin-bottom: 1.25rem; line-height: 1.15; }
.sc-cta-desc { font-family: var(--font-body); font-size: 1.1rem; color: rgba(26,30,46,0.6); line-height: 1.8; max-width: 650px; margin: 0 auto 2.5rem; }
.sc-cta-container { max-width: 900px; margin: 0 auto; padding: 0 2rem; }


/* ═══════════════════════════════════════════════════════════════
   PHASE 3b: SINGLE REVIEW PAGE INLINE-STYLE REPLACEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* ─── Section-level backgrounds & padding ────────────────────── */
.sr-section--mist { background: var(--mist-white); padding: 5rem 0; }
.sr-section--mist-flush { background: var(--mist-white); padding: 0 0 5rem; }
.sr-section--alt { background: #eef3f8; padding: 3rem 0 5rem; }
.sr-section--dark { background: var(--deep-navy); padding: 5rem 0; }
.sr-section--warm { background: var(--sand); padding: 5rem 0 6rem; position: relative; overflow: hidden; }

/* ─── Section containers (width variants) ────────────────────── */
.sr-container--1200 { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.sr-container--900 { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.sr-container--820 { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
.sr-container--700 { max-width: 700px; margin: 0 auto; padding: 0 2rem; }
.sr-container--800-cta { max-width: 800px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; text-align: center; }

/* ─── Section headers ────────────────────────────────────────── */
.sr-header { text-align: center; margin-bottom: 3.5rem; }
.sr-header--sm { text-align: center; margin-bottom: 3rem; }

/* ─── Eyebrow labels ─────────────────────────────────────────── */
.sr-eyebrow { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; display: block; margin-bottom: 0.75rem; }
.sr-eyebrow--ocean { color: var(--deep-ocean); }
.sr-eyebrow--water { color: var(--bright-water); }

/* ─── Headings ───────────────────────────────────────────────── */
.sr-h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: var(--deep-navy); margin-bottom: 0.75rem; }
.sr-h2--editorial { font-family: var(--font-editorial); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; color: #fff; margin-bottom: 0.75rem; text-transform: none; letter-spacing: 0; }
.sr-h2--cta { font-family: var(--font-heading); font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: var(--deep-navy); margin-bottom: 1rem; line-height: 1.1; }

/* ─── Descriptions ───────────────────────────────────────────── */
.sr-desc--dim { font-size: 1.05rem; color: rgba(255,255,255,0.5); max-width: 550px; margin: 0 auto; }
.sr-desc--cta { font-size: 1.1rem; color: rgba(26,30,46,0.6); line-height: 1.7; max-width: 600px; margin: 0 auto 2.5rem; }

/* ─── Hero orbs ──────────────────────────────────────────────── */
.sr-orb { position: absolute; border-radius: 50%; }
.sr-orb--blue-tr { width: 300px; height: 300px; background: radial-gradient(circle, rgba(1,186,239,0.15), transparent 70%); top: 5%; right: 10%; }
.sr-orb--orange-bl { width: 200px; height: 200px; background: radial-gradient(circle, rgba(232,112,42,0.1), transparent 70%); bottom: 10%; left: 5%; }
.sr-orb--green-c { width: 250px; height: 250px; background: radial-gradient(circle, rgba(32,191,85,0.08), transparent 70%); top: 50%; left: 40%; }

/* ─── CTA section orbs ───────────────────────────────────────── */
.sr-cta-orb--orange-tr { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(232,112,42,0.08), transparent 70%); top: -10%; right: -5%; border-radius: 50%; }
.sr-cta-orb--ocean-bl { position: absolute; width: 350px; height: 350px; background: radial-gradient(circle, rgba(11,79,108,0.06), transparent 70%); bottom: -15%; left: -5%; border-radius: 50%; }
.sr-cta-orb--green-c { position: absolute; width: 250px; height: 250px; background: radial-gradient(circle, rgba(32,191,85,0.05), transparent 70%); top: 30%; left: 40%; border-radius: 50%; }

/* ─── Hero product image area ────────────────────────────────── */
.sr-hero-img-wrap { position: relative; }
.sr-hero-img-frame { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4); position: relative; }
.sr-hero-img { width: 100%; height: 400px; object-fit: cover; display: block; }
.sr-hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(26,30,46,0.4) 100%); }

/* ─── Floating rating badge ──────────────────────────────────── */
.sr-rating-badge { position: absolute; top: -12px; right: -12px; width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--sunset-orange), #d4581a); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(232,112,42,0.4); z-index: 3; }
.sr-rating-badge__score { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: #fff; }

/* ─── Breadcrumb (review-specific) ───────────────────────────── */
.sr-breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; font-family: var(--font-heading); font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; flex-wrap: wrap; }
.sr-breadcrumb__sep { color: rgba(255,255,255,0.3); }
.sr-breadcrumb__link { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.sr-breadcrumb__current { color: var(--bright-water); }

/* ─── Category badge (review hero) ───────────────────────────── */
.sr-category-badge { display: inline-block; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--bright-water); background: rgba(1,186,239,0.12); border: 1px solid rgba(1,186,239,0.25); padding: 0.4rem 1rem; border-radius: 30px; margin-bottom: 1rem; }

/* ─── Product title ──────────────────────────────────────────── */
.sr-product-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.05; color: #fff; margin-bottom: 0.5rem; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }

/* ─── Product brand ──────────────────────────────────────────── */
.sr-product-brand { font-family: var(--font-body); font-size: 1.1rem; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }

/* ─── Star ratings ───────────────────────────────────────────── */
.sr-stars-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.sr-stars-row--sm { gap: 0.5rem; margin-bottom: 1rem; }
.sr-stars-row--xs { gap: 0.5rem; margin-bottom: 0.5rem; }
.sr-stars { display: flex; gap: 3px; }
.sr-stars--tight { gap: 2px; }
.sr-star { color: var(--sunset-orange); font-size: 1.3rem; }
.sr-star--1_2 { font-size: 1.2rem; }
.sr-star--sm { font-size: 0.95rem; }
.sr-star--xs { font-size: 0.9rem; }
.sr-star--half { opacity: 0.7; }
.sr-star--empty { opacity: 0.2; }
.sr-star-score { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: #fff; }
.sr-star-score--sm { font-size: 0.9rem; }

/* ─── Price ──────────────────────────────────────────────────── */
.sr-price-wrap { margin-bottom: 1.5rem; }
.sr-price { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: #fff; }

/* ─── Quick specs ────────────────────────────────────────────── */
.sr-quick-specs { display: flex; flex-wrap: wrap; gap: 0; margin-bottom: 2rem; }
.sr-quick-spec { display: flex; align-items: center; gap: 0; }
.sr-quick-spec__inner { text-align: center; padding: 0 1rem; }
.sr-quick-spec__label { font-family: var(--font-heading); font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); display: block; margin-bottom: 0.25rem; }
.sr-quick-spec__value { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: #fff; }
.sr-quick-spec__divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

/* ─── CTA buttons ────────────────────────────────────────────── */
.sr-cta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.sr-btn-primary { background: var(--sunset-orange); font-family: var(--font-heading); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 1rem 2.5rem; border-radius: 60px; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; box-shadow: 0 4px 20px rgba(232,112,42,0.35); transition: all 0.3s var(--ease-out); border: none; }
.sr-btn-ghost { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 1rem 2.5rem; border-radius: 60px; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: all 0.3s var(--ease-out); }
.sr-btn-cta { background: var(--sunset-orange); border-color: var(--sunset-orange); font-family: var(--font-heading); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 1rem 2.5rem; border-radius: 60px; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; box-shadow: 0 4px 20px rgba(232,112,42,0.3); transition: all 0.3s var(--ease-out); border: none; }

/* ─── Scroll indicator ───────────────────────────────────────── */
.sr-scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.sr-scroll-text { font-family: var(--font-heading); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.4); display: block; margin-bottom: 0.5rem; }
.sr-scroll-line { width: 2px; height: 40px; background: rgba(255,255,255,0.1); margin: 0 auto; border-radius: 2px; overflow: hidden; position: relative; }
.sr-scroll-dot { width: 2px; height: 12px; background: var(--bright-water); border-radius: 2px; }

/* ─── Rating breakdown section ───────────────────────────────── */
.sr-rating-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

/* Overall rating card */
.sr-overall-card { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; padding: 2rem; background: rgba(255,255,255,0.8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.9); border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.sr-overall-score { flex-shrink: 0; width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg, var(--deep-ocean), var(--bright-water)); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(11,79,108,0.25); }
.sr-overall-score__num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 900; color: #fff; }
.sr-overall-stars { margin-bottom: 0.4rem; }
.sr-overall-label { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--deep-navy); }
.sr-overall-sub { display: block; font-size: 0.8rem; color: rgba(26,30,46,0.45); margin-top: 0.15rem; }

/* Breakdown bars */
.sr-bars { display: flex; flex-direction: column; gap: 1.25rem; }
.sr-bar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.sr-bar-label { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--deep-navy); }
.sr-bar-score { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--deep-navy); }
.sr-bar-track { height: 10px; background: rgba(26,30,46,0.06); border-radius: 10px; overflow: hidden; position: relative; }
.sr-bar-fill { height: 100%; border-radius: 10px; transition: width 1s var(--ease-out); }

/* ─── Pros & Cons ────────────────────────────────────────────── */
.sr-pros-cons-list { display: flex; flex-direction: column; gap: 0.75rem; }
.sr-pros-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--emerald); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.sr-cons-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sunset-orange); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.sr-pros-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(32,191,85,0.12); display: inline-flex; align-items: center; justify-content: center; }
.sr-cons-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(232,112,42,0.12); display: inline-flex; align-items: center; justify-content: center; }
.sr-pro-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem 1.25rem; background: rgba(32,191,85,0.05); border: 1px solid rgba(32,191,85,0.12); border-radius: 14px; transition: all 0.3s var(--ease-out); }
.sr-con-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem 1.25rem; background: rgba(232,112,42,0.05); border: 1px solid rgba(232,112,42,0.12); border-radius: 14px; transition: all 0.3s var(--ease-out); }
.sr-procon-icon { flex-shrink: 0; margin-top: 1px; }
.sr-procon-text { font-size: 0.95rem; color: var(--deep-navy); line-height: 1.5; }
.sr-pros-section { margin-bottom: 2rem; }

/* ─── Detailed review ───────────────────────────────────────── */
.sr-review-title-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.sr-review-accent { width: 4px; height: 40px; background: linear-gradient(180deg, var(--bright-water), var(--deep-ocean)); border-radius: 4px; }
.sr-review-title { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: var(--deep-navy); }
.sr-review-para { font-family: var(--font-body); font-size: 1.05rem; color: rgba(26,30,46,0.75); line-height: 1.85; margin-bottom: 1.75rem; }
.sr-review-para--first { font-size: 1.1rem; }

/* ─── Reviewer profile card ──────────────────────────────────── */
.sr-reviewer-card { background: rgba(255,255,255,0.55); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.8); border-radius: 28px; padding: 2.5rem; position: relative; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04); }
.sr-reviewer-accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--deep-ocean), var(--bright-water), var(--emerald)); }
.sr-reviewer-orb { position: absolute; top: -40px; right: -40px; width: 150px; height: 150px; background: radial-gradient(circle, rgba(1,186,239,0.1), transparent 70%); border-radius: 50%; pointer-events: none; }
.sr-reviewer-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.sr-reviewer-avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--deep-ocean), var(--bright-water)); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: #fff; box-shadow: 0 4px 16px rgba(11,79,108,0.3); flex-shrink: 0; }
.sr-reviewer-info { flex: 1; min-width: 0; }
.sr-reviewer-name-row { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0.25rem; }
.sr-reviewer-name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--deep-navy); margin: 0; }
.sr-verified-badge { display: inline-flex; align-items: center; gap: 0.35rem; font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--emerald); background: rgba(32,191,85,0.1); border: 1px solid rgba(32,191,85,0.2); padding: 0.3rem 0.75rem; border-radius: 20px; }
.sr-reviewer-location { font-size: 0.9rem; color: rgba(26,30,46,0.5); }
.sr-reviewer-stats { display: flex; align-items: center; gap: 0; margin-bottom: 1.25rem; flex-wrap: wrap; }
.sr-reviewer-stat { text-align: center; padding: 0.75rem 1.5rem; }
.sr-reviewer-stat__value { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--deep-ocean); display: block; }
.sr-reviewer-stat__label { font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(26,30,46,0.45); }
.sr-reviewer-stat__sublabel { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; color: rgba(26,30,46,0.5); display: block; margin-top: 0.25rem; }
.sr-reviewer-stat__subvalue { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--deep-navy); }
.sr-stat-divider { width: 1px; height: 36px; background: rgba(26,30,46,0.08); }

/* ─── Community review cards ─────────────────────────────────── */
.sr-community-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.06); border-radius: 24px; padding: 2rem; position: relative; overflow: hidden; transition: all 0.4s var(--ease-out); }
.sr-community-card__accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.sr-community-card__header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.sr-community-card__avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.sr-community-card__info { flex: 1; min-width: 0; }
.sr-community-card__name { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; color: #fff; display: block; line-height: 1.2; }
.sr-community-card__date { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.sr-community-card__excerpt { font-family: var(--font-body); font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1.25rem; }
.sr-community-card__footer { display: flex; align-items: center; gap: 0.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
.sr-helpful-btn { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 0.4rem 0.85rem; cursor: pointer; transition: all 0.3s; }

/* ─── Specs table ────────────────────────────────────────────── */
.sr-specs-glass { background: rgba(255,255,255,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.9); border-radius: 24px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.sr-spec-row { display: flex; align-items: center; justify-content: space-between; padding: 1.15rem 2rem; }
.sr-spec-row--striped { background: rgba(11,79,108,0.03); }
.sr-spec-row--bordered { border-bottom: 1px solid rgba(26,30,46,0.05); }
.sr-spec-label { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--deep-ocean); }
.sr-spec-value { font-family: var(--font-body); font-size: 0.95rem; color: var(--deep-navy); font-weight: 500; text-align: right; }

/* ─── Related review cards ───────────────────────────────────── */
.sr-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.sr-related-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.06); border-radius: 24px; overflow: hidden; transition: all 0.4s var(--ease-out); position: relative; }
.sr-related-card__img-wrap { position: relative; height: 200px; overflow: hidden; }
.sr-related-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.sr-related-card__img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(26,30,46,0.8) 100%); }
.sr-related-card__badge { position: absolute; top: 1rem; left: 1rem; font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; padding: 0.35rem 0.85rem; border-radius: 20px; }
.sr-related-card__price { position: absolute; bottom: 1rem; right: 1rem; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.sr-related-card__content { padding: 1.5rem; }
.sr-related-card__title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: #fff; margin-bottom: 0.25rem; line-height: 1.2; }
.sr-related-card__brand { font-size: 0.85rem; color: rgba(255,255,255,0.4); display: block; margin-bottom: 1rem; }
.sr-related-card__link { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bright-water); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.3s; }

/* ─── CTA icon ───────────────────────────────────────────────── */
.sr-cta-icon { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--sunset-orange), #d4581a); display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; box-shadow: 0 8px 32px rgba(232,112,42,0.25); }


/* ═══════════════════════════════════════════════════════════════
   SEARCH OVERLAY
   ═══════════════════════════════════════════════════════════════ */

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(13, 17, 23, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.search-overlay.search-overlay--active {
    opacity: 1;
    visibility: visible;
}

.search-overlay__inner {
    width: 100%;
    max-width: 720px;
    padding: 2rem;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.5s var(--ease-out);
}

.search-overlay.search-overlay--active .search-overlay__inner {
    transform: translateY(0);
}

.search-overlay__close {
    position: absolute;
    top: -60px;
    right: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.search-overlay__close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: rotate(90deg);
}

.search-overlay__form {
    display: flex;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-overlay__form:focus-within {
    border-color: var(--bright-water);
    box-shadow: 0 0 40px rgba(1, 186, 239, 0.15);
}

.search-overlay__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 1.25rem 1.75rem;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
}

.search-overlay__input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-overlay__submit {
    background: var(--bright-water);
    border: none;
    padding: 1.25rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.search-overlay__submit:hover {
    background: var(--deep-ocean);
}

.search-overlay__suggestions {
    margin-top: 2rem;
    text-align: center;
}

.search-overlay__label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1rem;
}

.search-overlay__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.search-overlay__tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.search-overlay__tag:hover {
    color: #fff;
    background: rgba(1, 186, 239, 0.15);
    border-color: rgba(1, 186, 239, 0.3);
}

@media (max-width: 768px) {
    .search-overlay__inner {
        padding: 1.5rem;
    }
    .search-overlay__close {
        top: -50px;
    }
    .search-overlay__form {
        flex-direction: column;
        border-radius: 12px;
    }
    .search-overlay__submit {
        padding: 1rem;
    }
}


/* ═══════════════════════════════════════════════════════════════
   BLOG ARCHIVE (home.php)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Blog Hero (~40vh) ──────────────────────────────────────── */

.blog-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d1117 0%, #1A1E2E 40%, #0B4F6C 100%);
}

.blog-hero__noise {
    z-index: 2;
}

.blog-hero__orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.blog-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 6rem 2rem 4rem;
}

.blog-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 0.95;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.blog-hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}


/* ─── Blog Filter Bar ────────────────────────────────────────── */

.blog-filter-section {
    background: #F0F5F9;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.blog-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0 1rem;
}

.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.blog-filter-bar .filter-pill {
    background: rgba(26,30,46,0.04);
    border: 1px solid rgba(26,30,46,0.12);
    color: rgba(26,30,46,0.6);
    font-size: 0.8rem;
    padding: 0.55rem 1.3rem;
}

.blog-filter-bar .filter-pill:hover {
    background: rgba(26,30,46,0.08);
    border-color: rgba(26,30,46,0.2);
    color: var(--deep-navy);
}

.blog-filter-bar .filter-pill.active {
    background: var(--bright-water);
    border-color: var(--bright-water);
    color: #fff;
}


/* ─── Blog Grid ──────────────────────────────────────────────── */

.blog-grid-section {
    background: #F0F5F9;
}

.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--space-lg);
}

@media (max-width: 1024px) {
    .blog-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-archive-grid {
        grid-template-columns: 1fr;
    }
}


/* ─── Blog Card ──────────────────────────────────────────────── */

.blog-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 380px;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
    box-shadow: var(--shadow-card);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.blog-card__link {
    display: block;
    position: absolute;
    inset: 0;
    text-decoration: none;
    color: inherit;
}

.blog-card__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease-out);
}

.blog-card:hover .blog-card__image {
    transform: scale(1.06);
}

.blog-card__image--placeholder {
    background: linear-gradient(135deg, #0B4F6C 0%, #1A1E2E 50%, #0B4F6C 100%);
}

.blog-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 15%, rgba(13,17,23,0.5) 50%, rgba(13,17,23,0.93) 100%);
}

.blog-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1.75rem;
}

.blog-card__badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    background: var(--badge-bg, var(--bright-water));
    padding: 0.3rem 0.75rem;
    border-radius: 40px;
    margin-bottom: 0.75rem;
}

.blog-card__title {
    font-family: var(--font-editorial);
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.blog-card__excerpt {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.blog-card__author {
    font-weight: 500;
}

.blog-card__date {
    opacity: 0.7;
}

.blog-card__read-more {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sunset-orange);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card__read-more {
    color: var(--bright-water);
}

/* Blog card hidden state for filtering */
.blog-card--hidden {
    display: none;
}

.blog-no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(26,30,46,0.5);
}

.blog-no-results {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(26,30,46,0.5);
}


/* ─── Blog Pagination ────────────────────────────────────────── */

.blog-pagination {
    margin-top: var(--space-lg);
    display: flex;
    justify-content: center;
}

.blog-pagination__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination__item a,
.blog-pagination__item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.blog-pagination__item a {
    background: rgba(26,30,46,0.04);
    border: 1px solid rgba(26,30,46,0.1);
    color: var(--deep-navy);
}

.blog-pagination__item a:hover {
    background: var(--bright-water);
    border-color: var(--bright-water);
    color: #fff;
    transform: translateY(-2px);
}

.blog-pagination__item span.current {
    background: var(--deep-ocean);
    border: 1px solid var(--deep-ocean);
    color: #fff;
}

.blog-pagination__item .dots {
    background: none;
    border: none;
    color: rgba(26,30,46,0.4);
}


/* ═══════════════════════════════════════════════════════════════
   SINGLE POST (single.php)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Single Post Hero (~50vh) ───────────────────────────────── */

.sp-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sp-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sp-hero__bg--gradient {
    background: linear-gradient(135deg, #0d1117 0%, #1A1E2E 40%, #0B4F6C 100%);
}

.sp-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(26,30,46,0.6) 0%, rgba(13,17,23,0.85) 100%);
}

.sp-hero__noise {
    z-index: 2;
}

.sp-hero__orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.sp-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 6rem 2rem 4rem;
}

.sp-hero__badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.sp-hero__badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 40px;
}

.sp-hero__title {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.sp-hero__meta {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.sp-hero__meta-sep {
    margin: 0 0.5rem;
    opacity: 0.4;
}

.sp-share-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.sp-share-btn,
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
}

.sp-share-btn:hover,
.share-btn:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}


/* ─── Single Post Body Section ───────────────────────────────── */

.sp-body-section {
    background: #F0F5F9;
    padding: 4rem 2rem 6rem;
    position: relative;
}

.sp-article-wrapper {
    max-width: 720px;
    margin: 0 auto;
}


/* ─── Post Tags ──────────────────────────────────────────────── */

.sp-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(26,30,46,0.1);
}

.sp-tags__label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--deep-navy);
}

.sp-tag {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--deep-ocean);
    background: rgba(11,79,108,0.08);
    border: 1px solid rgba(11,79,108,0.15);
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.sp-tag:hover {
    background: var(--bright-water);
    border-color: var(--bright-water);
    color: #fff;
}


/* ─── Author Card (Single Post) ──────────────────────────────── */

.sp-author-section {
    background: #F0F5F9;
    padding: 0 2rem 4rem;
}

.sp-author-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.sp-author-card {
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.sp-author-avatar {
    flex-shrink: 0;
}

.sp-author-avatar__img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(1,186,239,0.2);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.sp-author-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.sp-author-bio {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(26,30,46,0.6);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.sp-author-link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bright-water);
    text-decoration: none;
    transition: color 0.3s;
}

.sp-author-link:hover {
    color: var(--sunset-orange);
}

@media (max-width: 640px) {
    .sp-author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/* ─── Related Posts (Single Post) ────────────────────────────── */

.sp-related-section {
    background: linear-gradient(180deg, #1A1E2E 0%, #0f1318 100%);
    position: relative;
    overflow: hidden;
}

.sp-related-glow {
    position: absolute;
    pointer-events: none;
}

.sp-related-glow--blue {
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(1,186,239,0.06), transparent 70%);
}

.sp-related-glow--orange {
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,112,42,0.06), transparent 70%);
}

.sp-z2 {
    position: relative;
    z-index: 2;
}

.sp-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--space-lg);
}

.sp-related-grid .guide-card {
    min-height: 380px;
}

.sp-related-section .section-title {
    text-transform: none;
    letter-spacing: 0;
    font-size: clamp(2rem, 4vw, 3rem);
}

.sp-related-section .section-description {
    color: rgba(255,255,255,0.55);
}

@media (max-width: 1024px) {
    .sp-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .sp-related-grid {
        grid-template-columns: 1fr;
    }
}


/* ─── Comments Section ───────────────────────────────────────── */

.sp-comments-section {
    background: #F0F5F9;
    padding: 4rem 2rem;
}

.sp-comments-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

/* Comments title */
.sp-comments-section .comments-title,
.sp-comments-section h2.comments-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--deep-navy);
    margin-bottom: 2rem;
}

/* Comment list */
.sp-comments-section .comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
}

.sp-comments-section .comment {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(26,30,46,0.08);
}

.sp-comments-section .comment:last-child {
    border-bottom: none;
}

.sp-comments-section .comment-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.sp-comments-section .comment-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(1,186,239,0.15);
}

.sp-comments-section .comment-author .fn {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--deep-navy);
}

.sp-comments-section .comment-metadata time {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(26,30,46,0.45);
}

.sp-comments-section .comment-content {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(26,30,46,0.7);
    line-height: 1.7;
}

.sp-comments-section .comment-content p {
    margin-bottom: 0.75rem;
}

.sp-comments-section .reply a {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bright-water);
    text-decoration: none;
    transition: color 0.3s;
}

.sp-comments-section .reply a:hover {
    color: var(--sunset-orange);
}

/* Nested comments */
.sp-comments-section .children {
    list-style: none;
    padding-left: 2rem;
    margin: 0;
    border-left: 2px solid rgba(1,186,239,0.15);
}

/* Comment form */
.sp-comments-section .comment-respond {
    margin-top: 2rem;
}

.sp-comments-section .comment-reply-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

.sp-comments-section .comment-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.sp-comments-section .comment-form input[type="text"],
.sp-comments-section .comment-form input[type="email"],
.sp-comments-section .comment-form input[type="url"],
.sp-comments-section .comment-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(26,30,46,0.12);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--deep-navy);
    background: rgba(255,255,255,0.8);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    margin-bottom: 1rem;
}

.sp-comments-section .comment-form input:focus,
.sp-comments-section .comment-form textarea:focus {
    border-color: var(--bright-water);
    box-shadow: 0 0 0 3px rgba(1,186,239,0.1);
}

.sp-comments-section .comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.sp-comments-section .form-submit .submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 1rem 2.5rem;
    border-radius: 60px;
    border: none;
    background: var(--sunset-orange);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 20px rgba(232,112,42,0.3);
}

.sp-comments-section .form-submit .submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232,112,42,0.4);
}

/* No comments message */
.sp-comments-section .no-comments {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(26,30,46,0.5);
    text-align: center;
    padding: 2rem 0;
}


/* ═══════════════════════════════════════════════════════════════
   GUTENBERG BLOCK STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ─── Typography Blocks ──────────────────────────────────────── */

.entry-content {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(26,30,46,0.8);
    line-height: 1.85;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.entry-content > *:last-child {
    margin-bottom: 0;
}

.entry-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--deep-navy);
    line-height: 1.1;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
}

.entry-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--deep-navy);
    line-height: 1.15;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(1,186,239,0.15);
}

.entry-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--deep-navy);
    line-height: 1.2;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.entry-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--deep-navy);
    line-height: 1.3;
    margin-top: 1.75rem;
    margin-bottom: 0.6rem;
}

.entry-content h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--deep-ocean);
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.entry-content h6 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--deep-ocean);
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content a {
    color: var(--bright-water);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

.entry-content a:hover {
    color: var(--deep-ocean);
    border-bottom-color: var(--deep-ocean);
}

.entry-content strong {
    font-weight: 600;
    color: var(--deep-navy);
}

.entry-content em {
    font-style: italic;
}

.entry-content hr,
.entry-content .wp-block-separator {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(1,186,239,0.3), transparent);
    margin: 3rem 0;
}

.entry-content .wp-block-separator.is-style-dots {
    background: none;
    height: auto;
    text-align: center;
}

.entry-content .wp-block-separator.is-style-dots::before {
    content: '\00b7 \00b7 \00b7';
    font-size: 1.5rem;
    letter-spacing: 1rem;
    color: rgba(26,30,46,0.3);
}


/* ─── Blockquotes ────────────────────────────────────────────── */

.entry-content blockquote,
.entry-content .wp-block-quote {
    margin: 2.5rem 0;
    padding: 2rem 2rem 2rem 2.5rem;
    border-left: 4px solid var(--bright-water);
    background: rgba(1,186,239,0.04);
    border-radius: 0 16px 16px 0;
    position: relative;
}

.entry-content blockquote p,
.entry-content .wp-block-quote p {
    font-family: var(--font-editorial);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--deep-navy);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.entry-content blockquote p:last-of-type,
.entry-content .wp-block-quote p:last-of-type {
    margin-bottom: 0;
}

.entry-content blockquote cite,
.entry-content .wp-block-quote cite,
.entry-content .wp-block-quote__citation {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--deep-ocean);
    margin-top: 1rem;
}

.entry-content .wp-block-quote.is-style-large,
.entry-content .wp-block-quote.is-large {
    padding: 2.5rem;
    border-left-width: 5px;
}

.entry-content .wp-block-quote.is-style-large p,
.entry-content .wp-block-quote.is-large p {
    font-size: 1.4rem;
}


/* ─── Pullquotes ─────────────────────────────────────────────── */

.entry-content .wp-block-pullquote {
    margin: 3rem 0;
    padding: 3rem 2rem;
    border-top: 3px solid var(--bright-water);
    border-bottom: 3px solid var(--bright-water);
    text-align: center;
    background: transparent;
}

.entry-content .wp-block-pullquote blockquote {
    border-left: none;
    background: none;
    padding: 0;
    margin: 0;
}

.entry-content .wp-block-pullquote blockquote p,
.entry-content .wp-block-pullquote p {
    font-family: var(--font-editorial);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-style: italic;
    color: var(--deep-navy);
    line-height: 1.5;
}

.entry-content .wp-block-pullquote cite,
.entry-content .wp-block-pullquote__citation {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sunset-orange);
    margin-top: 1rem;
    display: block;
}


/* ─── Lists ──────────────────────────────────────────────────── */

.entry-content ul,
.entry-content ol,
.entry-content .wp-block-list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.entry-content ul {
    list-style: none;
    padding-left: 0;
}

.entry-content ul > li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
}

.entry-content ul > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bright-water);
}

.entry-content ol {
    list-style: none;
    counter-reset: list-counter;
    padding-left: 0;
}

.entry-content ol > li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.6rem;
    counter-increment: list-counter;
}

.entry-content ol > li::before {
    content: counter(list-counter) '.';
    position: absolute;
    left: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--bright-water);
    font-size: 0.95em;
}

.entry-content li > ul,
.entry-content li > ol {
    margin-top: 0.5rem;
    margin-bottom: 0;
}


/* ─── Code & Preformatted Blocks ─────────────────────────────── */

.entry-content code {
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 0.88em;
    background: rgba(26,30,46,0.06);
    color: var(--deep-navy);
    padding: 0.15em 0.4em;
    border-radius: 4px;
    border: 1px solid rgba(26,30,46,0.08);
}

.entry-content pre,
.entry-content .wp-block-code,
.entry-content .wp-block-preformatted {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: #1A1E2E;
    border-radius: 16px;
    overflow-x: auto;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.entry-content pre code,
.entry-content .wp-block-code code {
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    display: block;
    white-space: pre;
}

.entry-content .wp-block-verse {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--deep-navy);
    line-height: 1.8;
    background: rgba(232,220,200,0.3);
    border-radius: 12px;
    white-space: pre-wrap;
}


/* ─── Images ─────────────────────────────────────────────────── */

.entry-content .wp-block-image {
    margin: 2.5rem 0;
}

.entry-content .wp-block-image img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.entry-content .wp-block-image img:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.entry-content .wp-block-image figcaption {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(26,30,46,0.5);
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}


/* ─── Gallery ────────────────────────────────────────────────── */

.entry-content .wp-block-gallery {
    margin: 2.5rem 0;
    gap: 0.75rem;
}

.entry-content .wp-block-gallery .wp-block-image img {
    border-radius: 10px;
}

.entry-content .wp-block-gallery figcaption {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(26,30,46,0.5);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}


/* ─── Video & Audio ──────────────────────────────────────────── */

.entry-content .wp-block-video {
    margin: 2.5rem 0;
}

.entry-content .wp-block-video video {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 100%;
}

.entry-content .wp-block-video figcaption {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(26,30,46,0.5);
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}

.entry-content .wp-block-audio {
    margin: 2rem 0;
}

.entry-content .wp-block-audio audio {
    width: 100%;
    border-radius: 8px;
}


/* ─── Cover Block ────────────────────────────────────────────── */

.entry-content .wp-block-cover {
    margin: 2.5rem 0;
    border-radius: 16px;
    overflow: hidden;
    min-height: 300px;
}

.entry-content .wp-block-cover__inner-container {
    position: relative;
    z-index: 2;
}

.entry-content .wp-block-cover__inner-container p {
    color: #fff;
    font-size: 1.1rem;
}

.entry-content .wp-block-cover__inner-container h2,
.entry-content .wp-block-cover__inner-container h3 {
    color: #fff;
    border-bottom: none;
}


/* ─── Media & Text Block ─────────────────────────────────────── */

.entry-content .wp-block-media-text {
    margin: 2.5rem 0;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(26,30,46,0.06);
}

.entry-content .wp-block-media-text .wp-block-media-text__media img {
    border-radius: 0;
}

.entry-content .wp-block-media-text .wp-block-media-text__content {
    padding: 2rem;
}


/* ─── Columns Block ──────────────────────────────────────────── */

.entry-content .wp-block-columns {
    margin: 2rem 0;
    gap: 2rem;
}

.entry-content .wp-block-column {
    min-width: 0;
}

@media (max-width: 640px) {
    .entry-content .wp-block-columns {
        flex-direction: column;
    }
}


/* ─── Group Block ────────────────────────────────────────────── */

.entry-content .wp-block-group {
    margin: 2rem 0;
}

.entry-content .wp-block-group.has-background {
    padding: 2rem;
    border-radius: 16px;
}


/* ─── Table Block ────────────────────────────────────────────── */

.entry-content .wp-block-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.entry-content .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(26,30,46,0.1);
}

.entry-content .wp-block-table th {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--deep-navy);
    padding: 1rem 1.25rem;
    text-align: left;
}

.entry-content .wp-block-table td {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--deep-navy);
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid rgba(26,30,46,0.06);
}

.entry-content .wp-block-table tr:nth-child(even) td {
    background: rgba(240,245,249,0.5);
}

.entry-content .wp-block-table tr:hover td {
    background: rgba(1,186,239,0.04);
}

.entry-content .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background: rgba(240,245,249,0.5);
}


/* ─── Buttons Block ──────────────────────────────────────────── */

.entry-content .wp-block-buttons {
    margin: 2rem 0;
    gap: 0.75rem;
}

.entry-content .wp-block-button__link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2rem;
    border-radius: 60px;
    transition: all 0.4s var(--ease-out);
    text-decoration: none;
    border-bottom: none;
}

.entry-content .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: none;
}

.entry-content .wp-block-button:not(.is-style-outline) .wp-block-button__link {
    background: var(--sunset-orange);
    color: #fff;
    box-shadow: 0 4px 20px rgba(232,112,42,0.3);
}

.entry-content .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
    box-shadow: 0 8px 30px rgba(232,112,42,0.4);
}

.entry-content .wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent;
    border: 2px solid var(--deep-navy);
    color: var(--deep-navy);
}

.entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--deep-navy);
    color: #fff;
}


/* ─── Separator / Spacer ─────────────────────────────────────── */

.entry-content .wp-block-separator {
    border: none;
    margin: 3rem auto;
}

.entry-content .wp-block-separator:not(.is-style-dots) {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(1,186,239,0.3), transparent);
    max-width: 200px;
}

.entry-content .wp-block-separator.is-style-wide:not(.is-style-dots) {
    max-width: 100%;
}

.entry-content .wp-block-spacer {
    /* WordPress handles the height */
}


/* ─── Details / Accordion ────────────────────────────────────── */

.entry-content .wp-block-details {
    margin: 1.5rem 0;
    border: 1px solid rgba(26,30,46,0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.entry-content .wp-block-details[open] {
    border-color: rgba(1,186,239,0.3);
}

.entry-content .wp-block-details summary {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-navy);
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: rgba(240,245,249,0.5);
    transition: background 0.3s, color 0.3s;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.entry-content .wp-block-details summary::-webkit-details-marker {
    display: none;
}

.entry-content .wp-block-details summary::after {
    content: '+';
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bright-water);
    transition: transform 0.3s;
}

.entry-content .wp-block-details[open] summary::after {
    content: '-';
}

.entry-content .wp-block-details summary:hover {
    background: rgba(1,186,239,0.06);
}

.entry-content .wp-block-details > *:not(summary) {
    padding: 0 1.5rem;
}

.entry-content .wp-block-details > *:last-child {
    padding-bottom: 1.25rem;
}


/* ─── Embed Blocks ───────────────────────────────────────────── */

.entry-content .wp-block-embed {
    margin: 2.5rem 0;
}

.entry-content .wp-block-embed .wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.entry-content .wp-block-embed .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.entry-content .wp-block-embed figcaption {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(26,30,46,0.5);
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}


/* ─── Alignment Classes ──────────────────────────────────────── */

.entry-content .alignwide {
    margin-left: -4rem;
    margin-right: -4rem;
    max-width: calc(100% + 8rem);
    width: calc(100% + 8rem);
}

.entry-content .alignfull {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
    width: 100vw;
}

.entry-content .alignfull img {
    border-radius: 0;
    width: 100%;
}

.entry-content .aligncenter {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.entry-content .alignleft {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
    max-width: 50%;
}

.entry-content .alignright {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1rem;
    max-width: 50%;
}

@media (max-width: 768px) {
    .entry-content .alignwide {
        margin-left: -1rem;
        margin-right: -1rem;
        max-width: calc(100% + 2rem);
        width: calc(100% + 2rem);
    }

    .entry-content .alignleft,
    .entry-content .alignright {
        float: none;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
}

/* ─── Clearfix for floated alignments ────────────────────────── */

.entry-content::after {
    content: '';
    display: table;
    clear: both;
}


/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES (Privacy, Terms, Cookie Policy)
   ═══════════════════════════════════════════════════════════════ */

.legal-hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--deep-ocean) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
}
.legal-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 0.5rem;
}
.legal-hero__updated {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.legal-body {
    background: var(--mist-white);
    padding: var(--space-xl) 2rem;
}
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    color: var(--deep-navy);
}
.legal-container h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--deep-ocean);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(11,79,108,0.1);
}
.legal-container h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--deep-navy);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.legal-container p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(26,30,46,0.75);
    margin-bottom: 1rem;
}
.legal-container ul {
    margin: 0.75rem 0 1.25rem 1.5rem;
    list-style: disc;
}
.legal-container li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(26,30,46,0.75);
    margin-bottom: 0.4rem;
}
.legal-container a {
    color: var(--bright-water);
    text-decoration: none;
    transition: color 0.3s;
}
.legal-container a:hover {
    color: var(--deep-ocean);
    text-decoration: underline;
}
.legal-container strong {
    color: var(--deep-navy);
}
.legal-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
    border-radius: 12px;
    overflow: hidden;
}
.legal-container thead {
    background: var(--deep-navy);
    color: #fff;
}
.legal-container th {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.75rem 1rem;
    text-align: left;
}
.legal-container td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid rgba(26,30,46,0.08);
    color: rgba(26,30,46,0.7);
}
.legal-container tbody tr:nth-child(even) {
    background: rgba(26,30,46,0.02);
}

@media (max-width: 640px) {
    .legal-hero { padding: 6rem 1.5rem 3rem; }
    .legal-body { padding: var(--space-lg) 1.5rem; }
    .legal-container table { font-size: 0.8rem; }
    .legal-container th, .legal-container td { padding: 0.5rem 0.6rem; }
}


/* ═══════════════════════════════════════════════════════════════
   USER AUTH PAGES (Register, Login, Forgot Password)
   ═══════════════════════════════════════════════════════════════ */

.auth-hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--deep-ocean) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
}
.auth-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 0.5rem;
}
.auth-hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto;
}

.auth-section {
    background: var(--mist-white);
    padding: var(--space-xl) 2rem;
    display: flex;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.auth-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.auth-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--deep-navy);
}

.auth-input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.85rem 1.15rem;
    border-radius: 12px;
    border: 1.5px solid rgba(26,30,46,0.12);
    background: #f8fafc;
    color: var(--deep-navy);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.auth-input:focus {
    border-color: var(--bright-water);
    box-shadow: 0 0 0 3px rgba(1,186,239,0.15);
}
.auth-input--error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}

.auth-select {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.85rem 2.5rem 0.85rem 1.15rem;
    border-radius: 12px;
    border: 1.5px solid rgba(26,30,46,0.12);
    background: #f8fafc;
    color: var(--deep-navy);
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1E2E' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.auth-select:focus {
    border-color: var(--bright-water);
    box-shadow: 0 0 0 3px rgba(1,186,239,0.15);
}

.auth-password-wrap {
    position: relative;
}
.auth-password-wrap .auth-input {
    padding-right: 3rem;
}
.auth-password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(26,30,46,0.4);
    padding: 4px;
    transition: color 0.3s;
}
.auth-password-toggle:hover {
    color: var(--deep-ocean);
}

.auth-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(26,30,46,0.7);
    line-height: 1.5;
}
.auth-checkbox-wrap input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--bright-water);
    cursor: pointer;
}
.auth-checkbox-wrap a {
    color: var(--bright-water);
    text-decoration: none;
}
.auth-checkbox-wrap a:hover {
    text-decoration: underline;
}

.auth-submit {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--sunset-orange);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}
.auth-submit:hover {
    background: #d4631f;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232,112,42,0.3);
}
.auth-submit:active {
    transform: translateY(0);
}
.auth-submit--loading {
    pointer-events: none;
    opacity: 0.85;
}
.auth-submit--loading .auth-submit__text {
    visibility: hidden;
}
.auth-submit__spinner {
    display: none;
}
.auth-submit--loading .auth-submit__spinner {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: authSpin 0.6s linear infinite;
}
@keyframes authSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.auth-message {
    padding: 0.85rem 1.15rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
.auth-message--error {
    background: rgba(231,76,60,0.08);
    border: 1px solid rgba(231,76,60,0.2);
    color: #c0392b;
}
.auth-message--success {
    background: rgba(32,191,85,0.08);
    border: 1px solid rgba(32,191,85,0.2);
    color: #1a9c49;
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(26,30,46,0.55);
}
.auth-links a {
    color: var(--bright-water);
    text-decoration: none;
    font-weight: 500;
}
.auth-links a:hover {
    text-decoration: underline;
}
.auth-links p + p {
    margin-top: 0.5rem;
}

/* Header Login Link */
.header-login {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
    margin-right: 0.75rem;
}
.header-login:hover {
    color: #fff;
}

/* User Menu (logged-in header dropdown) */
.user-menu {
    position: relative;
}
.user-menu__toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.user-menu__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep-ocean), var(--bright-water));
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}
.user-menu__toggle:hover .user-menu__avatar {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(1,186,239,0.3);
}

.user-menu__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 240px;
    background: var(--deep-navy);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}
.user-menu.active .user-menu__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu__header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 0.25rem;
}
.user-menu__name {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}
.user-menu__email {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.15rem;
}

.user-menu__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.user-menu__item:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}
.user-menu__item--logout {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 0.25rem;
    padding-top: 0.75rem;
    color: var(--sunset-orange);
}
.user-menu__item--logout:hover {
    color: #fff;
    background: rgba(232,112,42,0.15);
}

/* ─── Submit Trip Form ──────────────────────────────────── */
.submit-form {
    max-width: 700px;
}

.submit-form__other-location {
    display: none;
}
.submit-form__other-location--visible {
    display: flex;
}

.submit-form__char-count {
    font-size: 0.78rem;
    color: rgba(26,30,46,0.4);
    text-align: right;
    margin-top: 0.25rem;
    transition: color 0.3s;
}
.submit-form__char-count--met {
    color: var(--emerald);
}

/* Dropzone */
.submit-form__dropzone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 1.5rem;
    border: 2px dashed rgba(26,30,46,0.15);
    border-radius: 16px;
    background: #f8fafc;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    color: rgba(26,30,46,0.4);
}
.submit-form__dropzone:hover,
.submit-form__dropzone--active {
    border-color: var(--bright-water);
    background: rgba(1,186,239,0.04);
    box-shadow: 0 0 0 3px rgba(1,186,239,0.1);
}
.submit-form__dropzone svg {
    opacity: 0.5;
}
.submit-form__dropzone-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--deep-navy);
}
.submit-form__dropzone-hint {
    font-size: 0.78rem;
    color: rgba(26,30,46,0.4);
}
.submit-form__file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Photo Preview Grid */
.submit-form__preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}
.submit-form__preview-grid:empty {
    display: none;
}
.submit-form__preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.submit-form__preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.submit-form__preview-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
}
.submit-form__preview-remove:hover {
    background: #e74c3c;
}

/* Gear Repeater */
.submit-form__gear-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.submit-form__gear-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.submit-form__gear-item .auth-input {
    flex: 1;
}
.submit-form__gear-remove {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231,76,60,0.08);
    color: #e74c3c;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.submit-form__gear-remove:hover {
    background: #e74c3c;
    color: #fff;
}
.submit-form__add-gear {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bright-water);
    background: rgba(1,186,239,0.06);
    border: 1.5px dashed rgba(1,186,239,0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.submit-form__add-gear:hover {
    background: rgba(1,186,239,0.12);
    border-color: var(--bright-water);
    color: var(--deep-ocean);
}

@media (max-width: 640px) {
    .auth-hero { padding: 6rem 1.5rem 3rem; }
    .auth-section { padding: var(--space-lg) 1rem; }
    .auth-card { padding: 1.75rem; border-radius: 20px; }
    .auth-field-row { grid-template-columns: 1fr; }
    .user-menu__dropdown { right: -60px; min-width: 220px; }
    .submit-form__preview-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); }
}


/* ═══════════════════════════════════════════════════════════════
   USER PROFILE PAGE
   ═══════════════════════════════════════════════════════════════ */

.profile-hero {
    position: relative;
    padding: 8rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--deep-ocean) 100%);
    overflow: hidden;
}
.profile-hero__bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?auto=format&fit=crop&w=1920&q=60') center/cover;
    opacity: 0.15;
}
.profile-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,30,46,0.8), rgba(11,79,108,0.6));
}
.profile-hero__content {
    position: relative;
    z-index: 2;
}
.profile-hero__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep-ocean), var(--bright-water));
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    border: 4px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.profile-hero__name {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 0.75rem;
}
.profile-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.profile-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Stats Bar */
.profile-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 700px;
    margin: -2rem auto 0;
    padding: 1.5rem 2.5rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
}
.profile-stat {
    text-align: center;
}
.profile-stat__value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--deep-ocean);
}
.profile-stat__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(26,30,46,0.5);
    font-family: var(--font-heading);
}
.profile-stat__divider {
    width: 1px;
    height: 40px;
    background: rgba(26,30,46,0.1);
}

/* Tabs */
.profile-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid rgba(26,30,46,0.08);
    padding: 0 2rem;
    margin-top: 1.5rem;
    overflow-x: auto;
}
.profile-tab {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(26,30,46,0.45);
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-bottom: 3px solid transparent;
    transition: color 0.3s, border-color 0.3s;
    white-space: nowrap;
}
.profile-tab:hover {
    color: var(--deep-ocean);
}
.profile-tab.active {
    color: var(--deep-ocean);
    border-bottom-color: var(--bright-water);
}

/* Content Area */
.profile-content {
    background: var(--mist-white);
    padding: var(--space-lg) 2rem var(--space-xl);
}
.profile-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Grid (overview tab) */
.profile-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Cards */
.profile-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    margin-bottom: 1.5rem;
}
.profile-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(26,30,46,0.06);
}
.profile-card__subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(26,30,46,0.5);
    margin-bottom: 0.75rem;
}
.profile-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(26,30,46,0.7);
}
.profile-card__hint {
    font-size: 0.85rem;
    color: rgba(26,30,46,0.45);
    margin-bottom: 1rem;
}

/* Empty State */
.profile-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: rgba(26,30,46,0.5);
    font-size: 0.95rem;
}
.profile-empty svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}
.profile-empty a {
    color: var(--bright-water);
    text-decoration: none;
}
.profile-empty .btn {
    margin-top: 1rem;
}

/* Badges */
.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.profile-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    background: rgba(26,30,46,0.04);
    border: 1px solid rgba(26,30,46,0.06);
}
.profile-badge__icon {
    font-size: 1.2rem;
}
.profile-badge__name {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--deep-navy);
}

/* Quick Actions */
.profile-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.profile-action {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--deep-navy);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.profile-action:hover {
    background: rgba(1,186,239,0.06);
    color: var(--deep-ocean);
}
.profile-action svg {
    flex-shrink: 0;
    color: var(--bright-water);
}

/* Divider */
.profile-divider {
    border: none;
    height: 1px;
    background: rgba(26,30,46,0.08);
    margin: 1.5rem 0;
}

/* Paddling Passport */
.passport-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}
.passport-stat {
    text-align: center;
    flex: 1;
    padding: 1.25rem;
    background: rgba(26,30,46,0.03);
    border-radius: 16px;
}
.passport-stat__value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--deep-ocean);
}
.passport-stat__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(26,30,46,0.5);
    font-family: var(--font-heading);
}

.passport-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}
.passport-badge {
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-radius: 16px;
    background: rgba(26,30,46,0.03);
    border: 2px solid rgba(26,30,46,0.06);
    opacity: 0.4;
    filter: grayscale(1);
    transition: all 0.3s;
}
.passport-badge--earned {
    opacity: 1;
    filter: none;
    border-color: rgba(1,186,239,0.2);
    background: rgba(1,186,239,0.04);
}
.passport-badge__icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.passport-badge__name {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--deep-navy);
    margin-bottom: 0.25rem;
}
.passport-badge__req {
    display: block;
    font-size: 0.7rem;
    color: rgba(26,30,46,0.45);
}

.passport-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .profile-hero { padding: 6rem 1.5rem 2.5rem; }
    .profile-stats { flex-wrap: wrap; gap: 1rem; margin: -1.5rem 1rem 0; padding: 1.25rem; }
    .profile-stat__divider { display: none; }
    .profile-grid { grid-template-columns: 1fr; }
    .profile-tabs { justify-content: flex-start; }
    .passport-badges { grid-template-columns: repeat(2, 1fr); }
    .passport-stats { flex-direction: column; gap: 1rem; }
    .auth-field-row { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   SUBMIT GEAR REVIEW PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ─── Wide Auth Card Variant ───────────────────────────────── */
.auth-card--wide {
    max-width: 700px;
}

/* ─── Required Field Indicator ─────────────────────────────── */
.auth-label__req {
    color: var(--sunset-orange);
    font-weight: 700;
}

/* ─── Price Input with Euro Prefix ─────────────────────────── */
.review-price-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.review-price-prefix {
    position: absolute;
    left: 1.15rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-navy);
    z-index: 1;
    pointer-events: none;
}
.review-price-input {
    padding-left: 2.5rem;
}
/* Hide number input spinners */
.review-price-input::-webkit-outer-spin-button,
.review-price-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.review-price-input[type=number] {
    -moz-appearance: textfield;
}

/* ─── Interactive Star Rating ──────────────────────────────── */
.review-star-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.review-star {
    font-size: 2rem;
    color: rgba(26,30,46,0.12);
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    line-height: 1;
    user-select: none;
}
.review-star:hover {
    transform: scale(1.15);
}
.review-star--active {
    color: var(--sunset-orange);
}
.review-star--preview {
    color: rgba(232,112,42,0.5);
}
.review-star--active:not(.review-star--preview) {
    color: var(--sunset-orange);
    text-shadow: 0 2px 8px rgba(232,112,42,0.25);
}
.review-star-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sunset-orange);
    margin-left: 0.75rem;
}

/* ─── Small Star Rating (Breakdown) ────────────────────────── */
.review-star-rating--small .review-star {
    font-size: 1.35rem;
}

/* ─── Rating Breakdown ─────────────────────────────────────── */
.review-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1.5px solid rgba(26,30,46,0.06);
}
.review-breakdown__row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.review-breakdown__label {
    flex: 0 0 130px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(26,30,46,0.6);
}

/* ─── Pros/Cons Repeater ───────────────────────────────────── */
.review-repeater {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.review-repeater__item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    animation: reviewRepeaterIn 0.25s var(--ease-out);
}
@keyframes reviewRepeaterIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.review-repeater__item .auth-input {
    flex: 1;
}
.review-repeater__remove {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231,76,60,0.08);
    color: #e74c3c;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.review-repeater__remove:hover {
    background: #e74c3c;
    color: #fff;
}
.review-repeater__remove:disabled {
    opacity: 0.25;
    pointer-events: none;
}
.review-repeater__add {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bright-water);
    background: rgba(1,186,239,0.06);
    border: 1.5px dashed rgba(1,186,239,0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.review-repeater__add:hover {
    background: rgba(1,186,239,0.12);
    border-color: var(--bright-water);
    color: var(--deep-ocean);
}

/* ─── Review Textarea ──────────────────────────────────────── */
.review-textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.7;
}

/* ─── Character Count ──────────────────────────────────────── */
.review-char-count {
    display: block;
    font-size: 0.78rem;
    color: rgba(26,30,46,0.4);
    text-align: right;
    margin-top: 0.25rem;
    transition: color 0.3s;
}
.review-char-count--met {
    color: var(--emerald);
}

/* ─── Photo Upload Area ────────────────────────────────────── */
.review-upload {
    position: relative;
    border: 2px dashed rgba(26,30,46,0.15);
    border-radius: 16px;
    background: #f8fafc;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.review-upload:hover,
.review-upload--dragover {
    border-color: var(--bright-water);
    background: rgba(1,186,239,0.04);
    box-shadow: 0 0 0 3px rgba(1,186,239,0.1);
}
.review-upload__input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.review-upload__label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    color: rgba(26,30,46,0.4);
}
.review-upload__label svg {
    opacity: 0.5;
}
.review-upload__text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--deep-navy);
}
.review-upload__hint {
    font-size: 0.78rem;
    color: rgba(26,30,46,0.4);
}

/* ─── Photo Previews ───────────────────────────────────────── */
.review-upload__previews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}
.review-upload__previews:empty {
    display: none;
}
.review-upload__preview-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    animation: reviewPreviewIn 0.3s var(--ease-out);
}
@keyframes reviewPreviewIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.review-upload__preview-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}
.review-upload__preview-name {
    display: block;
    font-size: 0.7rem;
    color: rgba(26,30,46,0.5);
    padding: 0.35rem 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #fff;
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 640px) {
    .auth-card--wide { max-width: 100%; }
    .review-breakdown__row {
        flex-wrap: wrap;
    }
    .review-breakdown__label {
        flex: 0 0 100%;
        margin-bottom: -0.25rem;
    }
    .review-upload__previews {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
}


/* ═══════════════════════════════════════════════════════════════
   ACTIVITY FEED
   ═══════════════════════════════════════════════════════════════ */

/* ─── Feed Container ──────────────────────────────────────── */
.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}

/* Timeline line */
.activity-feed::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, rgba(1,186,239,0.3) 0%, rgba(32,191,85,0.3) 50%, rgba(232,112,42,0.3) 100%);
    border-radius: 1px;
}

/* ─── Feed Item ───────────────────────────────────────────── */
.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
    border-bottom: 1px solid rgba(26,30,46,0.05);
    transition: background 0.3s var(--ease-smooth);
}
.activity-item:last-child {
    border-bottom: none;
}
.activity-item:hover {
    background: rgba(1,186,239,0.02);
    border-radius: 12px;
}

/* ─── Icon (type indicator) ───────────────────────────────── */
.activity-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.15rem;
    background: rgba(1,186,239,0.08);
    border: 2px solid rgba(1,186,239,0.15);
    position: relative;
    z-index: 1;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.activity-item:hover .activity-item__icon {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(1,186,239,0.2);
}

/* Type-specific icon colors */
.activity-item__icon--trip {
    background: rgba(1,186,239,0.1);
    border-color: rgba(1,186,239,0.25);
}
.activity-item__icon--gear {
    background: rgba(232,112,42,0.1);
    border-color: rgba(232,112,42,0.25);
}
.activity-item__icon--route {
    background: rgba(32,191,85,0.1);
    border-color: rgba(32,191,85,0.25);
}
.activity-item__icon--member {
    background: rgba(11,79,108,0.1);
    border-color: rgba(11,79,108,0.25);
}
.activity-item__icon--comment {
    background: rgba(26,30,46,0.06);
    border-color: rgba(26,30,46,0.12);
}

/* ─── Avatar (initials) ───────────────────────────────────── */
.activity-item__avatar {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ocean-gradient);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(1,186,239,0.2);
}

/* ─── Body (text + time) ──────────────────────────────────── */
.activity-item__body {
    flex: 1;
    min-width: 0;
}

.activity-item__content {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(26,30,46,0.75);
    margin: 0;
}
.activity-item__content strong {
    color: var(--deep-navy);
    font-weight: 600;
}

.activity-item__time {
    display: inline-block;
    margin-top: 0.25rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(26,30,46,0.35);
}

/* ─── Homepage Feed Section ───────────────────────────────── */
.section-activity-feed {
    padding-bottom: var(--space-lg);
    background: var(--mist-white);
}

.activity-feed--homepage {
    padding: 1.5rem;
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid rgba(26,30,46,0.06);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.03);
}

/* ─── Empty Feed State ────────────────────────────────────── */
.activity-feed-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid rgba(26,30,46,0.06);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.activity-feed-empty__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}
.activity-feed-empty__text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(26,30,46,0.5);
    line-height: 1.7;
}
.activity-feed-empty__text a {
    color: var(--bright-water);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1.5px solid rgba(1,186,239,0.3);
    transition: border-color 0.3s;
}
.activity-feed-empty__text a:hover {
    border-color: var(--bright-water);
}

/* ─── Profile Feed Variant ────────────────────────────────── */
.activity-feed--profile {
    max-width: 100%;
}
.activity-feed--profile::before {
    left: 19px;
}
.activity-feed--profile .activity-item__avatar {
    display: none;
}

/* ─── GSAP pre-hide for stagger ──────────────────────────── */
.activity-feed[data-animate="fade-up"] .activity-item {
    opacity: 0;
    transform: translateY(20px);
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .activity-feed--homepage {
        padding: 1rem;
        border-radius: 16px;
    }
    .activity-item {
        gap: 0.75rem;
        padding: 0.75rem 0;
    }
    .activity-item__icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
    .activity-item__avatar {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    .activity-item__content {
        font-size: 0.85rem;
    }
    .activity-feed::before {
        left: 16px;
    }
}

@media (max-width: 480px) {
    .activity-item__avatar {
        display: none;
    }
    .activity-feed::before {
        left: 16px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   SINGLE ROUTE — Star Rating
   ═══════════════════════════════════════════════════════════════ */

.route-rating {
    margin-top: 2.5rem;
    padding: 1.75rem;
    background: rgba(26,30,46,0.03);
    border: 1.5px solid rgba(26,30,46,0.06);
    border-radius: 20px;
    backdrop-filter: blur(6px);
}
.route-rating__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}
.route-rating__summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.route-rating__average {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--deep-navy);
    line-height: 1;
}
.route-rating__stars-display {
    display: flex;
    gap: 0.15rem;
}
.route-rating__star-display {
    font-size: 1.25rem;
    color: rgba(26,30,46,0.12);
    line-height: 1;
}
.route-rating__star-display--filled {
    color: var(--sunset-orange);
    text-shadow: 0 1px 6px rgba(232,112,42,0.2);
}
.route-rating__count {
    font-size: 0.85rem;
    color: rgba(26,30,46,0.5);
    font-weight: 500;
}
.route-rating__input {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.route-rating__prompt {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(26,30,46,0.6);
}
.route-rating__stars {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.route-rating__star {
    font-size: 1.75rem;
    color: rgba(26,30,46,0.12);
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    line-height: 1;
    user-select: none;
}
.route-rating__star:hover {
    transform: scale(1.2);
}
.route-rating__star--active {
    color: var(--sunset-orange);
}
.route-rating__star--preview {
    color: rgba(232,112,42,0.5);
}
.route-rating__star--active:not(.route-rating__star--preview) {
    color: var(--sunset-orange);
    text-shadow: 0 2px 8px rgba(232,112,42,0.25);
}
.route-rating__label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sunset-orange);
    margin-left: 0.5rem;
    min-width: 70px;
}
.route-rating__login {
    margin: 0;
    font-size: 0.9rem;
}
.route-rating__login a {
    color: var(--bright-water);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
.route-rating__login a:hover {
    color: var(--sunset-orange);
}


/* ═══════════════════════════════════════════════════════════════
   SINGLE ROUTE — "I've Paddled This" Button
   ═══════════════════════════════════════════════════════════════ */

.paddled-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.paddled-btn:hover {
    border-color: var(--emerald);
    color: var(--emerald);
    background: rgba(32,191,85,0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(32,191,85,0.2);
}
.paddled-btn--active {
    background: var(--emerald);
    border-color: var(--emerald);
    color: #fff;
    box-shadow: 0 4px 20px rgba(32,191,85,0.3);
}
.paddled-btn--active:hover {
    background: rgba(32,191,85,0.85);
    border-color: rgba(32,191,85,0.85);
    color: #fff;
    box-shadow: 0 4px 24px rgba(32,191,85,0.35);
}
.paddled-btn__icon {
    transition: transform 0.3s var(--ease-out);
}
.paddled-btn--active .paddled-btn__icon {
    transform: scale(1.15);
    stroke: #fff;
}
.paddled-btn:disabled {
    opacity: 0.6;
    pointer-events: none;
}
.paddled-btn--login {
    font-size: 0.82rem;
    opacity: 0.8;
}
.paddled-btn--login:hover {
    opacity: 1;
}

/* Paddler count text */
.paddled-count {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}
.paddled-count svg {
    opacity: 0.6;
}
.paddled-count__number {
    font-weight: 700;
    color: rgba(255,255,255,0.75);
}


/* ═══════════════════════════════════════════════════════════════
   SINGLE ROUTE — Comments Section
   ═══════════════════════════════════════════════════════════════ */

.comments-area {
    max-width: 800px;
    margin: 0 auto;
}
.comments-area__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
}
.comments-area__closed {
    text-align: center;
    color: rgba(26,30,46,0.5);
    font-size: 0.9rem;
    padding: 2rem 0;
}

/* Comment List */
.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.comment-list .children {
    list-style: none;
    margin: 0;
    padding-left: 2rem;
}
@media (max-width: 640px) {
    .comment-list .children {
        padding-left: 1rem;
    }
}

/* Single Comment */
.comment-item {
    margin-bottom: 1.25rem;
}
.comment-item__body {
    background: #fff;
    border: 1.5px solid rgba(26,30,46,0.06);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 12px rgba(26,30,46,0.04);
    transition: box-shadow 0.3s, transform 0.3s;
}
.comment-item__body:hover {
    box-shadow: 0 4px 20px rgba(26,30,46,0.08);
    transform: translateY(-1px);
}
.comment-item__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.comment-item__avatar-img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 2px solid rgba(1,186,239,0.15);
}
.comment-item__meta {
    display: flex;
    flex-direction: column;
}
.comment-item__author,
.comment-item__author a {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--deep-navy);
    text-decoration: none;
}
.comment-item__author a:hover {
    color: var(--bright-water);
}
.comment-item__date {
    font-size: 0.78rem;
    color: rgba(26,30,46,0.4);
    margin-top: 0.1rem;
}
.comment-item__pending {
    font-size: 0.82rem;
    color: var(--sunset-orange);
    font-style: italic;
    margin: 0 0 0.5rem;
}
.comment-item__content {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(26,30,46,0.75);
}
.comment-item__content p {
    margin: 0 0 0.5rem;
}
.comment-item__content p:last-child {
    margin-bottom: 0;
}
.comment-item__footer {
    margin-top: 0.75rem;
}
.comment-reply a,
.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bright-water);
    text-decoration: none;
    transition: color 0.3s;
}
.comment-reply a:hover,
.comment-reply-link:hover {
    color: var(--sunset-orange);
}

/* Comment Form */
#respond {
    margin-top: 2rem;
}
#respond .comment-reply-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin: 0 0 1rem;
}
#respond .comment-reply-title small {
    display: block;
    margin-top: 0.25rem;
}
#respond .comment-reply-title small a {
    font-size: 0.8rem;
    color: var(--sunset-orange);
    text-decoration: none;
    font-weight: 600;
}
.comment-form__logged-in {
    font-size: 0.85rem;
    color: rgba(26,30,46,0.6);
    margin-bottom: 1rem;
}
.comment-form__logged-in a {
    color: var(--bright-water);
    text-decoration: none;
    font-weight: 600;
}
.comment-form__logged-in a:hover {
    color: var(--sunset-orange);
}
.comment-form__label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(26,30,46,0.6);
    margin-bottom: 0.4rem;
}
.comment-form__textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--deep-navy);
    background: #fff;
    border: 1.5px solid rgba(26,30,46,0.1);
    border-radius: 14px;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}
.comment-form__textarea:focus {
    outline: none;
    border-color: var(--bright-water);
    box-shadow: 0 0 0 3px rgba(1,186,239,0.1);
}
.comment-form__textarea::placeholder {
    color: rgba(26,30,46,0.3);
}
.comment-submit-btn {
    margin-top: 1rem;
}

/* Comments Login Prompt */
.comments-area__login {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2.5rem 1.5rem;
    background: rgba(26,30,46,0.03);
    border: 1.5px dashed rgba(26,30,46,0.1);
    border-radius: 20px;
    text-align: center;
}
.comments-area__login svg {
    color: rgba(26,30,46,0.2);
}
.comments-area__login p {
    margin: 0;
    font-size: 0.95rem;
}
.comments-area__login a {
    color: var(--bright-water);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
.comments-area__login a:hover {
    color: var(--sunset-orange);
}

/* Comments navigation */
.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
    font-size: 0.85rem;
}
.comment-navigation a {
    color: var(--bright-water);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.comment-navigation a:hover {
    color: var(--sunset-orange);
}


/* ═══════════════════════════════════════════════════════════════
   SINGLE ROUTE — Responsive for new features
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .route-rating__summary {
        flex-wrap: wrap;
    }
    .route-rating__input {
        flex-direction: column;
        align-items: flex-start;
    }
    .paddled-btn {
        width: 100%;
        justify-content: center;
    }
    .sp-cta-row {
        flex-wrap: wrap;
    }
}
@media (max-width: 480px) {
    .route-rating {
        padding: 1.25rem;
    }
    .route-rating__average {
        font-size: 1.6rem;
    }
    .comment-item__body {
        padding: 1rem;
    }
}


/* ═══════════════════════════════════════════════════════════════
   DISCUSSION FORUM SYSTEM
   ═══════════════════════════════════════════════════════════════ */

/* ─── Forum Hero ──────────────────────────────────────────── */
.forum-hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--deep-ocean) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.forum-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(1,186,239,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.forum-hero__content {
    position: relative;
    z-index: 1;
}
.forum-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 0.5rem;
}
.forum-hero__title--topic {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    text-transform: none;
    letter-spacing: 0;
    max-width: 800px;
    margin: 0 auto 0.5rem;
}
.forum-hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto;
}
.forum-hero__badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}
.forum-hero--category {
    background: linear-gradient(135deg, var(--deep-navy) 0%, color-mix(in srgb, var(--cat-accent, var(--deep-ocean)) 30%, var(--deep-navy)) 100%);
}

/* ─── Forum Stats Bar ─────────────────────────────────────── */
.forum-stats-bar {
    background: var(--mist-white);
    padding: 2rem;
    position: relative;
    z-index: 2;
}
.forum-stats-bar__inner {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.forum-stat-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.forum-stat-card__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--deep-ocean);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.forum-stat-card__label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(26,30,46,0.5);
}

/* ─── Forum Section Title ─────────────────────────────────── */
.forum-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

/* ─── Forum Categories Grid ──────────────────────────────── */
.forum-categories {
    background: var(--mist-white);
    padding: var(--space-xl) 2rem;
}
.forum-categories__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.forum-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}
.forum-category-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02);
    border: 1px solid rgba(26,30,46,0.04);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    display: block;
    position: relative;
}
.forum-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
}
.forum-category-card__accent {
    height: 4px;
    width: 100%;
}
.forum-category-card__body {
    padding: 1.75rem;
}
.forum-category-card__icon {
    margin-bottom: 0.75rem;
    opacity: 0.85;
}
.forum-category-card__name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.35rem;
}
.forum-category-card__desc {
    font-size: 0.9rem;
    color: rgba(26,30,46,0.6);
    line-height: 1.5;
    margin-bottom: 1rem;
}
.forum-category-card__stats {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1rem;
}
.forum-category-card__stat {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(26,30,46,0.5);
}
.forum-category-card__stat svg {
    opacity: 0.5;
}
.forum-category-card__latest {
    border-top: 1px solid rgba(26,30,46,0.06);
    padding-top: 0.85rem;
}
.forum-category-card__latest-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(26,30,46,0.4);
    display: block;
    margin-bottom: 0.25rem;
}
.forum-category-card__latest-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--deep-ocean);
    display: block;
    margin-bottom: 0.15rem;
}
.forum-category-card__latest-meta {
    font-size: 0.8rem;
    color: rgba(26,30,46,0.45);
}

/* ─── Forum Topic Row (used in category list + recent) ────── */
.forum-topics-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.forum-topic-row {
    display: grid;
    grid-template-columns: 48px 1fr auto auto;
    gap: 1rem;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(26,30,46,0.04);
    box-shadow: 0 1px 4px rgba(0,0,0,0.02);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
.forum-topic-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-color: rgba(1,186,239,0.15);
}
.forum-topic-row--sticky {
    border-left: 3px solid var(--sunset-orange);
}

/* Avatar */
.forum-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--deep-ocean), var(--bright-water));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.forum-avatar--large {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
    border-radius: 16px;
}
.forum-avatar--reply {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    border-radius: 10px;
}

.forum-topic-row__main {
    min-width: 0;
}
.forum-topic-row__title-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.forum-topic-row__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--deep-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.forum-topic-row:hover .forum-topic-row__title {
    color: var(--deep-ocean);
}
.forum-topic-row__meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(26,30,46,0.45);
    margin-top: 0.2rem;
}
.forum-topic-row__stats {
    display: flex;
    gap: 1rem;
}
.forum-topic-row__stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(26,30,46,0.5);
}
.forum-topic-row__stat svg {
    opacity: 0.4;
}
.forum-topic-row__last-reply {
    text-align: right;
    min-width: 90px;
}
.forum-topic-row__last-author {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--deep-navy);
}
.forum-topic-row__last-time {
    font-size: 0.75rem;
    color: rgba(26,30,46,0.4);
}

/* ─── Forum Badges ────────────────────────────────────────── */
.forum-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    white-space: nowrap;
}
.forum-badge--sticky {
    background: rgba(232,112,42,0.12);
    color: var(--sunset-orange);
}
.forum-badge--closed {
    background: rgba(232,72,85,0.1);
    color: #E84855;
}
.forum-badge--cat {
    background: rgba(1,186,239,0.1);
    color: var(--deep-ocean);
}

/* ─── Forum Recent Section ────────────────────────────────── */
.forum-recent {
    background: var(--mist-white);
    padding: 0 2rem var(--space-xl);
}
.forum-recent__inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* ─── Forum CTA ───────────────────────────────────────────── */
.forum-cta {
    background: var(--mist-white);
    padding: 0 2rem var(--space-xl);
}
.forum-cta__inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--deep-ocean) 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
}
.forum-cta__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.5rem;
}
.forum-cta__text {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}
.forum-cta__btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--sunset-orange);
    padding: 0.85rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}
.forum-cta__btn:hover {
    background: #d4631f;
    transform: translateY(-2px);
}

/* ─── Forum Empty State ───────────────────────────────────── */
.forum-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(26,30,46,0.5);
}
.forum-empty svg {
    margin-bottom: 1rem;
}
.forum-empty p {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.forum-empty__btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--bright-water);
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s;
}
.forum-empty__btn:hover {
    background: var(--deep-ocean);
}

/* ─── Forum Actions Bar (Category Page) ──────────────────── */
.forum-topic-list-section {
    background: var(--mist-white);
    padding: var(--space-xl) 2rem;
}
.forum-topic-list-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.forum-actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.forum-actions-bar__info {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(26,30,46,0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.forum-actions-bar__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--sunset-orange);
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}
.forum-actions-bar__btn:hover {
    background: #d4631f;
    transform: translateY(-1px);
}

/* ─── Forum Pagination ────────────────────────────────────── */
.forum-pagination {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 2rem;
}
.forum-pagination__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(26,30,46,0.04);
    color: var(--deep-navy);
}
.forum-pagination__item:hover {
    background: var(--bright-water);
    color: #fff;
}
.forum-pagination__item--current {
    background: var(--deep-ocean);
    color: #fff;
}

/* ─── Single Topic — Original Post ────────────────────────── */
.forum-topic-section {
    background: var(--mist-white);
    padding: var(--space-xl) 2rem;
}
.forum-topic-section__inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Admin Controls */
.forum-admin-controls {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.forum-admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(26,30,46,0.6);
    background: rgba(26,30,46,0.04);
    border: 1px solid rgba(26,30,46,0.08);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s;
}
.forum-admin-btn:hover {
    background: rgba(26,30,46,0.08);
    color: var(--deep-navy);
}

.forum-original-post {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(26,30,46,0.04);
    display: grid;
    grid-template-columns: 180px 1fr;
}
.forum-original-post__author {
    background: rgba(26,30,46,0.02);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    border-right: 1px solid rgba(26,30,46,0.04);
}
.forum-author-card {
    text-align: center;
}
.forum-author-card__name {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.25rem;
}
.forum-author-card__joined,
.forum-author-card__posts {
    display: block;
    font-size: 0.75rem;
    color: rgba(26,30,46,0.45);
}
.forum-original-post__body {
    padding: 1.75rem;
}
.forum-original-post__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(26,30,46,0.45);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(26,30,46,0.04);
}
.forum-original-post__views {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.forum-original-post__content {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(26,30,46,0.8);
}
.forum-original-post__content p {
    margin-bottom: 1rem;
}
.forum-original-post__content p:last-child {
    margin-bottom: 0;
}

/* ─── Replies Divider ─────────────────────────────────────── */
.forum-replies-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
}
.forum-replies-divider::before,
.forum-replies-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(26,30,46,0.1);
}
.forum-replies-divider span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(26,30,46,0.4);
    white-space: nowrap;
}

/* ─── Forum Reply ─────────────────────────────────────────── */
.forum-replies {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.forum-reply {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.03);
    border: 1px solid rgba(26,30,46,0.04);
    display: grid;
    grid-template-columns: 160px 1fr;
}
.forum-reply__author {
    background: rgba(26,30,46,0.015);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border-right: 1px solid rgba(26,30,46,0.04);
}
.forum-reply__author-info {
    text-align: center;
}
.forum-reply__author-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--deep-navy);
}
.forum-reply__post-count {
    font-size: 0.7rem;
    color: rgba(26,30,46,0.4);
}
.forum-reply__body {
    padding: 1.25rem 1.5rem;
}
.forum-reply__meta {
    font-size: 0.75rem;
    color: rgba(26,30,46,0.4);
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(26,30,46,0.04);
}
.forum-reply__content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(26,30,46,0.75);
}
.forum-reply__content p {
    margin-bottom: 0.75rem;
}
.forum-reply__content p:last-child {
    margin-bottom: 0;
}
.forum-reply__content blockquote {
    border-left: 3px solid var(--bright-water);
    padding: 0.75rem 1rem;
    margin: 0.75rem 0;
    background: rgba(1,186,239,0.04);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: rgba(26,30,46,0.6);
}
.forum-reply__quote-btn {
    display: inline-block;
    margin-top: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(26,30,46,0.4);
    background: none;
    border: 1px solid rgba(26,30,46,0.1);
    border-radius: 6px;
    padding: 0.3rem 0.65rem;
    cursor: pointer;
    transition: all 0.3s;
}
.forum-reply__quote-btn:hover {
    color: var(--deep-ocean);
    border-color: var(--bright-water);
    background: rgba(1,186,239,0.04);
}

/* ─── Reply Form ──────────────────────────────────────────── */
.forum-reply-form {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(26,30,46,0.04);
}
.forum-reply-form__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}
.forum-reply-textarea {
    min-height: 120px;
    resize: vertical;
}
.forum-topic-textarea {
    min-height: 200px;
    resize: vertical;
}
.forum-textarea-hint {
    font-size: 0.75rem;
    color: rgba(26,30,46,0.4);
    margin-top: 0.25rem;
}

/* ─── Closed / Login Notices ──────────────────────────────── */
.forum-closed-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(232,72,85,0.06);
    border: 1px solid rgba(232,72,85,0.12);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
    color: #E84855;
    font-size: 0.95rem;
    font-weight: 500;
}
.forum-login-prompt {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    background: rgba(1,186,239,0.04);
    border: 1px solid rgba(1,186,239,0.1);
    border-radius: 14px;
    font-size: 0.95rem;
    color: rgba(26,30,46,0.6);
}
.forum-login-prompt a {
    color: var(--bright-water);
    font-weight: 600;
    text-decoration: none;
}
.forum-login-prompt a:hover {
    text-decoration: underline;
}

/* ─── New Topic Form Card ─────────────────────────────────── */
.forum-new-topic-card {
    max-width: 650px;
}

/* ─── Forum Search Bar ───────────────────────────────────── */
.forum-search-section {
    background: var(--mist-white);
    padding: 2rem 2rem 0;
}
.forum-search-section__inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.forum-search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(26,30,46,0.08);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 0 1.25rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.forum-search-bar:focus-within {
    border-color: var(--bright-water);
    box-shadow: 0 4px 20px rgba(1,186,239,0.1);
}
.forum-search-bar__icon {
    flex-shrink: 0;
    color: rgba(26,30,46,0.35);
}
.forum-search-bar__input {
    flex: 1;
    border: none;
    outline: none;
    background: none;
    padding: 1rem 0.75rem;
    font-size: 0.95rem;
    color: var(--deep-navy);
    font-family: inherit;
}
.forum-search-bar__input::placeholder {
    color: rgba(26,30,46,0.35);
}
.forum-search-bar__spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(26,30,46,0.1);
    border-top-color: var(--bright-water);
    border-radius: 50%;
    animation: authSpin 0.6s linear infinite;
    display: none;
}
.forum-search-bar__spinner--active {
    display: block;
}
.forum-search-results {
    margin-top: 0.75rem;
}
.forum-search-results .forum-topics-list {
    margin-bottom: 1rem;
}
.forum-search-empty {
    text-align: center;
    padding: 2rem;
    color: rgba(26,30,46,0.5);
    font-size: 0.95rem;
}

/* ─── Forum Subscribe Button ─────────────────────────────── */
.forum-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(26,30,46,0.6);
    background: rgba(26,30,46,0.04);
    border: 1px solid rgba(26,30,46,0.1);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s;
}
.forum-subscribe-btn:hover {
    color: var(--bright-water);
    border-color: var(--bright-water);
    background: rgba(1,186,239,0.06);
}
.forum-subscribe-btn--active {
    color: var(--bright-water);
    border-color: var(--bright-water);
    background: rgba(1,186,239,0.08);
}
.forum-subscribe-btn--active:hover {
    color: rgba(26,30,46,0.6);
    border-color: rgba(26,30,46,0.1);
    background: rgba(26,30,46,0.04);
}

/* ─── Forum Topic Controls (subscribe + edit + admin) ────── */
.forum-topic-controls {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

/* ─── Forum Admin Danger Button ──────────────────────────── */
.forum-admin-btn--danger {
    color: #E84855;
    border-color: rgba(232,72,85,0.2);
}
.forum-admin-btn--danger:hover {
    background: rgba(232,72,85,0.08);
    color: #c0392b;
}

/* ─── Forum Reply Actions (edit/delete) ──────────────────── */
.forum-reply__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.forum-reply__actions {
    display: flex;
    gap: 0.5rem;
}
.forum-reply__action-btn {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    transition: all 0.3s;
}
.forum-reply__edit-btn {
    color: var(--deep-ocean);
}
.forum-reply__edit-btn:hover {
    background: rgba(1,186,239,0.08);
}
.forum-reply__delete-btn {
    color: #E84855;
}
.forum-reply__delete-btn:hover {
    background: rgba(232,72,85,0.08);
}

/* ─── Forum Reply Joined Date ────────────────────────────── */
.forum-reply__joined {
    display: block;
    font-size: 0.65rem;
    color: rgba(26,30,46,0.35);
}

/* ─── Forum Actions Bar (updated layout) ─────────────────── */
.forum-actions-bar__left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.forum-actions-bar__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ─── Forum Modal (Edit Topic/Reply) ─────────────────────── */
.forum-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,30,46,0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.forum-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    padding: 2rem;
}
.forum-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.forum-modal__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--deep-navy);
}
.forum-modal__close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background: rgba(26,30,46,0.06);
    color: rgba(26,30,46,0.5);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    line-height: 1;
}
.forum-modal__close:hover {
    background: rgba(232,72,85,0.1);
    color: #E84855;
}

/* ─── Forum Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
    .forum-hero { padding: 6rem 1.5rem 3rem; }
    .forum-stats-bar__inner { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .forum-stat-card { padding: 1rem; }
    .forum-stat-card__number { font-size: 1.5rem; }
    .forum-categories__grid { grid-template-columns: 1fr; }
    .forum-topic-row {
        grid-template-columns: 40px 1fr;
        gap: 0.75rem;
    }
    .forum-topic-row__stats,
    .forum-topic-row__last-reply {
        display: none;
    }
    .forum-original-post,
    .forum-reply {
        grid-template-columns: 1fr;
    }
    .forum-original-post__author,
    .forum-reply__author {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid rgba(26,30,46,0.04);
        padding: 1rem 1.25rem;
    }
    .forum-author-card,
    .forum-reply__author-info {
        text-align: left;
    }
    .forum-admin-controls,
    .forum-topic-controls {
        flex-wrap: wrap;
    }
    .forum-actions-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .forum-actions-bar__right {
        flex-wrap: wrap;
    }
    .forum-modal {
        padding: 1.5rem;
        border-radius: 16px;
    }
    .forum-search-bar {
        padding: 0 1rem;
    }
    .forum-reply-form { padding: 1.25rem; }
    .forum-new-topic-card { max-width: 100%; }
    .forum-cta__inner { padding: 2rem 1.5rem; }
    .forum-hero__title--topic { font-size: clamp(1.3rem, 4vw, 1.8rem); }
}


/* ═══════════════════════════════════════════════════════════════
   ALL CLUBS & ALL INSTRUCTORS LISTING PAGES
   ═══════════════════════════════════════════════════════════════ */

/* ─── Hero (~35vh) ──────────────────────────────────────────── */

.all-listing-hero {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--deep-ocean) 60%, #0d3a4f 100%);
}

.all-listing-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,30,46,0.6) 0%, rgba(11,79,108,0.4) 100%);
    z-index: 1;
}

.all-listing-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 6rem 2rem 3rem;
}

.all-listing-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 0.95;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.all-listing-hero__subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto;
}

/* ─── Listing Section (Light bg) ────────────────────────────── */

.all-listing-section {
    background: #F0F5F9;
    padding: 3rem 0 5rem;
}

/* ─── Search + Filter Bar ───────────────────────────────────── */

.all-listing-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.all-listing-search {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.all-listing-search__icon {
    position: absolute;
    left: 1.15rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(26,30,46,0.35);
    pointer-events: none;
}

.all-listing-search__input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.9rem 1.15rem 0.9rem 3rem;
    border-radius: 50px;
    border: 1.5px solid rgba(26,30,46,0.1);
    background: #fff;
    color: var(--deep-navy);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.all-listing-search__input:focus {
    border-color: var(--bright-water);
    box-shadow: 0 0 0 3px rgba(1,186,239,0.12), 0 4px 20px rgba(0,0,0,0.06);
}

.all-listing-search__input::placeholder {
    color: rgba(26,30,46,0.35);
}

/* ─── Filter Pills Row ──────────────────────────────────────── */

.all-listing-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.all-listing-pills__label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(26,30,46,0.4);
    margin-right: 0.25rem;
}

/* ─── Results Count ─────────────────────────────────────────── */

.all-listing-count {
    text-align: center;
    margin-bottom: 2rem;
}

.all-listing-count__text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(26,30,46,0.55);
}

.all-listing-count__text strong {
    font-weight: 700;
    color: var(--deep-ocean);
}

/* ─── No Results Message ────────────────────────────────────── */

.all-listing-no-results {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(26,30,46,0.4);
}

.all-listing-no-results--visible {
    display: block;
}

.all-listing-no-results svg {
    margin-bottom: 1rem;
    opacity: 0.4;
}

.all-listing-no-results__text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.all-listing-no-results__hint {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(26,30,46,0.5);
}

/* ─── Instructors 4-Column Grid ─────────────────────────────── */

.all-instructors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Instructor cards on light background — give them solid dark bg */
.all-instructors-grid .instructor-card {
    background: var(--deep-navy);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.all-instructors-grid .instructor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border-color: rgba(1,186,239,0.2);
}

/* ─── Instructor Hero Cards (image + overlay design) ─── */
.instr-hero-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.instr-hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.instr-hero-card__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.instr-hero-card:hover .instr-hero-card__image {
    transform: scale(1.08);
}
.instr-hero-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.1) 30%,
        rgba(0,0,0,0.5) 60%,
        rgba(0,0,0,0.85) 100%
    );
    z-index: 1;
}
.instr-hero-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
}
.instr-hero-card__rating {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.instr-hero-card__star {
    color: var(--sunset-orange);
    font-size: 0.9rem;
}
.instr-hero-card__content {
    position: relative;
    z-index: 2;
    padding: 1.75rem;
}
.instr-hero-card__name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
    margin-bottom: 0.3rem;
}
.instr-hero-card__location {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.75rem;
}
.instr-hero-card__bio {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.instr-hero-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.instr-hero-card__cert {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--emerald);
    background: rgba(32,191,85,0.12);
    border: 1px solid rgba(32,191,85,0.2);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
}
.instr-hero-card__link {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bright-water);
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}
.instr-hero-card__link:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .instr-hero-card { min-height: 360px; }
    .instr-hero-card__content { padding: 1.25rem; }
    .instr-hero-card__name { font-size: 1.15rem; }
}
@media (max-width: 480px) {
    .instr-hero-card { min-height: 340px; }
    .instr-hero-card__footer { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

@media (max-width: 1024px) {
    .all-instructors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .all-instructors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ─── All Listing Responsive ────────────────────────────────── */

@media (max-width: 640px) {
    .all-listing-hero__content {
        padding: 5rem 1.5rem 2.5rem;
    }
    .all-listing-section {
        padding: 2rem 0 3rem;
    }
    .all-listing-filters {
        gap: 1rem;
    }
    .all-listing-search {
        max-width: 100%;
    }
    .all-listing-pills {
        gap: 0.4rem;
    }
}


/* ═══════════════════════════════════════════════════════════════
   HONEYPOT FIELD — hidden from real users
   ═══════════════════════════════════════════════════════════════ */

.waterego-hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════════
   APPLICATION FORM (page-apply-club.php)
   ═══════════════════════════════════════════════════════════════ */

/* Application type radio cards */
.apply-type-radios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.apply-type-radio {
    cursor: pointer;
}
.apply-type-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.apply-type-radio__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    border: 2px solid rgba(26,30,46,0.1);
    border-radius: 16px;
    background: #f8fafc;
    text-align: center;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.apply-type-radio__box svg {
    color: rgba(26,30,46,0.3);
    transition: color 0.3s;
}
.apply-type-radio__label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--deep-navy);
}
.apply-type-radio__desc {
    display: block;
    font-size: 0.78rem;
    color: rgba(26,30,46,0.5);
}

.apply-type-radio input[type="radio"]:checked + .apply-type-radio__box {
    border-color: var(--bright-water);
    background: rgba(1,186,239,0.04);
    box-shadow: 0 0 0 3px rgba(1,186,239,0.12);
    transform: translateY(-2px);
}
.apply-type-radio input[type="radio"]:checked + .apply-type-radio__box svg {
    color: var(--bright-water);
}
.apply-type-radio__box:hover {
    border-color: rgba(1,186,239,0.4);
    transform: translateY(-1px);
}

/* Conditional fields */
.apply-conditional-fields {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Facilities grid */
.apply-facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.6rem;
}
.apply-facility-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    border: 1.5px solid rgba(26,30,46,0.1);
    border-radius: 10px;
    background: #f8fafc;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--deep-navy);
    transition: border-color 0.3s, background 0.3s;
}
.apply-facility-check:hover {
    border-color: rgba(1,186,239,0.3);
}
.apply-facility-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--bright-water);
    cursor: pointer;
    flex-shrink: 0;
}
.apply-facility-check input[type="checkbox"]:checked ~ .apply-facility-check__label {
    color: var(--deep-ocean);
    font-weight: 600;
}

/* Multiselect */
.apply-multiselect {
    min-height: 120px;
    background-image: none !important;
}

/* Field hint text */
.apply-field-hint {
    display: block;
    font-size: 0.75rem;
    color: rgba(26,30,46,0.4);
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 640px) {
    .apply-type-radios {
        grid-template-columns: 1fr;
    }
    .apply-facilities-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 400px) {
    .apply-facilities-grid {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════════════════════
   REPORT CONTENT BUTTON
   ═══════════════════════════════════════════════════════════════ */

.waterego-report-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(26,30,46,0.4);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    transition: color 0.3s, background 0.3s;
}
.waterego-report-btn:hover {
    color: #e74c3c;
    background: rgba(231,76,60,0.06);
}
.waterego-report-btn--reported {
    color: rgba(26,30,46,0.25);
    cursor: default;
    pointer-events: none;
}
.waterego-report-btn svg {
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   TRIP REPORTS LISTING PAGE
   ═══════════════════════════════════════════════════════════════ */

.trip-reports-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.trip-reports-count {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(26,30,46,0.5);
}

.trip-reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.trip-report-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.trip-report-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.trip-report-card__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.trip-report-card:hover .trip-report-card__image {
    transform: scale(1.06);
}
.trip-report-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.88) 100%);
    z-index: 1;
}
.trip-report-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
}
.trip-report-card__content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
}
.trip-report-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
    margin-bottom: 0.4rem;
}
.trip-report-card__location {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
}
.trip-report-card__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}
.trip-report-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.trip-report-card__author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.trip-report-card__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep-ocean), var(--bright-water));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
}
.trip-report-card__author-name {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}
.trip-report-card__link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bright-water);
    text-decoration: none;
    transition: color 0.3s;
}
.trip-report-card__link:hover {
    color: #fff;
}

.trip-reports-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(26,30,46,0.5);
}
.trip-reports-empty h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin: 1rem 0 0.5rem;
}
.trip-reports-empty .btn {
    margin-top: 1.5rem;
}

.trip-reports-pagination {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 3rem;
}
.trip-reports-pagination a,
.trip-reports-pagination span {
    display: inline-block;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}
.trip-reports-pagination a {
    background: rgba(26,30,46,0.04);
    color: var(--deep-navy);
    transition: all 0.3s;
}
.trip-reports-pagination a:hover {
    background: var(--bright-water);
    color: #fff;
}
.trip-reports-pagination span.current {
    background: var(--deep-ocean);
    color: #fff;
}

@media (max-width: 1024px) {
    .trip-reports-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .trip-reports-grid { grid-template-columns: 1fr; }
    .trip-reports-header { flex-direction: column; gap: 1rem; align-items: stretch; text-align: center; }
}
