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

:root {
    --season-accent: #E6EEF5;
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #252525;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --border-dark: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.6);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

/* SEASON SWITCHER */
#season-switcher {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    pointer-events: none;
}

.season-switcher-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid var(--border-dark);
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    pointer-events: auto;
    transition: all 0.4s ease;
}

.season-switcher-container:hover {
    border-color: var(--season-accent);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(230, 238, 245, 0.1);
    transform: translateY(-2px);
}

.season-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 500;
}

#language-select,
#season-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 0;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 300;
    padding: 0.6rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.01em;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b0b0b0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

#language-select {
    min-width: 70px;
    padding: 0.6rem 1rem;
    padding-right: 2rem;
    font-weight: 500;
}

#season-select {
    min-width: 140px;
}

#language-select:hover,
#season-select:hover {
    border-color: var(--season-accent);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--season-accent);
}

#language-select:focus,
#season-select:focus {
    outline: none;
    border-color: var(--season-accent);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(230, 238, 245, 0.2);
}

#season-select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.5rem;
}

.season-reset-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 0;
    color: var(--text-muted);
    font-size: 1.2rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 1;
    padding: 0;
}

.season-reset-btn:hover {
    border-color: var(--season-accent);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--season-accent);
    transform: rotate(180deg);
}

.season-reset-btn:active {
    transform: rotate(180deg) scale(0.95);
}

/* HERO SECTION */
#hero {
    position: relative;
    min-height: 100vh;
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

#hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.1);
    z-index: 0;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.15) 0%, rgba(10, 10, 10, 0.35) 100%);
    z-index: 1;
}

/* Hero loading state */
#hero.hero-loading {
    background-color: var(--bg-primary);
}

#hero.hero-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        var(--bg-primary) 0%,
        var(--bg-secondary) 50%,
        var(--bg-primary) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    z-index: 0;
    opacity: 0.3;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.15) 100%);
    backdrop-filter: blur(3px) saturate(110%);
    -webkit-backdrop-filter: blur(3px) saturate(110%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    z-index: 2;
}

#hero h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 200;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    font-weight: 300;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.01em;
}

#hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    font-weight: 300;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.01em;
}

/* CTA BUTTON */
.cta {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background-color: var(--season-accent);
    border: 2px solid var(--season-accent);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta:hover {
    background-color: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* SECTION STYLES */
section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

section p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* TRUST BAR */
#trust-bar {
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    position: relative;
}

#trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-items span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.trust-items span::after {
    content: '•';
    position: absolute;
    right: -2rem;
    color: var(--border-dark);
}

.trust-items span:last-child::after {
    display: none;
}

.trust-items span:hover {
    color: var(--text-secondary);
}

/* SEASON STORY */
#season-story {
    background-color: var(--bg-secondary);
    padding: 8rem 2rem;
    position: relative;
}

#season-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-image {
    aspect-ratio: 4/3;
    border-radius: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-dark);
    position: relative;
}

.story-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

#season-title {
    font-size: clamp(2.2rem, 4vw, 4rem);
    color: var(--season-accent);
    font-weight: 200;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.season-text-short {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    letter-spacing: -0.01em;
    opacity: 0.9;
}

.season-text-long {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.9;
    font-weight: 300;
}

#season-text {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    letter-spacing: -0.01em;
    opacity: 0.9;
}

/* ACTIVITIES SECTION */
#activities {
    padding: 8rem 2rem;
    background-color: var(--bg-primary);
    text-align: center;
    position: relative;
}

#activities h2 {
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-item {
    padding: 2.5rem;
    border: 1px solid var(--border-dark);
    border-radius: 0;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
    position: relative;
    overflow: hidden;
}

.activity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--season-accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.activity-item:hover {
    border-color: var(--season-accent);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(230, 238, 245, 0.1);
    color: var(--text-primary);
}

.activity-item:hover::before {
    opacity: 1;
}

/* SEASON MOSAIC / GALLERY */
#season-mosaic {
    padding: 8rem 2rem;
    background-color: var(--bg-secondary);
    text-align: center;
    position: relative;
}

