/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --soft-black: #1a1a1a;
    --charcoal: #2d2d2d;
    --medium-gray: #666666;
    --light-gray: #cccccc;
    --off-white: #f5f5f5;
    --pure-white: #ffffff;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--soft-black);
    overflow-x: hidden;
    background: var(--pure-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 1000;
    border-bottom: 1px solid var(--light-gray);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-black);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--soft-black);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--medium-gray);
}

.btn-book {
    background: var(--primary-black);
    color: var(--pure-white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-book:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("mountain.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pure-white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1.2rem 3rem;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--pure-white);
    color: var(--primary-black);
    border: 2px solid var(--pure-white);
    text-decoration: none;        /* NEW */
    display: inline-block;         /* NEW */
}

.btn-primary:hover {
    background: transparent;
    color: var(--pure-white);
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.btn-secondary:hover {
    background: var(--pure-white);
    color: var(--primary-black);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--pure-white);
    text-align: center;
    z-index: 2;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid var(--pure-white);
    border-radius: 20px;
    margin: 1rem auto 0;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--pure-white);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* ===========================
   WELCOME SECTION
   =========================== */
.welcome-section {
    padding: 8rem 0;
    background: var(--pure-white);
}

.section-label {
    color: var(--medium-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--primary-black);
    margin: 1.5rem 0;
    font-weight: 400;
    letter-spacing: 1px;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.welcome-text {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
    font-weight: 300;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature-item {
    text-align: left;
    padding: 2rem 0;
    border-top: 2px solid var(--primary-black);
}

.feature-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 300;
}

.feature-item h3 {
    font-size: 1.1rem;
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.feature-item p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
}

.welcome-gallery {
    display: grid;
    gap: 1.5rem;
}

.gallery-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(0%);
    transition: filter 0.3s;
}

.gallery-main img:hover {
    filter: grayscale(20%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(0%);
    transition: filter 0.3s;
}

.gallery-grid img:hover {
    filter: grayscale(20%);
}

/* ===========================
   FOUNDERS SECTION
   =========================== */
.founders-section {
    padding: 8rem 0;
    background: var(--off-white);
}

.founders-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.founders-image-wrapper {
    position: relative;
}

.wood-frame {
    position: relative;
    padding: 3rem;
    background: 
        repeating-linear-gradient(
            90deg,
            #6B4423 0px,
            #7D5A3F 2px,
            #8B6F47 4px,
            #7D5A3F 6px,
            #6B4423 8px
        ),
        linear-gradient(135deg, #5C3A1E 0%, #8B6F47 50%, #5C3A1E 100%);
    box-shadow: 
        /* Outer depth */
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.3),
        /* Inner carved edge shadows */
        inset 0 0 0 1px rgba(0, 0, 0, 0.4),
        inset 3px 3px 8px rgba(0, 0, 0, 0.4),
        inset -3px -3px 8px rgba(139, 111, 71, 0.2),
        /* Highlight on top edge */
        inset 0 1px 0 rgba(200, 170, 130, 0.3);
    border: 8px solid #4A3018;
    border-radius: 2px;
}

/* Inner beveled edge */
.wood-frame::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    background: linear-gradient(135deg, 
        rgba(90, 60, 30, 0.6) 0%, 
        transparent 50%, 
        rgba(139, 111, 71, 0.3) 100%
    );
    border: 2px solid #3D2612;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        inset 0 1px 2px rgba(200, 170, 130, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* Wood grain texture overlay */
.wood-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(0, 0, 0, 0.04) 3px,
            rgba(0, 0, 0, 0.04) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(0, 0, 0, 0.03) 40px,
            rgba(0, 0, 0, 0.03) 42px,
            transparent 42px,
            transparent 80px,
            rgba(90, 60, 30, 0.05) 80px,
            rgba(90, 60, 30, 0.05) 85px
        );
    pointer-events: none;
    border-radius: 2px;
    opacity: 0.8;
}

.wood-frame img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 0 1px rgba(0, 0, 0, 0.2);
    filter: sepia(0.08) contrast(1.03) brightness(0.98);
}

.founders-text {
    padding: 2rem 0;
}

.founders-intro {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
}

.founders-story {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
    font-weight: 300;
}

.founders-story strong {
    color: var(--primary-black);
    font-weight: 500;
}

