/* ============================================
   GLOW BESTIES RETREATS — Design System
   Luxury Wellness Editorial Aesthetic
   ============================================ */


/* ============================================
   1. CUSTOM PROPERTIES & RESET
   ============================================ */

:root {
    /* Colors */
    --color-bg-primary: #FBF8F4;
    --color-bg-beige: #F3EDE4;
    --color-accent: #B5635A;
    --color-accent-hover: #9E524A;
    --color-accent-light: #D4A89A;
    --color-text-heading: #3A3531;
    --color-text-body: #6B6460;
    --color-text-light: #8A8480;
    --color-white: #FFFFFF;
    --color-footer-bg: #3A3531;
    --color-footer-text: #D4CFC9;
    --color-error: #C44B4B;
    --color-border-subtle: rgba(58, 53, 49, 0.08);

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 80px;
    --container-max: 1200px;
    --container-padding: 24px;

    /* Transitions */
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
    --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Navbar */
    --navbar-height: 90px;
    --navbar-height-mobile: 72px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-body);
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
}


/* ============================================
   2. TYPOGRAPHY
   ============================================ */

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-text-heading);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
    margin-bottom: 0;
}


/* ============================================
   3. LAYOUT UTILITIES
   ============================================ */

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

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

.section-white {
    background-color: var(--color-bg-primary);
}

.section-beige {
    background-color: var(--color-bg-beige);
}

/* Subtle gradient transitions between sections */
.section-white::before,
.section-beige::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    pointer-events: none;
}

.section-beige::before {
    background: linear-gradient(to bottom, var(--color-bg-primary), var(--color-bg-beige));
}

.section-white + .section-beige::before,
.section-beige + .section-white::before {
    height: 60px;
}

/* Subtle grain texture overlay for depth */
.section::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 0;
}

.section > .container {
    position: relative;
    z-index: 1;
}

/* Section labels — uppercase accent text */
.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

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

.section-label-light {
    color: rgba(255, 255, 255, 0.75);
}

.section-title {
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

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

/* Screen reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


/* ============================================
   4. BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 1;
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(181, 99, 90, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(181, 99, 90, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-accent);
    border: 1.5px solid var(--color-accent);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(181, 99, 90, 0.2);
}

.btn-outline:active {
    transform: translateY(0);
}

/* White outline variant for dark backgrounds */
.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover,
.btn-outline-white:focus-visible {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* Focus state for accessibility */
.btn:focus-visible,
a:focus-visible,
input:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}


/* ============================================
   5. ARCH FRAME (reusable image component)
   ============================================ */

.arch-frame {
    border-radius: 200px 200px 12px 12px;
    overflow: hidden;
    position: relative;
}

.arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-elegant);
}

.arch-frame:hover img {
    transform: scale(1.04);
}

.arch-frame-sm {
    height: 280px;
}

/* Subtle inner shadow on arch frames for depth */
.arch-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 30px rgba(58, 53, 49, 0.08);
    pointer-events: none;
}


/* ============================================
   6. NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--container-padding);
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(251, 248, 244, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(58, 53, 49, 0.06);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: opacity var(--transition-base);
}

.nav-logo:hover img {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-white);
    transition: color var(--transition-base);
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text-body);
}

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

/* Underline animation on nav links */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-accent);
    transition: width 0.35s var(--ease-elegant);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Nav CTA button */
.nav-cta {
    padding: 10px 24px;
    border: 1.5px solid var(--color-white);
    border-radius: 50px;
    transition: all var(--transition-base);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-cta {
    border-color: var(--color-accent);
    color: var(--color-accent) !important;
}

.navbar.scrolled .nav-cta:hover {
    background-color: var(--color-accent);
    color: var(--color-white) !important;
}

/* Language switcher — very subtle */
.nav-lang {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all var(--transition-base);
    cursor: pointer;
    background: none;
}

.nav-lang:hover {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.4);
}

.navbar.scrolled .nav-lang {
    color: var(--color-text-light);
    border-color: var(--color-border-subtle);
}