#season-mosaic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}

#season-mosaic h2 {
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.mosaic-grid .image-slot {
    min-height: 400px;
    aspect-ratio: 4/3;
}

.image-slot {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.lazy-image {
    opacity: 0.7;
    transition: opacity 0.3s ease, background-image 0.3s ease;
}

.lazy-image[style*="background-image"] {
    opacity: 1;
}

.image-slot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-slot:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(230, 238, 245, 0.15);
    border-color: var(--season-accent);
}

.image-slot:hover::after {
    opacity: 1;
    border-color: var(--season-accent);
}

.gallery-note {
    margin-top: 3rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

.gallery-note a {
    color: var(--season-accent);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.gallery-note a:hover {
    color: var(--text-primary);
    border-bottom-color: var(--season-accent);
}

/* WORKATION SECTION */
#workation {
    padding: 8rem 2rem;
    background-color: var(--bg-primary);
    position: relative;
}

#workation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}

.workation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.workation-content h2 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.workation-content p {
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    line-height: 1.9;
    font-weight: 300;
}

.workation-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.workation-features li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-secondary);
    font-weight: 300;
    transition: color 0.3s ease;
}

.workation-features li:hover {
    color: var(--text-primary);
}

.workation-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--season-accent);
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1;
}

.workation-image {
    aspect-ratio: 4/3;
    border-radius: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-dark);
    position: relative;
    transition: transform 0.4s ease;
}

.workation-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.workation-image:hover {
    transform: scale(1.02);
}

/* LOCATION SECTION */
#location {
    padding: 8rem 2rem;
    background-color: var(--bg-secondary);
    text-align: center;
    position: relative;
}

#location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}

#location h2 {
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.location-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-item {
    padding: 2.5rem;
    border: 1px solid var(--border-dark);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    text-align: left;
}

.location-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--season-accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.location-item:hover {
    border-color: var(--season-accent);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.location-item:hover::before {
    opacity: 1;
}

.location-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--season-accent);
    font-weight: 300;
    letter-spacing: -0.01em;
}

.location-item p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-weight: 300;
}

/* FOR WHO SECTION */
#for-who {
    padding: 8rem 2rem;
    background-color: var(--bg-primary);
    position: relative;
}

#for-who::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}

#for-who h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.for-who-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.for-who-fits,
.for-who-not {
    padding: 3.5rem;
    border-radius: 0;
    border: 1px solid var(--border-dark);
    transition: all 0.4s ease;
    position: relative;
}

.for-who-fits {
    background: rgba(230, 238, 245, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 2px solid var(--season-accent);
}

.for-who-fits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--season-accent), transparent);
}

.for-who-not {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 2px solid var(--border-dark);
}

.for-who-fits:hover,
.for-who-not:hover {
    border-color: var(--border-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.for-who-fits h3,
.for-who-not h3 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    font-weight: 300;
    letter-spacing: -0.01em;
}

.for-who-fits ul,
.for-who-not ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.for-who-fits li,
.for-who-not li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-secondary);
    font-weight: 300;
    transition: color 0.3s ease;
}

.for-who-fits li:hover,
.for-who-not li:hover {
    color: var(--text-primary);
}

.for-who-fits li:before {
    content: "+";
    position: absolute;
    left: 0;
    color: var(--season-accent);
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1;
}

.for-who-not li:before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1;
}

/* PRACTICAL SECTION */
#practical {
    padding: 8rem 2rem;
    background-color: var(--bg-secondary);
    text-align: center;
    position: relative;
}

#practical::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}

#practical h2 {
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.practical-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.practical-item {
    padding: 3rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0;
    border: 1px solid var(--border-dark);
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
}

.practical-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--season-accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.practical-item:hover {
    border-color: var(--season-accent);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.practical-item:hover::before {
    opacity: 1;
}

.practical-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--season-accent);
    font-weight: 300;
    letter-spacing: -0.01em;
}

.practical-item p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin: 0;
    font-weight: 300;
}

