:root {
    /* Strict Token Palette */
    --bg-page: #f7f3ec;
    --bg-surface: #ffffff;
    --bg-surface-soft: #f0e4d8;
    --bg-deep: #1f2933;
    /* Primary Dark Background */

    --text-main: #1f2933;
    --text-soft: #4b5563;
    --text-on-deep: #f9fafb;

    --accent: #356849;
    /* Forest/Aurora Green */
    --accent-soft: #d5e6dd;

    /* Theme Mappings */
    --color-bg-dark: var(--bg-deep);
    --color-text-light: var(--text-on-deep);
    --color-accent: var(--accent);
    --glass-border: rgba(249, 250, 251, 0.1);
    --glass-bg: rgba(31, 41, 51, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Source Serif 4', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent-soft);
}

.text-soft {
    color: var(--text-soft);
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-on-deep);
    border: 1px solid var(--accent-soft);
    box-shadow: 0 4px 20px rgba(53, 104, 73, 0.4);
}

.btn-primary:hover {
    background: var(--accent-soft);
    color: var(--bg-deep);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-on-deep);
    color: var(--text-on-deep);
}

.btn-outline:hover {
    background: var(--text-on-deep);
    color: var(--bg-deep);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: linear-gradient(to bottom, rgba(31, 41, 51, 0.9), transparent);
    backdrop-filter: blur(4px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Source Serif 4', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-on-deep);
    letter-spacing: -0.05em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a.is-active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-soft);
}

.mobile-menu-btn {
    display: none;
    color: var(--text-on-deep);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to right, transparent, black 20%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%);
}

.hero-content {
    width: 50%;
    padding: 4rem;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--bg-surface-soft);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

/* Sections Common */
section {
    padding: 8rem 0;
}

/* Concept Intro */
.concept {
    background-color: var(--bg-deep);
    background-image: radial-gradient(circle at 50% 50%, rgba(53, 104, 73, 0.15), transparent 70%);
}

.concept-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.concept h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-on-deep);
}

.concept p {
    font-size: 1.2rem;
    color: rgb(115 144 184 / 60%);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Popular Programs */
.programs {
    background: var(--bg-deep);
}

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

.program-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: transform 0.3s ease, background 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.program-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(53, 104, 73, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-soft);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-on-deep);
}

.program-card p {
    color: rgb(115 144 184 / 70%);
    ;
}

/* Stats & Safety */
.safety {
    background: linear-gradient(to right, var(--bg-deep) 0%, #17202a 100%);
}

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

.stats-col {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--accent-soft);
    margin-bottom: 0.5rem;
}

.stat-item p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Visual Break */
.visual-break {
    width: 100%;
    height: 60vh;
    position: relative;
    padding: 0;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-break-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-break h2 {
    font-size: 4rem;
    color: var(--text-on-deep);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

/* Testimonials */
.testimonials .grid-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--bg-surface);
    padding: 2.5rem;
    border-radius: 20px;
    color: var(--text-main);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--accent);
    opacity: 0.2;
    width: 40px;
    height: 40px;
}

.review-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer {
    font-weight: 700;
    font-family: 'Source Serif 4', serif;
    color: var(--accent);
}

/* Experience Teaser */
.premium-teaser {

    gap: 0;
    align-items: stretch;
    background: var(--bg-deep);
}

.teaser-img {
    height: 100%;
    min-height: 500px;
}

.teaser-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teaser-content {
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.teaser-content h3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.teaser-content p {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2.5rem;
}

/* CTA Common */
.cta-section {
    text-align: center;
    padding: 10rem 0;
    background: radial-gradient(circle at center, rgba(53, 104, 73, 0.2), var(--bg-deep));
}

.cta-section h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 3rem;
}

/* Footer */
footer {
    background-color: #0f141a;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--accent-soft);
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--bg-surface-soft);
    opacity: 0.7;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent-soft);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--bg-surface-soft);
}

.social-links a:hover {
    color: var(--accent);
}

.desktop-only {
    display: block;
}