.navbar.scrolled .nav-lang:hover {
    color: var(--color-text-heading);
    border-color: var(--color-text-light);
}

/* Hamburger toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.35s var(--ease-elegant);
}

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background-color: var(--color-text-heading);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

/* Hamburger open state — X animation */
.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background-color: var(--color-text-heading);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: var(--color-text-heading);
}

/* Mobile nav overlay */
.nav-overlay {
    display: none;
}

/* Mobile nav */
@media (max-width: 768px) {
    .navbar {
        height: var(--navbar-height-mobile);
    }

    .nav-logo img {
        height: 44px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        background-color: var(--color-bg-beige);
        transform: translateX(100%);
        transition: transform 0.45s var(--ease-elegant);
        z-index: 1000;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        color: var(--color-text-heading);
        font-size: 1.15rem;
        font-weight: 400;
        letter-spacing: 0.02em;
    }

    .nav-links a::after {
        bottom: -2px;
    }

    .nav-cta {
        border-color: var(--color-accent);
        color: var(--color-accent) !important;
        margin-top: 8px;
    }

    .nav-cta:hover {
        background-color: var(--color-accent);
        color: var(--color-white) !important;
    }

    .nav-lang {
        color: var(--color-text-light);
        border-color: var(--color-border-subtle);
    }
}


/* ============================================
   7. HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -60px;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(58, 53, 49, 0.1) 0%,
        rgba(58, 53, 49, 0.25) 40%,
        rgba(58, 53, 49, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 var(--container-padding);
}

/* Hero cascading entrance animation */
.hero-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.9s var(--ease-elegant) 0.3s forwards;
}

.hero-title {
    color: var(--color-white);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    font-feature-settings: 'liga' 1, 'kern' 1;
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeUp 1s var(--ease-elegant) 0.5s forwards;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.9s var(--ease-elegant) 0.75s forwards;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.9s var(--ease-elegant) 0.95s forwards;
}

.hero-cta {
    font-size: 1rem;
    padding: 18px 52px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.9s var(--ease-elegant) 1.15s forwards;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: heroFadeUp 0.9s ease 1.8s forwards;
}

.chevron {
    display: block;
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    animation: chevronBounce 2.5s ease-in-out infinite;
}

@keyframes chevronBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
    50% { transform: rotate(45deg) translateY(10px); opacity: 1; }
}


/* ============================================
   8. HOMEPAGE — INTRO SECTION
   ============================================ */

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

.intro-section .container {
    max-width: 650px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-body);
}

.intro-text p {
    margin-bottom: 20px;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-text p:first-child {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-text-heading);
}


/* ============================================
   9. HOMEPAGE — PHILOSOPHY SECTION
   ============================================ */

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

.philosophy-section .container {
    max-width: 700px;
}

.philosophy-text {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-heading);
    letter-spacing: -0.01em;
}

.philosophy-text p {
    margin-bottom: 24px;
}

.philosophy-text p:last-child {
    margin-bottom: 0;
}


/* ============================================
   10. HOMEPAGE — FOR YOU SECTION
   ============================================ */

.for-you-section {
    text-align: center;
}

.for-you-list {
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.for-you-item {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-heading);
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border-subtle);
    letter-spacing: 0.01em;
}

.for-you-item:last-child {
    border-bottom: none;
}

.for-you-item:first-child {
    padding-top: 0;
}


/* ============================================
   11. HOMEPAGE — EXPERIENCE GRID
   ============================================ */

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 40px;
}

.experience-card {
    border-top: 1.5px solid var(--color-accent-light);
    padding-top: 24px;
    transition: transform 0.4s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
}

.experience-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-text-heading);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.experience-card-text {
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 1.65;
}

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


/* ============================================
   12. HOMEPAGE — IMAGE BREAK
   ============================================ */

.image-break {
    position: relative;
    width: 100%;
    height: clamp(320px, 55vh, 600px);
    overflow: hidden;
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-break-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(58, 53, 49, 0.05) 0%,
        rgba(58, 53, 49, 0.35) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 var(--container-padding);
}