.founders-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--soft-black);
    margin: 3rem 0 2rem;
    padding-left: 2rem;
    border-left: 3px solid var(--primary-black);
    line-height: 1.8;
    font-weight: 300;
}

.founders-names {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.founders-names span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--primary-black);
    font-weight: 400;
    letter-spacing: 1px;
}

.founders-title {
    font-size: 0.85rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===========================
   CONDITIONS SECTION
   =========================== */
.conditions-section {
    padding: 8rem 0;
    background: var(--soft-black);
    color: var(--pure-white);
}

.conditions-header {
    text-align: center;
    margin-bottom: 4rem;
}

.conditions-header .section-title {
    color: var(--pure-white);
}

.conditions-updated {
    color: var(--light-gray);
    font-size: 0.85rem;
    margin-top: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.condition-card {
    background: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    transition: all 0.3s;
}

.condition-card:hover {
    background: var(--soft-black);
    border-color: var(--pure-white);
    transform: translateY(-5px);
}

.card-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.card-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.temp-display {
    text-align: center;
    margin-bottom: 2.5rem;
}

.temp-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
}

.temp-label {
    display: block;
    color: var(--light-gray);
    font-size: 0.85rem;
    margin-top: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.weather-details,
.lift-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-row,
.lift-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label,
.lift-name {
    color: var(--light-gray);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.detail-value {
    font-weight: 400;
}

.snow-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--light-gray);
    margin-top: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.snow-quality-bar {
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.quality-indicator {
    height: 100%;
    transition: width 0.5s;
}

.quality-indicator.excellent {
    width: 95%;
    background: var(--pure-white);
}

.quality-text {
    color: var(--light-gray);
    font-size: 0.9rem;
    text-align: center;
}

.lift-overview {
    text-align: center;
    margin-bottom: 2.5rem;
}

.lifts-open {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
}

.lifts-label {
    display: block;
    color: var(--light-gray);
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.lift-status {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.status-open {
    background: var(--pure-white);
    color: var(--primary-black);
}

.status-closed {
    background: transparent;
    color: var(--light-gray);
    border: 1px solid var(--light-gray);
}

.btn-view-all {
    width: 100%;
    margin-top: 2rem;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--pure-white);
    color: var(--pure-white);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-view-all:hover {
    background: var(--pure-white);
    color: var(--primary-black);
}

.btn-view {
    width: 100%;
    
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--pure-white);
    color: var(--pure-white);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 80px;
}

.btn-view:hover {
    background: var(--pure-white);
    color: var(--primary-black);
}


/* ===========================
   PAGE HEADER (For Sub-pages)
   =========================== */
.page-header {
    height: 50vh;
    min-height: 400px;
    background: var(--soft-black);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('herohome.jpeg');
    background-size: cover;
    background-position: center;
    margin-top: 90px;
}

/* HERO SPECIFICO PER ACCOMMODATIONS */
.page-header.accommodations-hero {
    background-image: url('accommodations/heroaccomondations.png');
}

/* HERO SPECIFICO PER AMENITIES */
.page-header.amenities-hero {
    background-image: url('Amenities/heroamenities.png');
}

/* HERO SPECIFICO PER SKIING */
.page-header.skiing-hero {
    background-image: url('Skiing/skiing.jpg');
}

/* HERO SPECIFICO PER MOUNTAINS */
.page-header.plan-hero {
    background-image: url('Mountain/heromountain.jpg');
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pure-white);
}

.page-header-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-header-content p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ===========================
   ACCOMMODATIONS PAGE
   =========================== */
.accommodations-section {
    padding: 8rem 0;
    background: var(--off-white);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-description {
    color: var(--charcoal);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-top: 1.5rem;
    font-weight: 300;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.room-card {
    background: var(--pure-white);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--light-gray);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.room-card.featured {
    border: 2px solid var(--primary-black);
}

.room-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-black);
    color: var(--pure-white);
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.room-badge.popular {
    background: var(--charcoal);
}

.room-badge.luxury {
    background: var(--soft-black);
}

.room-content {
    padding: 2.5rem;
}

.room-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.room-description {
    color: var(--charcoal);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

.room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    color: var(--medium-gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
}

.room-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-black);
}

.price-note {
    color: var(--medium-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-room {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-black);
    color: var(--pure-white);
    border: 2px solid var(--primary-black);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-room:hover {
    background: transparent;
    color: var(--primary-black);
}

.btn-room.primary {
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-room.primary:hover {
    background: transparent;
    color: var(--charcoal);
}


/* ===========================
   AMENITIES PAGE
   =========================== */
.amenities-intro-section {
    padding: 6rem 0;
    background: var(--pure-white);
}

/* Amenity Content Grid (alternating layouts) */
.spa-section,
.restaurant-section,
.rental-section {
    padding: 6rem 0;
}

.spa-section {
    background: var(--off-white);
}

.restaurant-section {
    background: var(--pure-white);
}

.rental-section {
    background: var(--off-white);
}

/* Spa Introduction */
.spa-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
}

/* Spa Facilities Section */
.spa-facilities {
    margin-bottom: 6rem;
}

.facility-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--primary-black);
}

.facility-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary-black);
    font-weight: 400;
    letter-spacing: 1px;
}

.facility-hours {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.facilities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.facilities-list {
    list-style: none;
}

.facilities-list li {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.facilities-list li:last-child {
    border-bottom: none;
}

.facilities-list li strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.facilities-list li p {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

.facilities-gallery {
    display: grid;
    gap: 1.5rem;
}

.facility-image-large {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.facility-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.facility-image-large:hover img {
    transform: scale(1.05);
}

.facility-images-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.facility-images-small img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid var(--light-gray);
    transition: transform 0.3s;
}

.facility-images-small img:hover {
    transform: scale(1.05);
}

/* Wellness Treatments Section */
.wellness-treatments {
    background: var(--pure-white);
    padding: 4rem;
    border: 1px solid var(--light-gray);
}

.wellness-treatments h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.wellness-intro {
    color: var(--charcoal);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.treatments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.treatment-category h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.treatment-list {
    list-style: none;
}

.treatment-list li {
    color: var(--charcoal);
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    font-weight: 300;
    font-size: 0.95rem;
}

.treatment-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-weight: 700;
}

.booking-note {
    color: var(--charcoal);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.booking-note .info-label {
    display: block;
    font-weight: 500;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.amenity-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.amenity-content-grid.reverse {
    direction: ltr;
}

.amenity-content-grid.reverse .amenity-details {
    order: 1;
}

.amenity-content-grid.reverse .amenity-image {
    order: 2;
}

.amenity-image {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.amenity-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s, filter 0.3s;
}

.amenity-image:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.amenity-label {
    color: var(--medium-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 1rem;
}

.amenity-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--primary-black);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.amenity-description {
    color: var(--charcoal);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    font-weight: 300;
}

.amenity-features-list {
    margin-bottom: 3rem;
}

.amenity-features-list h3 {
    font-size: 1.1rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.amenity-features-list ul {
    list-style: none;
}

.amenity-features-list ul li {
    color: var(--charcoal);
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    font-weight: 300;
}

.amenity-features-list ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-weight: 700;
}

.amenity-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.02);
    border-left: 3px solid var(--primary-black);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    color: var(--medium-gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.info-value {
    color: var(--primary-black);
    font-size: 1rem;
    font-weight: 400;
}

.menu-booking {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.02);
    border-left: 3px solid var(--primary-black);
}

/* Additional Amenities Grid */
.additional-amenities-section {
    padding: 8rem 0;
    background: var(--pure-white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.amenity-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    transition: all 0.3s;
}

.amenity-item:hover {
    background: var(--pure-white);
    border-color: var(--primary-black);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.amenity-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 400;
}

.amenity-item p {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ===========================
   SKIING PAGE
   =========================== */

/* Ski Facilities Map Section */
.ski-facilities-section {
    padding: 6rem 0;
    background: var(--pure-white);
}

.facilities-map {
    margin-top: 4rem;
}

.map-container {
    position: relative;
    margin-bottom: 3rem;
}

.map-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 1px solid var(--light-gray);
}

.map-legend {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border: 1px solid var(--light-gray);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-legend h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 400;
}

.map-legend ul {
    list-style: none;
}

.map-legend li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.legend-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.legend-marker.blue { background: #4A90E2; }
.legend-marker.red { background: #E24A4A; }
.legend-marker.green { background: #4AE290; }

.facilities-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.facility-card {
    background: var(--off-white);
    padding: 2.5rem;
    border: 1px solid var(--light-gray);
    transition: all 0.3s;
}

.facility-card:hover {
    background: var(--pure-white);
    border-color: var(--primary-black);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.facility-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.facility-distance {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.facility-stats {
    list-style: none;
}

.facility-stats li {
    color: var(--charcoal);
    padding: 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 300;
}

.facility-stats li strong {
    color: var(--primary-black);
    font-weight: 500;
}

.facilities-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
}

.facilities-cta p {
    color: var(--charcoal);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Equipment Sections */
.skiing-intro-section {
    padding: 6rem 0;
    background: var(--pure-white);
}

.equipment-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.equipment-section.snowboard-section {
    background: var(--pure-white);
}

.equipment-section.crosscountry-section {
    background: var(--off-white);
}

.equipment-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.equipment-intro {
    color: var(--charcoal);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 1.5rem;
    font-weight: 300;
}

.equipment-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.equipment-package {
    background: var(--pure-white);
    padding: 3rem;
    border: 1px solid var(--light-gray);
    position: relative;
    transition: all 0.3s;
}

.equipment-package:hover {
    border-color: var(--primary-black);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.equipment-package.featured {
    border: 2px solid var(--primary-black);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-black);
    color: var(--pure-white);
    padding: 0.4rem 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.equipment-package h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-black);
    margin-bottom: 2rem;
    font-weight: 400;
}

.package-pricing {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.price-option {
    flex: 1;
    text-align: center;
}

.price-option .price {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary-black);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.price-option .period {
    display: block;
    color: var(--medium-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-includes h4 {
    font-size: 1rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.package-includes ul {
    list-style: none;
}

.package-includes ul li {
    color: var(--charcoal);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 300;
    padding-left: 1.2rem;
    position: relative;
}

.package-includes ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-weight: 700;
}

/* Simple Equipment Packages (Cross-Country) */
.equipment-packages-simple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.equipment-package-simple {
    background: var(--pure-white);
    padding: 3rem;
    border: 1px solid var(--light-gray);
}

.equipment-package-simple h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-black);
    margin-bottom: 2rem;
    font-weight: 400;
}

.equipment-package-simple ul {
    list-style: none;
}

.equipment-package-simple ul li {
    color: var(--charcoal);
    padding: 0.75rem 0;
    font-size: 0.95rem;
    font-weight: 300;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--light-gray);
}

.equipment-package-simple ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-weight: 700;
}


.crosscountry-section .equipment-packages {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.crosscountry-section .equipment-package {
    flex: 0 1 400px; /* Fixed width for consistency */
}

/* Individual Items Section */
.individual-items-section {
    padding: 6rem 0;
    background: var(--pure-white);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.item-card {
    background: var(--off-white);
    padding: 2.5rem;
    border: 1px solid var(--light-gray);
}

.item-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
}

.item-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.item-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.item-name {
    color: var(--charcoal);
    font-size: 0.95rem;
    font-weight: 300;
}

.item-price {
    color: var(--primary-black);
    font-weight: 500;
    font-size: 1rem;
}

.storage-note2 {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.02);
    border-left: 3px solid var(--primary-black);
    margin: 80px;
}

/* Shuttle Service Section */
.shuttle-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
}

.service-content-grid.reverse {
    direction: ltr;
}

.service-content-grid.reverse .service-details {
    order: 2;
}

.service-content-grid.reverse .service-image {
    order: 1;
}

.service-image {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.service-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.service-description {
    color: var(--charcoal);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    font-weight: 300;
}

.shuttle-routes {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.route-card {
    background: var(--pure-white);
    padding: 2.5rem;
    border: 1px solid var(--light-gray);
}

.route-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.route-duration {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.route-schedule h4 {
    font-size: 0.95rem;
    color: var(--primary-black);
    margin: 1.5rem 0 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.schedule-times {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.schedule-times span {
    background: var(--off-white);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--charcoal);
    border: 1px solid var(--light-gray);
}

/* Instructors Section */
.instructors-section {
    padding: 6rem 0;
    background: var(--pure-white);
}

.instructor-options {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.instructor-package {
    background: var(--off-white);
    padding: 3rem;
    border: 1px solid var(--light-gray);
}

.instructor-package h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-black);
    margin-bottom: 2rem;
    font-weight: 400;
}

.instructor-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-tier {
    text-align: center;
    padding: 1.5rem;
    background: var(--pure-white);
    border: 1px solid var(--light-gray);
}

.price-tier .duration {
    display: block;
    color: var(--medium-gray);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-tier .price {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary-black);
    font-weight: 400;
}

.instructor-features {
    margin-bottom: 3rem;
}

.instructor-features h3 {
    font-size: 1.1rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.instructor-features ul {
    list-style: none;
}

.instructor-features ul li {
    color: var(--charcoal);
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    font-weight: 300;
}

.instructor-features ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-weight: 700;
}

.instructor-booking {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.02);
    border-left: 3px solid var(--primary-black);
}

/* Shop Section */
.shop-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.shop-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
}

.shop-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.shop-category {
    background: var(--pure-white);
    padding: 2.5rem;
    border: 1px solid var(--light-gray);
}

.shop-category h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.shop-category ul {
    list-style: none;
}

.shop-category ul li {
    color: var(--charcoal);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 300;
    padding-left: 1.2rem;
    position: relative;
}

.shop-category ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-weight: 700;
}

.shop-gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.shop-image-main {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.shop-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-hours {
    background: var(--pure-white);
    padding: 2.5rem;
    border: 1px solid var(--light-gray);
}

.shop-hours h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.shop-hours p {
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    font-weight: 300;
    line-height: 1.8;
}

.shop-hours strong {
    color: var(--primary-black);
    font-weight: 500;
}

/* Storage Section */
.storage-section {
    padding: 6rem 0;
    background: var(--pure-white);
}

.storage-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: center;
}

.storage-description {
    color: var(--charcoal);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    font-weight: 300;
}

.storage-features {
    margin-bottom: 3rem;
}

.storage-features h3 {
    font-size: 1.1rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.storage-features ul {
    list-style: none;
}

.storage-features ul li {
    color: var(--charcoal);
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    font-weight: 300;
}

.storage-features ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-weight: 700;
}

.storage-note {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.02);
    border-left: 3px solid var(--primary-black);
}

.storage-note p {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.8;
}

.storage-note strong {
    color: var(--primary-black);
    font-weight: 500;
}

.storage-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.storage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mountains Landing Page */

:root {
    --primary-black: #000000;
    --soft-black: #1a1a1a;
    --charcoal: #2d2d2d;
    --medium-gray: #666666;
    --light-gray: #cccccc;
    --off-white: #f5f5f5;
    --pure-white: #ffffff;
    
    /* Trail colors */
    --green-trail: #4caf50;
    --blue-trail: #2196f3;
    --red-trail: #f44336;
    --black-trail: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--pure-white);
    color: var(--soft-black);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 1000;
    border-bottom: 1px solid var(--light-gray);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-black);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--soft-black);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--medium-gray);
}

.btn-book {
    background: var(--primary-black);
    color: var(--pure-white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-book:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
}


/* Page Header (Hero) */
.page-header {
    height: 50vh;
    min-height: 400px;
    background: var(--soft-black);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('mountain-hero.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 90px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pure-white);
}

.page-header-content .section-label {
    color: var(--light-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
}

.page-header-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-header-content p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Mountains Section */
.mountains-section {
    padding: 8rem 0;
    background: var(--pure-white);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.section-label {
    color: var(--medium-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--primary-black);
    margin: 1.5rem 0;
    font-weight: 400;
    letter-spacing: 1px;
}

.section-description {
    color: var(--charcoal);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-top: 1.5rem;
    font-weight: 300;
}

/* Mountain Card */
.mountain-card {
    max-width: 1400px;
    margin: 0 auto 8rem;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    overflow: hidden;
}

.mountain-card:last-child {
    margin-bottom: 0;
}

.mountain-header {
    background: var(--primary-black);
    color: var(--pure-white);
    padding: 4rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mountain-title-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.mountain-subtitle {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mountain-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
    font-weight: 300;
}

.mountain-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* Trail Map */
.trail-map-section {
    padding: 4rem;
    background: var(--pure-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--medium-gray);
    font-weight: 500;
    margin-bottom: 2rem;
}

.trail-map {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    padding: 2rem;
    position: relative;
    aspect-ratio: 4/3;
}

/* SVG Map Styles */
.ski-map {
    width: 100%;
    height: 100%;
}

.mountain-shape {
    fill: var(--off-white);
    stroke: var(--light-gray);
    stroke-width: 2;
}

.lift-line {
    stroke: var(--primary-black);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    fill: none;
}

.trail {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
}

.trail.green { stroke: var(--green-trail); }
.trail.blue { stroke: var(--blue-trail); }
.trail.red { stroke: var(--red-trail); }
.trail.black { stroke: var(--black-trail); }

.facility {
    fill: var(--primary-black);
}

.map-text {
    fill: var(--soft-black);
    font-size: 12px;
    font-weight: 600;
}

/* Mountain Info */
.mountain-info {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: var(--off-white);
}

.info-block h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.info-block p {
    color: var(--charcoal);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 1.05rem;
}

.difficulty-indicator {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.difficulty-bar {
    flex: 1;
    height: 6px;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.difficulty-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: currentColor;
    width: var(--fill);
}

.difficulty-bar.green { color: var(--green-trail); }
.difficulty-bar.blue { color: var(--blue-trail); }
.difficulty-bar.red { color: var(--red-trail); }
.difficulty-bar.black { color: var(--black-trail); }

.difficulty-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.difficulty-labels span {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.difficulty-labels .green { color: var(--green-trail); }
.difficulty-labels .blue { color: var(--blue-trail); }
.difficulty-labels .red { color: var(--red-trail); }
.difficulty-labels .black { color: var(--black-trail); }

/* Lifts List */
.lifts-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.lifts-list li {
    padding: 0.75rem 1rem;
    background: var(--pure-white);
    border: 1px solid var(--light-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 300;
    color: var(--charcoal);
}

.lifts-list li::before {
    content: '🚡';
    font-size: 1.1rem;
}

/* Restaurants List */
.restaurants-list {
    display: grid;
    gap: 1.5rem;
}

.restaurant-item {
    padding: 1.5rem;
    background: var(--pure-white);
    border: 1px solid var(--light-gray);
    border-left: 3px solid var(--primary-black);
}

.restaurant-item h5 {
    font-size: 1.1rem;
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.restaurant-item p {
    font-size: 0.9rem;
    color: var(--charcoal);
    margin: 0;
    line-height: 1.7;
    font-weight: 300;
}

.restaurant-specialty {
    font-size: 0.75rem;
    color: var(--medium-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.75rem;
}

/* Shuttle Info Banner */
.shuttle-banner {
    background: var(--primary-black);
    color: var(--pure-white);
    text-align: center;
    padding: 6rem 4rem;
    margin-top: 8rem;
}

.shuttle-banner h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.shuttle-banner p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-gray);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .mountain-content {
        grid-template-columns: 1fr;
    }

    .lifts-list {
        grid-template-columns: 1fr;
    }

    .mountain-header {
        padding: 3rem 4rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 40vh;
        min-height: 350px;
    }

    .page-header-content h1 {
        font-size: 3rem;
    }

    .page-header-content p {
        font-size: 1rem;
    }

    .mountains-section {
        padding: 6rem 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .mountain-card {
        margin-bottom: 6rem;
    }

    .mountain-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .mountain-title-section h3 {
        font-size: 2.2rem;
    }

    .mountain-stats {
        gap: 2rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .trail-map-section,
    .mountain-info {
        padding: 3rem 2rem;
    }

    .difficulty-labels {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .shuttle-banner {
        padding: 4rem 2rem;
    }

    .shuttle-banner h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header-content h1 {
        font-size: 2.5rem;
    }

    .mountain-card {
        margin-bottom: 4rem;
    }

    .mountain-header {
        padding: 2rem 1.5rem;
    }

    .mountain-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .trail-map-section,
    .mountain-info {
        padding: 2rem 1.5rem;
    }

    .restaurants-list {
        gap: 1rem;
    }

    .info-block h4 {
        font-size: 1.3rem;
    }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--primary-black);
    color: var(--pure-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
}

.footer-section a:hover {
    color: var(--pure-white);
}

.footer-section p {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    font-size: 0.85rem;
    letter-spacing: 1px;
}


/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--primary-black);
    color: var(--pure-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
}

.footer-section a:hover {
    color: var(--pure-white);
}

.footer-section p {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    font-size: 0.85rem;
    letter-spacing: 1px;
}