.mobile {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .premium-teaser {
        grid-template-columns: 1fr;
    }

    .teaser-img {
        height: 400px;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.4;
        left: 0;
    }

    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .teaser-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    section {
        padding: 4rem 0;
    }

    .desktop-only {
        display: none;
    }

    .mobile {
        display: block;
    }
}

:root {
    /* Palette: Ice-Night-Coral (Slate/Blue/Coral) */
    --bg-page: #0f172a;
    /* Slate 900 */
    --bg-surface: #1e293b;
    /* Slate 800 */
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-strong: rgba(15, 23, 42, 0.95);

    --text-main: #f8fafc;
    /* Slate 50 */
    --text-soft: #94a3b8;
    /* Slate 400 */
    --text-inv: #0f172a;

    --accent: #fb7185;
    /* Coral 400 */
    --accent-glow: #f43f5e;
    /* Coral 500 */
    --highlight: #22d3ee;
    /* Cyan 400 */

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;

    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    --font-serif: 'Source Serif 4', serif;
    --font-sans: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-main);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

p {
    margin-bottom: 1.5em;
    color: var(--text-soft);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

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

.grid {
    display: grid;
    gap: var(--space-md);
}

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

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

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

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-center {
    text-align: center;
}

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

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

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

    h1 {
        font-size: 4.5rem;
    }
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 99px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-page);
    border: 2px solid var(--accent);
    box-shadow: 0 0 20px rgba(251, 113, 133, 0.4);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 113, 133, 0.3);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(251, 113, 133, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: background 0.3s ease;
}

.header.scrolled {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.is-active {
    opacity: 1;
    color: var(--accent);
}

.mobile-toggle {
    display: block;
    color: var(--text-main);
    cursor: pointer;
}

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

    .mobile-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin: 1rem 0;
    color: var(--text-main);
}

/* HERO Section */
.hero-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    padding: var(--space-xl) var(--space-md) var(--space-xl) 0;
}