.image-break-text {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-white);
    max-width: 700px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}


/* ============================================
   13. HOMEPAGE — FOUNDERS PREVIEW
   ============================================ */

.founders-preview {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 80px;
    align-items: center;
}

.founders-image {
    position: relative;
}

.founders-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(58, 53, 49, 0.1);
}

.founders-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.founders-text p:last-of-type {
    margin-bottom: 32px;
}

.founders-text p:first-of-type {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-text-heading);
}

@media (max-width: 768px) {
    .founders-preview {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .founders-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}


/* ============================================
   14. HOMEPAGE — RETREAT CARD SECTION
   ============================================ */

.retreat-card-section {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 64px;
    align-items: center;
}

.retreat-card-section--reversed {
    grid-template-columns: 40fr 60fr;
}

.retreat-card-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(58, 53, 49, 0.1);
}

.retreat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-elegant);
}

.retreat-card-image:hover img {
    transform: scale(1.03);
}

.retreat-card-content {
    padding: 20px 0;
}

.retreat-card-meta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.retreat-card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-text-heading);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.retreat-card-desc {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--color-text-body);
}

.retreat-card-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-text-heading);
    margin-bottom: 24px;
}

.retreat-card-price span {
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: var(--color-text-light);
    font-weight: 300;
}

@media (max-width: 768px) {
    .retreat-card-section,
    .retreat-card-section--reversed {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .retreat-card-image {
        order: -1;
    }
}


/* ============================================
   15. HOMEPAGE — CTA / SIGNUP SECTION
   ============================================ */

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

.section-cta::after {
    display: none;
}

.cta-bg {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(58, 53, 49, 0.65) 0%,
        rgba(58, 53, 49, 0.55) 50%,
        rgba(58, 53, 49, 0.7) 100%
    );
    backdrop-filter: blur(2px);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Signup form */
.signup-form {
    max-width: 480px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.form-group {
    flex: 1;
    position: relative;
}

/* Glassmorphism inputs */
.signup-form input[type="text"],
.signup-form input[type="email"] {
    width: 100%;
    padding: 15px 22px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    outline: none;
    transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.signup-form input[type="text"]::placeholder,
.signup-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
}

.signup-form input[type="text"]:focus,
.signup-form input[type="email"]:focus {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 20px rgba(212, 168, 154, 0.15);
    outline: none;
}

/* Input error state */
.signup-form input.error {
    border-color: rgba(244, 164, 164, 0.6);
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: #F4A4A4;
    margin-top: 6px;
    padding-left: 20px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    text-align: left;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--color-accent);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox label a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-base);
}

.form-checkbox label a:hover {
    color: var(--color-white);
}

.btn-submit {
    width: 100%;
    max-width: 280px;
    font-size: 1rem;
    padding: 16px 40px;
}

.form-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
}

.signup-success {
    padding: 20px;
}

.success-message {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-white);
}

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


/* ============================================
   16. HOMEPAGE — INSTAGRAM SECTION
   ============================================ */

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

.instagram-section .section-title {
}

.instagram-subtitle {
    font-size: 1rem;
    color: var(--color-text-body);
    margin-bottom: 40px;
}

/* Offset collage layout — overlapping images */
.instagram-collage {
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px;
    height: 500px;
}

.instagram-collage-item {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(58, 53, 49, 0.1);
    transition: transform 0.5s var(--ease-elegant), box-shadow 0.5s ease;
}

.instagram-collage-item:hover {
    transform: scale(1.04) rotate(0deg) !important;
    box-shadow: 0 20px 60px rgba(58, 53, 49, 0.18);
    z-index: 3;
}

.instagram-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-collage-item:nth-child(1) {
    width: 280px;
    height: 350px;
    top: 20px;
    left: 0;
    transform: rotate(-3deg);
    z-index: 2;
}

.instagram-collage-item:nth-child(2) {
    width: 300px;
    height: 380px;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(1deg);
    z-index: 1;
}