/* ABOUT SECTION */
#about {
    text-align: center;
    background-color: var(--bg-primary);
    padding: 8rem 2rem;
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}

#about h2 {
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.about-image {
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--border-dark);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    transition: transform 0.4s ease;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-intro {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-primary);
    line-height: 1.9;
    font-size: 1.3rem;
    font-weight: 400;
    text-align: center;
}

#about .about-content p:not(.about-intro) {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
    font-weight: 300;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    padding: 2rem;
    border: 1px solid var(--border-dark);
    border-radius: 0;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-secondary);
    font-weight: 300;
    transition: all 0.4s ease;
    position: relative;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--season-accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-item:hover {
    border-color: var(--season-accent);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-primary);
}

.value-item:hover::before {
    opacity: 1;
}

/* BOOKING SECTION */
#booking {
    text-align: center;
    padding: 8rem 3rem;
    background: linear-gradient(135deg, rgba(230, 238, 245, 0.1) 0%, rgba(230, 238, 245, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-dark);
    border-radius: 0;
    margin: 4rem auto;
    max-width: 900px;
    position: relative;
}

#booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--season-accent), transparent);
}

#booking h2 {
    color: var(--text-primary);
    margin-bottom: 2rem;
}

#booking p {
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* CONTACT SECTION */
#contact {
    padding: 8rem 2rem;
    background-color: var(--bg-secondary);
    text-align: center;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}

#contact h2 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

#contact p {
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-secondary {
    border-color: var(--border-dark);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--season-accent);
    color: var(--season-accent);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 5rem 2rem 4rem;
    border-top: 1px solid var(--border-dark);
    background-color: var(--bg-primary);
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    font-weight: 300;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}

footer p {
    margin: 0 0 1rem 0;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-links a:hover {
    color: var(--season-accent);
    opacity: 1;
}

.footer-links span {
    opacity: 0.4;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    font-weight: 300;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.01em;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    section {
        padding: 8rem 3rem;
    }
    
    .mosaic-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .image-slot {
        min-height: 500px;
    }
    
    .about-images {
        flex-direction: row;
        gap: 2.5rem;
    }
    
    .about-image {
        flex: 1;
        min-height: 500px;
    }
    
    #season-story,
    #about,
    #booking,
    #activities,
    #workation,
    #location,
    #for-who,
    #practical,
    #contact {
        padding: 6rem 4rem;
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    #season-switcher {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        right: auto;
    }
    
    .season-switcher-container {
        padding: 0.8rem 1rem;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
    }
    
    .season-label {
        font-size: 0.75rem;
    }
    
    #season-select {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
        padding-right: 2.2rem;
        min-width: 120px;
        flex: 1;
        min-width: 0;
    }
    
    .season-reset-btn {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1rem;
    }
    
    .overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
        backdrop-filter: blur(2px) saturate(110%);
        -webkit-backdrop-filter: blur(2px) saturate(110%);
        padding: 1.5rem;
    }
    
    section {
        padding: 5rem 1.5rem;
    }
    
    #trust-bar {
        padding: 1.5rem 1rem;
    }
    
    .trust-items {
        gap: 1rem 1.5rem;
    }
    
    .trust-items span {
        font-size: 0.8rem;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .workation-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .workation-image {
        order: -1;
    }
    
    .for-who-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .practical-container {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .mosaic-grid {
        grid-template-columns: 1fr;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    #season-story,
    #about,
    #booking,
    #activities,
    #workation,
    #location,
    #for-who,
    #practical,
    #contact {
        padding: 3rem 2rem;
    }
    
    #season-mosaic {
        padding: 3rem 1.5rem;
    }
}

/* LEGAL PAGES */
.legal-page {
    min-height: 100vh;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.legal-back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-back-link:hover {
    color: var(--season-accent);
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.legal-content {
    line-height: 1.8;
    font-size: 1rem;
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-primary);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-dark);
}

.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.legal-section p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.legal-section a {
    color: var(--season-accent);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.legal-section a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-page footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-dark);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 1rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
}