.hero-image-wrap {
    height: 100%;
    min-height: 500px;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Catalog */
.catalog-item {
    display: flex;
    flex-direction: column;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.catalog-item:hover {
    border-color: var(--accent);
}

.cat-header {
    padding: var(--space-md);
    flex: 1;
}

.cat-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--highlight);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.cat-tags span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Included Grid */
.feature-grid .glass-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Gear Section */
.gear-pill {
    background: var(--bg-surface);
    padding: var(--space-xl) var(--space-md);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gear-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.gear-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    font-weight: 500;
}

/* Timeline */
.timeline {
    position: relative;
    padding: var(--space-lg) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
    transform: translateY(-50%);
    display: none;
}

.step-card {
    background: var(--bg-page);
    border: 1px solid var(--accent);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--highlight);
    opacity: 0.8;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

@media (min-width: 768px) {
    .timeline::before {
        display: block;
    }
}

/* Footer */
.footer {
    background: var(--bg-surface);
    padding: var(--space-xl) 0 var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

:root {
    /* STRICT COLOR TOKENS */
    --bg-page: #f7f3ec;
    --bg-surface: #ffffff;
    --bg-surface-soft: #f0e4d8;
    --bg-deep: #1f2933;

    --text-main: #1f2933;
    --text-soft: #4b5563;
    --text-on-deep: #f9fafb;
    --accent: #356849;
    --accent-soft: #d5e6dd;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --gap-md: 1.5rem;
    --gap-lg: 3rem;
    --gap-xl: 6rem;

    /* Typography */
    --font-serif: 'Source Serif 4', serif;
    --font-sans: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-outline {
    border-color: var(--text-on-deep);
    color: var(--text-on-deep);
}

.btn-outline-dark {
    border-color: var(--text-main);
    color: var(--text-main);
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-soft);
    color: var(--accent);
    margin-bottom: 1rem;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: rgba(31, 41, 51, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-on-deep);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: rgba(249, 250, 251, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--text-on-deep);
}

/* HAMBURGER (Mobile) */
.mobile-toggle {
    display: none;
    color: var(--text-on-deep);
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-color: var(--bg-deep);
    color: var(--text-on-deep);
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(249, 250, 251, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* PHILOSOPHY */
.philosophy {
    padding: var(--gap-xl) 0;
    background-color: var(--bg-surface);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
    align-items: center;
}

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

/* PACKAGES */
.packages {
    padding: var(--gap-xl) 0;
    background-color: var(--bg-page);
}

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

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

.pkg-card {
    background-color: var(--bg-surface);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--bg-surface-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.pkg-card.standard {
    border: 2px solid var(--accent);
    position: relative;
}

.pkg-card h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.pkg-desc {
    color: var(--text-soft);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pkg-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.pkg-features svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

/* PROGRAM TIMELINE */
.timeline-section {
    padding: var(--gap-xl) 0;
    background-color: var(--bg-surface-soft);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.time-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-surface);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: var(--bg-surface);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media(max-width: 600px) {
    .timeline::before {
        left: 1rem;
    }

    .time-marker {
        left: 1rem;
        transform: translate(-50%, -50%);
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 2rem;
    }

    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-content {
        width: 100%;
        margin-top: 1rem;
    }
}

/* SAFETY GRID */
.safety {
    padding: var(--gap-xl) 0;
    background-color: var(--bg-deep);
    color: var(--text-on-deep);
}

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

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

.safety-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.safety-item .icon-box {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-softer);
    flex-shrink: 0;
}

/* CTA */
.cta-section {
    background-color: var(--bg-surface);
    overflow: hidden;
}

.cta-split {
    display: flex;
    flex-direction: row;
    min-height: 400px;
}

.cta-text {
    flex: 1;
    padding: var(--gap-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-image {
    flex: 1;
    position: relative;
}

.cta-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width: 768px) {
    .cta-split {
        flex-direction: column;
    }

    .cta-image {
        height: 300px;
    }
}

/* FOOTER */
footer {
    background-color: var(--bg-deep);
    color: var(--text-on-deep);
    padding: var(--gap-xl) 0 var(--gap-lg) 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.footer-col h4 {
    color: var(--accent-soft);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(249, 250, 251, 0.6);
}

.footer-col a:hover {
    color: var(--text-on-deep);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Section Header Helper */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-header h2 {
    font-size: 2.25rem;
}

.section-header p {
    color: var(--text-soft);
    font-size: 1.1rem;
}

/* GLOBAL VARIABLES & RESET (Overriding generic tokens to match IceGuide visual spec) */
:root {
    --bg-page: #0f172a;
    /* Slate 900 - Deep Ice */
    --bg-deep: #020617;
    /* Slate 950 */
    --bg-glass: rgba(30, 41, 59, 0.6);
    --bg-glass-heavy: rgba(15, 23, 42, 0.85);

    --text-main: #f8fafc;
    /* Slate 50 */
    --text-soft: #cbd5e1;
    /* Slate 300 */
    --text-accent: #22d3ee;
    /* Cyan */

    --color-coral: #fb7185;
    /* Coral */
    --color-cyan: #22d3ee;
    /* Neon Cyan */

    --font-serif: "Source Serif 4", "Times New Roman", serif;
    --font-sans: "Inter", system-ui, -apple-system, sans-serif;

    --spacing-unit: 1rem;
    --container-width: 1200px;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    --backdrop-blur: blur(12px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* UTILITIES */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.text-coral {
    color: var(--color-coral);
}

.text-cyan {
    color: var(--color-cyan);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-coral);
    color: #fff;
    box-shadow: 0 4px 15px rgba(251, 113, 133, 0.4);
}

.btn-primary:hover {
    background: #f43f5e;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--text-main);
    color: var(--text-main);
    background: transparent;
}

.btn-outline:hover {
    background: #fff;
    color: var(--bg-page);
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--color-cyan);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.is-active {
    opacity: 1;
    color: var(--color-cyan);
}

/* HERO SECTION */
.hero-premium {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 6rem;
    background-color: var(--bg-deep);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-deep) 10%, transparent 60%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-tag {
    display: inline-block;
    color: var(--color-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    border: 1px solid var(--color-cyan);
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
}

/* EXPERIENCE SECTION (Alternating) */
.experience-section {
    padding: 8rem 0;
    background: var(--bg-page);
}

.experience-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}

.experience-row:last-child {
    margin-bottom: 0;
}

.experience-row:nth-child(even) {
    flex-direction: row-reverse;
}

.exp-text {
    flex: 1;
}

.exp-image {
    flex: 1;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.exp-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.exp-image:hover img {
    transform: scale(1.05);
}

.exp-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.exp-text p {
    font-size: 1.125rem;
    color: var(--text-soft);
    margin-bottom: 2rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-surface);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.9rem;
    color: var(--color-cyan);
    border: 1px solid rgba(34, 211, 238, 0.1);
}

/* CATCH & RELEASE */
.catch-release {
    padding: 6rem 0;
    background: var(--bg-deep);
    position: relative;
}

.cr-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cr-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-coral);
}

.cr-desc {
    font-size: 1.25rem;
    color: var(--text-soft);
    margin-bottom: 3rem;
}

.cr-image {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-xl);
    margin-top: 2rem;
    opacity: 0.8;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* GALLERY MASONRY */
.gallery-section {
    padding: 8rem 0;
    background: var(--bg-page);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 0.9rem;
}

/* CUSTOMIZATION EXTRAS */
.custom-section {
    padding: 6rem 0;
    background: var(--bg-surface);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.custom-item {
    background: rgba(15, 23, 42, 0.4);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.custom-icon {
    color: var(--color-cyan);
    width: 48px;
    height: 48px;
}

/* CTA SECTION */
.cta-section {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.9)),
        url('https://images.unsplash.com/photo-1518176258769-f227c798150e?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* FOOTER */
.site-footer {
    background: var(--bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    display: block;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-family: var(--font-sans);
    margin-bottom: 1.5rem;
    color: var(--color-cyan);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-soft);
    font-size: 0.85rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-soft);
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--color-coral);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .experience-row,
    .experience-row:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }

    .exp-image {
        height: 300px;
        width: 100%;
    }

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

    .gallery-item.large {
        grid-column: span 1;
    }
}

/* CSS Variables - Adapted for Ice/Night Theme */
:root {
    --bg-page: #0f172a;
    /* Slate 900 */
    --bg-surface: rgba(30, 41, 59, 0.7);
    /* Slate 800 glassy */
    --bg-surface-soft: rgba(51, 65, 85, 0.5);
    /* Slate 700 glassy */
    --bg-deep: #020617;
    /* Slate 950 */

    --text-main: #f1f5f9;
    /* Slate 100 */
    --text-soft: #94a3b8;
    /* Slate 400 */
    --text-on-deep: #ffffff;

    --accent: #fb7185;
    /* Coral */
    --accent-glow: rgba(251, 113, 133, 0.4);
    --secondary: #22d3ee;
    /* Cyan */

    --idx-glass: 10px;
}

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

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-soft);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* Typography Override */
.serif-heading {
    font-family: 'Times New Roman', serif;
    letter-spacing: -0.02em;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 15px var(--accent-glow);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--accent-glow);
}

.btn-outline {
    border: 2px solid var(--text-main);
    color: var(--text-main);
    background: transparent;
}

.btn-outline:hover {
    background: white;
    color: black;
}

.section-spacer {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

/* Header Global */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9), transparent);
    backdrop-filter: blur(5px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: serif;
    color: var(--text-on-deep);
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
    color: var(--text-main);
}

.nav-links a:hover,
.nav-links a.is-active {
    opacity: 1;
    color: var(--accent);
}

.mobile-menu-btn {
    display: block;
    color: white;
    cursor: pointer;
}

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

    .mobile-menu-btn {
        display: none;
    }
   
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(15px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu a {
    font-size: 1.5rem;
    font-family: serif;
    color: var(--text-main);
}

/* Hero Pricing */
.hero-pricing {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background: linear-gradient(rgba(15, 23, 42, 0.8), var(--bg-page)), url('https://images.pexels.com/photos/3408744/pexels-photo-3408744.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

/* Pricing Table */
.pricing-section {
    background-color: var(--bg-page);
}

.pricing-wrapper {
    overflow-x: auto;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-surface);
    backdrop-filter: blur(10px);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

th,
td {
    text-align: left;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background-color: rgba(0, 0, 0, 0.2);
    font-family: serif;
    font-size: 1.25rem;
    color: var(--accent);
}

td {
    color: var(--text-soft);
}

tr:last-child td {
    border-bottom: none;
}

.price-val {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
    display: block;
    margin-bottom: 0.25rem;
}

.tag-best {
    color: var(--secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Add-ons */
.addon-card {
    background: var(--bg-surface-soft);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}

.addon-card:hover {
    border-color: var(--accent);
}

.addon-price {
    font-weight: bold;
    color: var(--secondary);
    font-size: 1.2rem;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.faq-item summary {
    padding: 1rem 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:after {
    content: '+';
    color: var(--accent);
    font-size: 1.5rem;
}

.faq-item[open] summary:after {
    content: '-';
}

.faq-item p {
    padding-bottom: 1rem;
    padding-top: 0.5rem;
    color: var(--text-soft);
}

/* Booking CTA */
.booking-cta {
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-deep));
    border-radius: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.action-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Contacts */
.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: var(--bg-surface);
    border-radius: 1rem;
    overflow: hidden;
}

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

.contacts-info {
    padding: 3rem;
}

.map-wrapper {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Footer Global */
footer {
    background-color: var(--bg-deep);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media(min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

   
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-soft);
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-soft);
}

.social-icons a:hover {
    color: var(--secondary);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
}

.teaser-content h3 {
    font-size: 2rem;
}
@media (max-width: 600px) {
    .cta-section h2 {
        font-size: 2rem;

    }
    .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
}
.no-scroll { overflow: hidden; }

/* =========================================
   IceGuide Pro – extra styles for JS features
   (append to the end of styles.css)
========================================= */

/* Scroll lock */
html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  height: 100%;
}

/* Make sure header overlay menu stays on top */
header {
  z-index: 1000;
}

/* Better click target for burger button */
.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Prevent the <a href="#"> burger from underlining / jumping */
.mobile-menu-btn:focus {
  outline: none;
}

/* ---------------------------
   Mobile menu overlay (created by JS)
--------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999; /* above header */
  background: rgba(2, 6, 23, 0.92); /* deep glass */
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;

  /* hidden state */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* open/active states - JS uses .open and/or .active */
.mobile-menu.open,
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* inner nav */
.mobile-menu-inner {
  width: min(520px, 92vw);
  display: flex;
  flex-direction: column!important;
  align-items: center;
  gap: 1rem;
  padding: 5.5rem 1.25rem 2rem;
}

/* links */
.mobile-menu-inner a {
  width: 100%;
  text-align: center;
  font-family: 'Source Serif 4', serif;
  font-size: 1.8rem;
  line-height: 1.1;
  padding: 1rem 1.25rem;
  border-radius: 18px;

  color: var(--text-main, #f8fafc);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.mobile-menu-inner a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(251, 113, 133, 0.35); /* coral glow */
}

/* Close button created by JS */
.mobile-menu-close {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Make feather icons consistent sizing in buttons */
.mobile-menu-btn svg,
.mobile-menu-close svg {
  width: 22px;
  height: 22px;
}

/* Improve tap responsiveness */
.mobile-menu-btn,
.mobile-menu-close,
.mobile-menu-inner a {
  -webkit-tap-highlight-color: transparent;
}

/* ---------------------------
   Safety stats: align & spacing polish
--------------------------- */
.safety .stats-col {
  gap: 2.25rem;
}

.safety .stat-item h3 {
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ---------------------------
   Fixed header spacing helper
   (prevents hero text from hiding under header on anchors)
--------------------------- */
#top {
  scroll-margin-top: 90px;
}
section {
  scroll-margin-top: 90px;
}

/* ---------------------------
   Optional: motion reduced
--------------------------- */
@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu-inner a {
    transition: none !important;
  }

}


/* ==========================
   FIX: Mobile menu layout
   (append at the END of styles.css)
========================== */

/* Overlay */
.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(18px);

  /* hidden by default */
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  transform: translateY(-10px);
}

/* Open state (JS adds .open and/or .active) */
.mobile-menu.open,
.mobile-menu.active{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Inner container created by JS: <nav class="mobile-menu-inner"> ... </nav> */
.mobile-menu .mobile-menu-inner{
  display: flex !important;
  flex-direction: column !important;   /* <- главное: вертикально */
  align-items: center !important;
  justify-content: center !important;

  width: min(520px, 92vw) !important;
  gap: 14px !important;
  padding: 84px 18px 24px !important;
}

/* Links inside overlay */
.mobile-menu .mobile-menu-inner a{
  display: block !important;           /* <- чтобы не “в одну строчку” */
  width: 100% !important;
  text-align: center !important;

  font-family: "Source Serif 4", serif;
  font-size: 1.8rem;
  line-height: 1.1;

  padding: 16px 18px;
  border-radius: 18px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #f8fafc;

  white-space: normal !important;
}

.mobile-menu .mobile-menu-inner a:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(251,113,133,0.35);
  transform: translateY(-2px);
}

/* Close button created by JS */
.mobile-menu .mobile-menu-close{
  position: absolute;
  top: 22px;
  right: 22px;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
}

.mobile-menu .mobile-menu-close:hover{
  background: rgba(255,255,255,0.10);
}

/* Burger button (твоя кнопка из хедера) */
header .mobile-menu-btn{
    display: none !important;;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  cursor: pointer;
}

header .mobile-menu-btn:hover{
  background: rgba(255,255,255,0.10);
}

/* Feather icon sizing inside buttons */
header .mobile-menu-btn svg,
.mobile-menu .mobile-menu-close svg{
  width: 22px;
  height: 22px;
}

/* Scroll lock when menu open */
html.no-scroll,
body.no-scroll{
  overflow: hidden !important;
  height: 100%;
}
/* ==========================
   Contacts section: form instead of map
========================== */

.contacts-wrapper{
  background: rgba(30, 41, 59, 0.35); /* glass */
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  overflow: hidden;
}

.contacts-info{
  padding: 3rem;
}

.form-wrapper{
  padding: 3rem;
  background: rgba(2, 6, 23, 0.55); /* deep glass */
  border-left: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.form-title{
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-subtitle{
  margin-bottom: 2rem;
  color: var(--text-soft);
}

/* Form base */
.booking-form{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field label{
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea{
  width: 100%;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder{
  color: rgba(203, 213, 225, 0.7);
}

/* Focus */
.form-field input:focus,
.form-field textarea:focus{
  border-color: rgba(34, 211, 238, 0.75); /* cyan highlight */
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.18);
  background: rgba(255,255,255,0.08);
}

/* Privacy row */
.privacy-row{
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  user-select: none;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.35;
}

.privacy-row input{
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.privacy-row a{
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-row a:hover{
  opacity: 0.9;
}

/* Submit button */
.form-submit{
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 1.4rem;
  border-radius: 999px;
}

/* small hint */
.form-hint{
  margin-top: -0.25rem;
  font-size: 0.85rem;
  color: rgba(203, 213, 225, 0.7);
}

/* Responsive */
@media (max-width: 768px){
  .contacts-info{
    padding: 2rem;
  }

  .form-wrapper{
    padding: 2rem;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .form-grid{
    grid-template-columns: 1fr;
  }
  .gear-pill h2{
    font-size: 1.5rem !important;
  }
}


/* Optional: hide overlay on desktop */
@media (min-width: 992px){
  .mobile-menu{
    display: none;
  }

}

@media (max-width: 991px) {
  header .mobile-menu-btn{
    display: block !important;
  }
}