.instagram-collage-item:nth-child(3) {
    width: 260px;
    height: 330px;
    top: 40px;
    right: 0;
    transform: rotate(2.5deg);
    z-index: 2;
}

/* Fallback standard grid layout */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.instagram-item {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-elegant), box-shadow 0.4s ease;
}

.instagram-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(58, 53, 49, 0.12);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease;
}

.instagram-item:hover img {
    filter: brightness(1.05);
}

.instagram-handle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-body);
    transition: color var(--transition-base);
}

.instagram-handle:hover {
    color: var(--color-accent);
}

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

    .instagram-collage {
        height: 320px;
    }

    .instagram-collage-item:nth-child(1) {
        width: 160px;
        height: 200px;
        top: 20px;
        left: 0;
    }

    .instagram-collage-item:nth-child(2) {
        width: 180px;
        height: 230px;
        top: 0;
    }

    .instagram-collage-item:nth-child(3) {
        width: 150px;
        height: 190px;
        top: 30px;
        right: 0;
    }
}

@media (max-width: 480px) {
    .instagram-collage {
        height: 260px;
    }

    .instagram-collage-item:nth-child(1) {
        width: 130px;
        height: 170px;
    }

    .instagram-collage-item:nth-child(2) {
        width: 150px;
        height: 200px;
    }

    .instagram-collage-item:nth-child(3) {
        width: 120px;
        height: 160px;
    }
}


/* ============================================
   17. HOMEPAGE — ABOUT GRID (used on homepage)
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-body p {
    margin-bottom: 16px;
}

.about-body p:last-child {
    margin-bottom: 0;
}

.about-body p:first-child {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-text-heading);
}

.about-image .arch-frame {
    height: 540px;
    box-shadow: 0 20px 60px rgba(58, 53, 49, 0.1);
}

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

    .about-image {
        order: -1;
    }

    .about-image .arch-frame {
        height: 400px;
        max-width: 320px;
        margin: 0 auto;
    }
}


/* ============================================
   18. ACTIVITIES (WAS DICH ERWARTET)
   ============================================ */

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.activity-card {
    text-align: center;
    transition: transform 0.4s ease;
}

.activity-card:hover {
    transform: translateY(-6px);
}

.activity-card .arch-frame-sm {
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(58, 53, 49, 0.08);
    transition: box-shadow 0.4s ease;
}

.activity-card:hover .arch-frame-sm {
    box-shadow: 0 16px 48px rgba(58, 53, 49, 0.14);
}

.activity-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-text-heading);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.activity-desc {
    font-size: 0.95rem;
    color: var(--color-text-body);
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 360px;
        margin: 0 auto;
    }

    .arch-frame-sm {
        height: 300px;
    }
}


/* ============================================
   19. SCHEDULE SECTION
   ============================================ */

.schedule-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.schedule-image {
    position: sticky;
    top: calc(var(--navbar-height) + 32px);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.9;
    box-shadow: 0 12px 40px rgba(58, 53, 49, 0.1);
}

.schedule-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.schedule-day {
    margin-bottom: 48px;
}

.schedule-day:last-of-type {
    margin-bottom: 32px;
}

.schedule-day-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-heading);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(181, 99, 90, 0.2);
    letter-spacing: -0.01em;
}

.timeline {
    position: relative;
    padding-left: 24px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, var(--color-accent-light), rgba(212, 168, 154, 0.3));
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(4px);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--color-accent-light);
    border: 2px solid var(--color-bg-beige);
    transition: background-color 0.3s ease;
}

.timeline-item:hover::before {
    background-color: var(--color-accent);
}

.timeline-time {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    min-width: 70px;
    flex-shrink: 0;
}

.timeline-content {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.timeline-tag {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.tag-move {
    background-color: rgba(181, 99, 90, 0.12);
    color: var(--color-accent);
}

.tag-nourish {
    background-color: rgba(139, 152, 108, 0.15);
    color: #6B7A4A;
}

.tag-connect {
    background-color: rgba(212, 168, 154, 0.2);
    color: #9A7568;
}

.timeline-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-text-heading);
}

.timeline-desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
    width: 100%;
}

.schedule-note {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    color: var(--color-text-light);
    margin-top: 16px;
}

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

    .schedule-image {
        position: relative;
        top: 0;
        max-height: 300px;
        order: -1;
    }

    .schedule-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        gap: 4px;
    }

    .timeline-time {
        min-width: unset;
    }
}


/* ============================================
   20. HIGHLIGHTS SECTION
   ============================================ */

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.highlight-card {
    text-align: center;
    transition: transform 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
}

.highlight-image {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(58, 53, 49, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.highlight-card:hover .highlight-image {
    transform: scale(1.06);
    box-shadow: 0 10px 30px rgba(58, 53, 49, 0.14);
}

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

.highlight-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-text-heading);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.highlight-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent-light);
    margin: 10px auto 0;
    transition: width 0.4s ease, background-color 0.4s ease;
}

.highlight-card:hover .highlight-title::after {
    width: 60px;
    background-color: var(--color-accent);
}

.highlight-desc {
    font-size: 0.95rem;
    color: var(--color-text-body);
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 320px;
        margin: 0 auto;
    }
}


/* ============================================
   21. LOCATION SECTION (TANAFREIDA)
   ============================================ */

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 48px;
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.location-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.location-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-large {
    grid-column: 1 / -1;
    height: 320px;
    box-shadow: 0 12px 40px rgba(58, 53, 49, 0.1);
}

.gallery-large img {
    border-radius: 200px 200px 12px 12px;
}

.gallery-small {
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    box-shadow: 0 8px 24px rgba(58, 53, 49, 0.08);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(58, 53, 49, 0.14);
}

.gallery-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-elegant);
}

.gallery-small:hover img {
    transform: scale(1.06);
}

/* Third small image spans full width */
.gallery-small:nth-child(4) {
    grid-column: 1 / -1;
    height: 180px;
}

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

    .gallery-large {
        height: 260px;
    }

    .gallery-small {
        height: 150px;
    }
}


/* ============================================
   22. ABOUT PAGE — HERO
   ============================================ */

.about-hero {
    background-color: var(--color-bg-beige);
    padding: calc(var(--navbar-height) + 80px) 0 100px;
    text-align: center;
}

.about-hero .container {
    max-width: 700px;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-text-heading);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-body);
}

.about-hero-subtitle p {
    margin-bottom: 20px;
}

.about-hero-subtitle p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-hero {
        padding: calc(var(--navbar-height-mobile) + 48px) 0 72px;
    }
}


/* ============================================
   23. ABOUT PAGE — FOUNDER SECTION
   ============================================ */

.founder-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.founder-section--mirrored {
    direction: rtl;
}

.founder-section--mirrored > * {
    direction: ltr;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(58, 53, 49, 0.1);
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text-heading);
    margin-bottom: 8px;
}

.founder-role {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
    display: block;
}

.founder-text p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.founder-text p:last-child {
    margin-bottom: 0;
}

.founder-quote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-heading);
    padding-left: 20px;
    border-left: 2px solid var(--color-accent-light);
    margin-top: 24px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .founder-section,
    .founder-section--mirrored {
        grid-template-columns: 1fr;
        gap: 48px;
        direction: ltr;
    }

    .founder-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}


/* ============================================
   24. ABOUT PAGE — MINI CTA
   ============================================ */

.mini-cta {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
    padding: 20px 0;
}

.mini-cta-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text-heading);
    margin-bottom: 16px;
}

.mini-cta-text {
    font-size: 1rem;
    color: var(--color-text-body);
    margin-bottom: 32px;
    line-height: 1.7;
}


/* ============================================
   25. RETREATS PAGE — HERO
   ============================================ */

.retreat-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.retreat-hero .hero-bg {
    position: absolute;
    inset: -40px;
    background-size: cover;
    background-position: center;
}

.retreat-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(58, 53, 49, 0.15) 0%,
        rgba(58, 53, 49, 0.45) 100%
    );
}

.retreat-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 var(--container-padding);
}

.retreat-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.retreat-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}


/* ============================================
   26. RETREATS PAGE — INTRO
   ============================================ */

.retreat-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.retreat-intro-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.retreat-intro-text p:last-child {
    margin-bottom: 0;
}

.retreat-intro-text p:first-child {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-text-heading);
}

.retreat-intro-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: 420px;
}

.retreat-intro-details {
    background-color: var(--color-bg-beige);
    border-radius: 12px;
    padding: 40px;
}

.retreat-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border-subtle);
}

.retreat-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.retreat-detail-item:first-child {
    padding-top: 0;
}

.retreat-detail-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.retreat-detail-value {
    font-weight: 400;
    color: var(--color-text-heading);
    text-align: right;
}

@media (max-width: 768px) {
    .retreat-intro {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}


/* ============================================
   27. RETREATS PAGE — LOCATION GALLERY
   ============================================ */

.location-section .location-gallery-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 320px 200px;
    gap: 16px;
}

.location-gallery-showcase .gallery-hero {
    grid-column: 1 / -1;
    grid-row: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(58, 53, 49, 0.1);
}

.location-gallery-showcase .gallery-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-gallery-showcase .gallery-thumb {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(58, 53, 49, 0.08);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.location-gallery-showcase .gallery-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(58, 53, 49, 0.14);
}

.location-gallery-showcase .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-elegant);
}

.location-gallery-showcase .gallery-thumb:hover img {
    transform: scale(1.06);
}

@media (max-width: 768px) {
    .location-section .location-gallery-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: 250px repeat(3, 180px);
    }

    .location-gallery-showcase .gallery-hero {
        grid-column: 1;
    }
}


/* ============================================
   28. RETREATS PAGE — SCHEDULE
   ============================================ */

.schedule-section .schedule-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.schedule-section .schedule-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-body);
}


/* ============================================
   29. FOOTER
   ============================================ */

.footer {
    background-color: var(--color-footer-bg);
    padding: 64px 0 32px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    display: block;
    letter-spacing: -0.01em;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-accent-light);
    display: block;
    margin-top: 4px;
    letter-spacing: 0.08em;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-footer-text);
    transition: color var(--transition-base);
    position: relative;
}

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

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-light);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--color-text-light);
    transition: color var(--transition-base);
}

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

.footer-email a {
    font-size: 0.9rem;
    color: var(--color-footer-text);
    transition: color var(--transition-base);
}

.footer-email a:hover {
    color: var(--color-white);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--color-footer-text);
    transition: color var(--transition-base), transform var(--transition-base);
    display: inline-block;
}

.footer-social a:hover {
    color: var(--color-white);
    transform: scale(1.1);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .footer {
        padding: 48px 0 24px;
    }

    .footer-links,
    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}


/* ============================================
   30. SCROLL ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-elegant), transform 0.8s var(--ease-elegant);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for activity cards */
.activity-card.fade-in:nth-child(1) { transition-delay: 0s; }
.activity-card.fade-in:nth-child(2) { transition-delay: 0.08s; }
.activity-card.fade-in:nth-child(3) { transition-delay: 0.16s; }
.activity-card.fade-in:nth-child(4) { transition-delay: 0.24s; }
.activity-card.fade-in:nth-child(5) { transition-delay: 0.32s; }
.activity-card.fade-in:nth-child(6) { transition-delay: 0.4s; }

/* Staggered delay for highlight cards */
.highlight-card.fade-in:nth-child(1) { transition-delay: 0s; }
.highlight-card.fade-in:nth-child(2) { transition-delay: 0.07s; }
.highlight-card.fade-in:nth-child(3) { transition-delay: 0.14s; }
.highlight-card.fade-in:nth-child(4) { transition-delay: 0.21s; }
.highlight-card.fade-in:nth-child(5) { transition-delay: 0.28s; }
.highlight-card.fade-in:nth-child(6) { transition-delay: 0.35s; }

/* Staggered delay for experience cards */
.experience-card.fade-in:nth-child(1) { transition-delay: 0s; }
.experience-card.fade-in:nth-child(2) { transition-delay: 0.06s; }
.experience-card.fade-in:nth-child(3) { transition-delay: 0.12s; }
.experience-card.fade-in:nth-child(4) { transition-delay: 0.18s; }
.experience-card.fade-in:nth-child(5) { transition-delay: 0.24s; }
.experience-card.fade-in:nth-child(6) { transition-delay: 0.3s; }

/* Staggered delay for for-you items */
.for-you-item.fade-in:nth-child(1) { transition-delay: 0s; }
.for-you-item.fade-in:nth-child(2) { transition-delay: 0.06s; }
.for-you-item.fade-in:nth-child(3) { transition-delay: 0.12s; }
.for-you-item.fade-in:nth-child(4) { transition-delay: 0.18s; }
.for-you-item.fade-in:nth-child(5) { transition-delay: 0.24s; }
.for-you-item.fade-in:nth-child(6) { transition-delay: 0.3s; }
.for-you-item.fade-in:nth-child(7) { transition-delay: 0.36s; }
.for-you-item.fade-in:nth-child(8) { transition-delay: 0.42s; }

/* Directional reveals */
.about-text.fade-in {
    transform: translateX(-30px);
}
.about-text.fade-in.visible {
    transform: translateX(0);
}

.about-image.fade-in {
    transform: translateX(30px);
}
.about-image.fade-in.visible {
    transform: translateX(0);
}

.location-text.fade-in {
    transform: translateX(-25px);
}
.location-text.fade-in.visible {
    transform: translateX(0);
}

.location-gallery.fade-in {
    transform: translateX(25px);
}
.location-gallery.fade-in.visible {
    transform: translateX(0);
}

.founders-image.fade-in {
    transform: translateX(-30px);
}
.founders-image.fade-in.visible {
    transform: translateX(0);
}

.founders-text.fade-in {
    transform: translateX(30px);
}
.founders-text.fade-in.visible {
    transform: translateX(0);
}

.founder-image.fade-in {
    transform: translateX(-30px);
}
.founder-image.fade-in.visible {
    transform: translateX(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-label,
    .hero-title,
    .hero-subtitle,
    .hero-tagline,
    .hero-cta,
    .hero-scroll-indicator {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .chevron {
        animation: none;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}


/* ============================================
   31. LEGAL PAGES (Impressum / Datenschutz)
   ============================================ */

.legal-page {
    padding-top: calc(var(--navbar-height) + 60px);
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.legal-page h3 {
    margin-bottom: 8px;
    color: var(--color-text-heading);
}

.legal-page p {
    margin-bottom: 24px;
}

.legal-page .legal-note {
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border-subtle);
}


/* ============================================
   32. GLOBAL RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet and below */
@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile) 0;
    }

    h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .section-title {
        margin-bottom: 32px;
    }

    .btn {
        padding: 14px 32px;
        font-size: 0.85rem;
    }

    .legal-page {
        padding-top: calc(var(--navbar-height-mobile) + 40px);
    }

    .legal-page h1 {
        font-size: 2rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    :root {
        --container-padding: 20px;
    }

    body {
        font-size: 16px;
    }

    .section-label {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
    }

    .btn {
        padding: 13px 28px;
        font-size: 0.82rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .hero-cta {
        padding: 15px 36px;
        font-size: 0.9rem;
    }

    .cta-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .about-hero {
        padding: calc(var(--navbar-height-mobile) + 36px) 0 56px;
    }

    .founder-section,
    .founder-section--mirrored {
        gap: 36px;
    }

    .retreat-intro-details {
        padding: 28px;
    }

    .intro-text p:first-child {
        font-size: 1.05rem;
    }

    .philosophy-text {
        font-size: 1.15rem;
    }

    .for-you-item {
        font-size: 1rem;
    }

    .founders-preview {
        gap: 36px;
    }

    .retreat-card-section,
    .retreat-card-section--reversed {
        gap: 28px;
    }
}
