/* ==========================================================================
   DESIGN SYSTEM - FITOTERAPIA LAS DUNAS
   ========================================================================== */

:root {
    /* Color Palette */
    --color-olive-dark: #2c362d;
    --color-olive: #3D4A3E;
    --color-olive-light: #526353;
    --color-sand: #E6DFD3;
    --color-sand-light: #F2EDE4;
    --color-ivory: #FAF8F5;
    --color-gold: #C5A880;
    --color-gold-hover: #B4966E;
    --color-terracotta: #C27D68;
    --color-terracotta-light: #F4ECE8;
    --color-charcoal: #2C2C2C;
    --color-muted: #6B6B6B;
    --color-white: #FFFFFF;
    
    /* Transparent overlays */
    --bg-header-scroll: rgba(250, 248, 245, 0.9);
    --shadow-soft: 0 10px 30px rgba(44, 54, 45, 0.05);
    --shadow-medium: 0 15px 40px rgba(44, 54, 45, 0.08);
    
    /* Fonts */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
    
    /* Spacing */
    --container-width: 1200px;
    --container-width-small: 800px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--color-ivory);
    color: var(--color-charcoal);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: opacity 0.3s ease;
}

/* Page fade state for language transition */
body.switching-lang {
    opacity: 0.3;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-olive-dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */

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

.small-container {
    max-width: var(--container-width-small);
}

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

@media (min-width: 768px) {
    .section-padding {
        padding: 8rem 0;
    }
}

.bg-sand {
    background-color: var(--color-sand-light);
}

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

.text-light {
    color: var(--color-ivory) !important;
}

.text-light-p {
    color: rgba(250, 248, 245, 0.85);
}

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

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

.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.section-tag.tag-light {
    color: var(--color-sand);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-muted);
    max-width: 600px;
    margin: -0.5rem auto 2rem auto;
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-gold);
    margin-bottom: 2rem;
}

.divider.center {
    margin-left: auto;
    margin-right: auto;
}

.divider.bg-gold {
    background-color: var(--color-gold);
}

.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 3rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-tertiary {
    padding: 0.6rem 1.4rem;
    font-size: 0.7rem;
    background-color: transparent;
    color: var(--color-olive);
    border-color: var(--color-sand);
}

.btn-tertiary:hover {
    background-color: var(--color-sand-light);
    border-color: var(--color-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-olive);
    border-color: var(--color-olive);
}

.btn-outline:hover {
    background-color: var(--color-olive);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

/* ==========================================================================
   HEADER — definitive single-source block
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
    padding: 1.4rem 0;
    background-color: transparent;      /* glass-clear over hero */
}

/* ── Scrolled state ───────────────────────────────────── */
.main-header.scrolled {
    background-color: var(--bg-header-scroll);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.06);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(230, 223, 211, 0.35);
}

/* ── Inner flex row ───────────────────────────────────── */
.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
}

/* ── LOGO — pinned left ───────────────────────────────── */
.logo-area {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
    margin-right: 3rem;          /* clear gap before first nav tab */
    text-decoration: none;
}

.logo-img {
    height: 38px; width: 38px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(197,168,128,0.5);
    transition: height 0.3s, width 0.3s;
}
.main-header.scrolled .logo-img { height: 33px; width: 33px; }

.logo-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    color: var(--color-olive-dark);
    transition: color 0.3s;
}

/* ── NAV — takes remaining space, centred ─────────────── */
.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.25rem;
    margin: 0; padding: 0;
}

.nav-link {
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-olive-dark);
    padding: 0.45rem 0;
    position: relative;
    opacity: 0.82;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--color-gold);
    transition: width 0.25s ease;
}
.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--color-gold);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.btn-nav {
    border: 1px solid var(--color-gold);
    padding: 0.38rem 1rem !important;
    border-radius: 3px;
}
.btn-nav::after { display: none !important; }
.btn-nav:hover {
    background: var(--color-gold);
    color: var(--color-white) !important;
}

/* ── HEADER ACTIONS — pinned right ───────────────────── */
.header-actions {
    display: flex;
    align-items: center;
    margin-left: 3rem;
    gap: 0.75rem;
}

/* ── LANGUAGE SELECTOR ────────────────────────────────── */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 0;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(197,168,128,0.4);
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
    cursor: pointer;
    padding: 0.25rem 0.4rem;
    border-radius: 2px;
    transition: color 0.2s, font-weight 0.2s;
}
.lang-btn:hover, .lang-btn.active { color: var(--color-gold); font-weight: 700; }
.lang-btn.active { background: rgba(197,168,128,0.1); }

/* ── BURGER — hidden on desktop ───────────────────────── */
.burger-menu {
    display: none;                       /* ← hidden unless mobile */
    flex-direction: column;
    justify-content: space-between;
    width: 24px; height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    flex-shrink: 0;
}

.burger-bar {
    width: 100%; height: 2px;
    background-color: var(--color-olive-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── WHITE-ON-HERO overrides (transparent state only) ─── */
.main-header:not(.scrolled) .logo-text          { color: rgba(250,248,245,0.95); text-shadow: 0 1px 5px rgba(0,0,0,0.45); }
.main-header:not(.scrolled) .nav-link           { color: rgba(250,248,245,0.88); text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.main-header:not(.scrolled) .nav-link:hover,
.main-header:not(.scrolled) .nav-link.active    { color: var(--color-gold); }
.main-header:not(.scrolled) .lang-btn           { color: rgba(250,248,245,0.65); }
.main-header:not(.scrolled) .lang-btn:hover,
.main-header:not(.scrolled) .lang-btn.active    { color: var(--color-gold); }
.main-header:not(.scrolled) .lang-selector      { border-left-color: rgba(250,248,245,0.2); }
.main-header:not(.scrolled) .btn-nav            { border-color: rgba(250,248,245,0.45); color: rgba(250,248,245,0.9) !important; }
.main-header:not(.scrolled) .btn-nav:hover      { background: var(--color-gold); border-color: var(--color-gold); color: #fff !important; }
.main-header:not(.scrolled) .burger-bar         { background-color: rgba(250,248,245,0.9); }

/* ==========================================================================
   MOBILE NAV — single media query, no duplicates
   ========================================================================== */
@media (max-width: 1023px) {

    .burger-menu { display: flex; }     /* show burger on mobile */

    /* Hide desktop nav, replace with side drawer */
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 320px;
        height: 100vh;
        background-color: var(--color-ivory);
        box-shadow: -8px 0 32px rgba(0,0,0,0.07);
        padding: 5.5rem 2rem 2rem;
        transition: right 0.35s ease;
        z-index: 1050;
        flex: none;
        display: block;
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    /* Force dark text inside drawer regardless of hero state */
    .nav-link,
    .main-header:not(.scrolled) .nav-link {
        font-size: 0.9rem;
        color: var(--color-olive-dark) !important;
        text-shadow: none !important;
        opacity: 1 !important;
    }

    /* Burger → X */
    .burger-menu.active .burger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .burger-menu.active .burger-bar:nth-child(2) { opacity: 0; }
    .burger-menu.active .burger-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Logo text smaller on mobile */
    .logo-text { font-size: 0.82rem; }
    .logo-area { margin-right: 0; }
    .header-actions { margin-left: auto; }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    padding-top: 7rem; /* Clear the fixed header (header ~80px + breathing room) */
}

.hero-content {
    max-width: 680px;
}

.brand-phrase {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-sand);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
        line-height: 1.2;
    }
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Scroll indicator mouse */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse-icon {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    transition: var(--transition-smooth);
}

.mouse-icon:hover {
    border-color: var(--color-gold);
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 0; transform: translateY(0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ==========================================================================
   QUIÉNES SOMOS
   ========================================================================== */

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

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

.lead-text {
    font-size: 1.15rem;
    color: var(--color-olive-dark);
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.25rem;
    color: var(--color-charcoal);
}

.legal-note {
    font-size: 0.85rem;
    color: var(--color-muted) !important;
    border-left: 2px solid var(--color-sand);
    padding-left: 1rem;
    margin-top: 2rem;
    font-style: italic;
}

/* ==========================================================================
   FILOSOFÍA (Cards)
   ========================================================================== */

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

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

.philosophy-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(230, 223, 211, 0.3);
    transition: var(--transition-smooth);
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-gold);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-sand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-olive);
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.philosophy-card:hover .card-icon {
    background-color: var(--color-olive);
    color: var(--color-sand);
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.card-description {
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* ==========================================================================
   CALENDARIO
   ========================================================================== */

.calendar-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.event-card {
    background-color: var(--color-white);
    border-radius: 6px;
    padding: 2rem;
    border: 1px solid rgba(230, 223, 211, 0.4);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
    transition: var(--transition-smooth);
}

.event-card:hover {
    box-shadow: var(--shadow-medium);
    border-left: 4px solid var(--color-gold);
    transform: translateX(4px);
}

@media (min-width: 768px) {
    .event-card {
        grid-template-columns: 160px 1fr 140px;
        gap: 2rem;
    }
}

.event-date {
    display: inline-block;
}

.date-tag {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-gold);
    background-color: rgba(197, 168, 128, 0.1);
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

.event-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.event-desc {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.event-action {
    text-align: right;
}

@media (max-width: 767px) {
    .event-action {
        text-align: left;
        margin-top: 0.5rem;
    }
}

/* ==========================================================================
   ESPACIO PRIVADO
   ========================================================================== */

.private-space {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.space-container {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .space-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.space-image-column {
    height: 400px;
    width: 100%;
}

@media (min-width: 992px) {
    .space-image-column {
        height: auto;
        min-height: 600px;
    }
}

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

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

.space-content-wrap {
    padding: 3rem 1.5rem;
    max-width: 550px;
}

@media (min-width: 992px) {
    .space-content-wrap {
        padding: 5rem 3rem;
    }
}

/* ==========================================================================
   JOURNAL LAS DUNAS
   ========================================================================== */

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

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

.journal-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(230, 223, 211, 0.4);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.journal-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.journal-img-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.journal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.journal-card:hover .journal-img {
    transform: scale(1.08);
}

.journal-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.journal-category {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-terracotta);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.journal-card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.journal-card-excerpt {
    font-size: 0.88rem;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.journal-read-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gold);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.journal-read-link:hover {
    color: var(--color-gold-hover);
}

.journal-read-link:hover .arrow-icon {
    transform: translateX(4px);
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

.contact-form-container {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 3rem 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(230, 223, 211, 0.4);
}

@media (min-width: 768px) {
    .contact-form-container {
        padding: 4rem 3.5rem;
    }
}

.contact-form {
    width: 100%;
}

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

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid .full-width {
        grid-column: span 2;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-olive-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-sand);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    background-color: var(--color-ivory);
    transition: var(--transition-fast);
    outline: none;
    color: var(--color-charcoal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-gold);
    cursor: pointer;
    margin-top: 0.2rem;
}

.checkbox-label {
    font-size: 0.8rem !important;
    color: var(--color-muted) !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    cursor: pointer;
    line-height: 1.5;
}

.form-note {
    font-size: 0.75rem;
    color: var(--color-muted);
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
    background-color: var(--color-olive-dark);
    color: var(--color-ivory);
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(230, 223, 211, 0.1);
}

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

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

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

.footer-tagline {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
    max-width: 350px;
    line-height: 1.6;
}

.footer-location {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-gold);
}

.footer-links h4 {
    color: var(--color-sand);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(230, 223, 211, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.5;
}

/* ==========================================================================
   MODAL DIALOG (Success Modal)
   ========================================================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(44, 54, 45, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 2000;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 3rem 2rem;
    max-width: 450px;
    width: 90%;
    box-shadow: var(--shadow-medium);
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-muted);
}

.close-modal:hover {
    color: var(--color-charcoal);
}

.modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(82, 99, 83, 0.1);
    color: var(--color-olive);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.modal-icon svg {
    width: 32px;
    height: 32px;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-content p {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1),
                transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* ==========================================================================
   ENHANCEMENTS & ADDITIONS
   ========================================================================== */

/* Hero Opening Announcement Band */
.hero-announcement-band {
    display: inline-block;
    background-color: rgba(197, 168, 128, 0.18);
    border: 1px solid var(--color-gold);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-opening-date {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* About Section Legal disclaimer */
.about-legal-card {
    background-color: var(--color-sand-light);
    border-left: 3px solid var(--color-gold);
    padding: 1.5rem;
    border-radius: 0 6px 6px 0;
    margin-top: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.legal-disclaimer {
    font-size: 0.85rem;
    color: var(--color-olive-dark);
    margin-bottom: 0 !important;
    font-style: italic;
    line-height: 1.6;
}

/* Calendar Badge Header Group */
.event-header-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.event-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    display: inline-block;
}

.badge-opening {
    background-color: rgba(194, 125, 104, 0.1);
    color: var(--color-terracotta);
    border: 1px solid rgba(194, 125, 104, 0.25);
}

.badge-workshop {
    background-color: rgba(61, 74, 62, 0.08);
    color: var(--color-olive);
    border: 1px solid rgba(61, 74, 62, 0.2);
}

.badge-socio,
.badge-members {
    background-color: rgba(197, 168, 128, 0.12);
    color: var(--color-gold-hover);
    border: 1px solid rgba(197, 168, 128, 0.3);
}

.badge-divulgacion,
.badge-dissemination {
    background-color: rgba(82, 99, 83, 0.08);
    color: var(--color-olive-light);
    border: 1px solid rgba(82, 99, 83, 0.18);
}

/* Trust block and pre-contact section wrapper */
.pre-contact-section {
    background-color: var(--color-ivory);
    position: relative;
    padding-top: 2rem;
}

/* Block of Trust */
.trust-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid rgba(230, 223, 211, 0.4);
    box-shadow: var(--shadow-soft);
    margin-bottom: -2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .trust-block {
        grid-template-columns: repeat(3, 1fr);
        padding: 2.5rem 3rem;
        text-align: center;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .trust-item {
        flex-direction: column;
        gap: 0.5rem;
        justify-content: center;
    }
}

.trust-icon {
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.25rem;
}

.trust-text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-olive-dark);
}

/* Contact microphrase */
.contact-micro-phrase {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-gold-hover);
    margin-bottom: 2.5rem;
}

/* Left Aligned Modals with scrollable body */
.text-left-modal {
    text-align: left !important;
    max-width: 600px !important;
}

.modal-body-scroll {
    max-height: 300px;
    overflow-y: auto;
    margin: 1.5rem 0;
    padding-right: 0.5rem;
    font-size: 0.88rem;
    color: var(--color-charcoal);
    line-height: 1.8;
    border-top: 1px solid rgba(230, 223, 211, 0.4);
    border-bottom: 1px solid rgba(230, 223, 211, 0.4);
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

/* Webkit Scrollbar styling for modal body scroll */
.modal-body-scroll::-webkit-scrollbar {
    width: 6px;
}

.modal-body-scroll::-webkit-scrollbar-track {
    background: var(--color-ivory);
}

.modal-body-scroll::-webkit-scrollbar-thumb {
    background: var(--color-sand);
    border-radius: 3px;
}

.modal-body-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* ==========================================================================
   NEW SECTIONS — PHASE 2 UPDATES
   ========================================================================== */

/* Hero HamCan Badge */
.hero-hamcan-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(31, 61, 77, 0.75);
    border: 1px solid rgba(197, 168, 128, 0.5);
    color: var(--color-gold);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ==========================================================================
   HAMCAN BANNER
   ========================================================================== */

.hamcan-banner {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--color-olive-dark) 0%, #1f3d4d 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(197, 168, 128, 0.25);
    box-shadow: var(--shadow-medium);
}

.hamcan-banner-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 2rem;
}

@media (min-width: 768px) {
    .hamcan-banner-inner {
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 3rem 3.5rem;
    }
}

.hamcan-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.hamcan-title {
    font-size: 1.6rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hamcan-desc {
    font-size: 0.9rem;
    color: rgba(250, 248, 245, 0.75);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.hamcan-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-outline-light {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.9rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.hamcan-banner-badge {
    display: flex;
    justify-content: center;
}

.booth-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid var(--color-gold);
    background-color: rgba(197, 168, 128, 0.08);
    text-align: center;
    box-shadow: 0 0 30px rgba(197, 168, 128, 0.2);
}

.booth-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
}

.booth-number {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.booth-event {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.6);
    margin-top: 0.25rem;
}

/* ==========================================================================
   BOAT TRIP BANNER
   ========================================================================== */

.boat-trip-banner {
    margin-top: 2rem;
    background: linear-gradient(135deg, var(--color-sand-light) 0%, rgba(197, 168, 128, 0.12) 100%);
    border-radius: 12px;
    border: 1px solid var(--color-sand);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.boat-trip-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .boat-trip-inner {
        grid-template-columns: 80px 1fr;
        gap: 2.5rem;
        padding: 3rem 3.5rem;
    }
}

.boat-trip-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--color-olive);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-sand);
    flex-shrink: 0;
}

.boat-trip-icon svg {
    width: 32px;
    height: 32px;
}

.boat-trip-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-olive);
    margin-bottom: 0.5rem;
}

.boat-trip-title {
    font-size: 1.4rem;
    color: var(--color-olive-dark);
    margin-bottom: 0.75rem;
}

.boat-trip-desc {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.boat-trip-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-white);
    border: 1px solid var(--color-gold);
    padding: 0.9rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.35);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--color-olive-dark);
    border: 1px solid var(--color-olive);
    padding: 0.9rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-outline-dark:hover {
    background-color: var(--color-olive);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   GIFT CARDS SECTION
   ========================================================================== */

.gift-cards-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

.gift-cards-title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .gift-cards-title {
        font-size: 2.5rem;
    }
}

.gift-cards-desc {
    font-size: 1rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.gift-cards-visual {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.gift-card-mockup {
    transform: rotate(-3deg) translateY(-4px);
    transition: var(--transition-smooth);
    filter: drop-shadow(0 20px 40px rgba(44, 54, 45, 0.15));
}

.gift-card-mockup:hover {
    transform: rotate(0deg) translateY(-8px);
    filter: drop-shadow(0 30px 50px rgba(44, 54, 45, 0.2));
}

.gift-card-face {
    width: 320px;
    max-width: 100%;
    background: linear-gradient(135deg, var(--color-olive-dark) 0%, #1f3d4d 60%, var(--color-olive) 100%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    color: var(--color-white);
    border: 1px solid rgba(197, 168, 128, 0.3);
    position: relative;
    overflow: hidden;
}

.gift-card-face::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.06);
    border: 1px solid rgba(197, 168, 128, 0.12);
}

.gift-card-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.gift-card-logo-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.4);
}

.gift-card-logo span {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.gift-card-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid rgba(197, 168, 128, 0.4);
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.gift-card-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.5);
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   MEMBERSHIP SECTION
   ========================================================================== */

.membership-section {
    background-color: var(--color-ivory);
}

.membership-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

.membership-title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .membership-title {
        font-size: 2.5rem;
    }
}

.membership-desc {
    font-size: 1rem;
    color: var(--color-muted);
    margin-bottom: 1.75rem;
    line-height: 1.8;
}

.membership-list {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.membership-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-charcoal);
    line-height: 1.5;
}

.list-check {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.membership-visual {
    display: flex;
    justify-content: center;
}

.membership-card {
    width: 300px;
    max-width: 100%;
    background: linear-gradient(135deg, var(--color-olive-dark) 0%, #1a3a2e 100%);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: 0 25px 50px rgba(44, 54, 45, 0.2);
    border: 1px solid rgba(197, 168, 128, 0.25);
    transform: rotate(2deg);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.1);
    background: rgba(197, 168, 128, 0.04);
}

.membership-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 35px 60px rgba(44, 54, 45, 0.25);
}

.membership-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.membership-card-logo {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.35);
}

.membership-card-name {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.membership-card-id {
    font-size: 0.75rem;
    color: rgba(250, 248, 245, 0.4);
    margin-top: 0.25rem;
    letter-spacing: 0.08em;
}

.membership-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    padding-top: 1rem;
}

.membership-card-footer > span:first-child {
    font-size: 0.65rem;
    color: rgba(250, 248, 245, 0.5);
    letter-spacing: 0.05em;
}

.membership-card-badge {
    font-size: 0.58rem !important;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold) !important;
    background: rgba(197, 168, 128, 0.12);
    border: 1px solid rgba(197, 168, 128, 0.3);
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    white-space: nowrap;
}

/* ==========================================================================
   PARTNERS & INSTITUTIONAL SECTION
   ========================================================================== */

.ua-mention {
    margin-bottom: 3rem;
}

.ua-mention-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(230, 223, 211, 0.5);
    box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
    .ua-mention-inner {
        grid-template-columns: 120px 1fr;
        padding: 2.5rem 3rem;
    }
}

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

.ua-logo {
    max-width: 100px;
    max-height: 80px;
    object-fit: contain;
    opacity: 0.85;
}

.ua-mention-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--color-olive-dark);
}

.ua-mention-desc {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.7;
}

/* ==========================================================================
   PARTNERS V2 — Premium dark section
   ========================================================================== */

.partners-section-v2 {
    position: relative;
    background: linear-gradient(135deg, #1a2218 0%, #2c362d 40%, #1c241d 70%, #141a14 100%);
    padding: 5rem 0 4rem;
    overflow: hidden;
}

.partners-section-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(197, 168, 128, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 50%, rgba(107, 142, 35, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.partners-v2-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.partners-v2-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.partners-v2-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.85rem;
    opacity: 0.85;
}

.partners-v2-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 400;
    color: rgba(250, 248, 245, 0.9);
    margin: 0;
    letter-spacing: -0.01em;
}

.partners-v2-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.partner-v2-logo {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 4rem;
    position: relative;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Vertical separator between logos */
.partner-v2-logo + .partner-v2-logo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40%;
    background: rgba(197, 168, 128, 0.2);
}

.partner-v2-logo img {
    display: block;
    max-width: 240px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-v2-logo--center img {
    max-width: 220px;
}

.partner-v2-logo:hover {
    transform: translateY(-4px);
}

.partner-v2-logo:hover img {
    opacity: 1;
}

@media (max-width: 767px) {
    .partners-v2-logos {
        gap: 0.5rem;
    }
    .partner-v2-logo {
        padding: 1.2rem 1.5rem;
    }
    .partner-v2-logo img {
        max-width: 100px;
        max-height: 44px;
    }
    .partner-v2-logo--center img {
        max-width: 130px;
    }
    .partner-v2-logo + .partner-v2-logo::before {
        display: none;
    }
}

/* Legacy — hidden */
.partners-logo-strip,
.partner-logo-item,
.partner-logo-center,
.partners-grid {
    display: none;
}

.partner-logo-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(230, 223, 211, 0.5);
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.partner-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-gold);
}

.partner-card {
    display: contents;
}

.partner-logo-name {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-olive-dark);
    margin-bottom: 0.4rem;
}

.partner-logo-type {
    font-size: 0.65rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

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

.partners-sheet-img {
    max-width: 800px;
    width: 100%;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(230, 223, 211, 0.5);
}

/* ==========================================================================
   GERMAN FLYER SECTION
   ========================================================================== */

.flyer-section {
    background-color: var(--color-ivory);
    overflow: hidden;
}

.flyer-section-inner {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .flyer-section-inner {
        grid-template-columns: 1fr 1fr;
        min-height: 650px;
    }
}

.flyer-text-col {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .flyer-text-col {
        padding: 6rem 4rem;
    }
}

.flyer-desc {
    font-size: 1rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.flyer-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.flyer-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--color-charcoal);
}

.flyer-feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.flyer-image-col {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.flyer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition-smooth);
}

.flyer-image-col:hover .flyer-img {
    transform: scale(1.03);
}

/* ==========================================================================
   WHATSAPP SECTION
   ========================================================================== */

.whatsapp-section {
    background: linear-gradient(135deg, #075e54 0%, #128c7e 60%, #25d366 100%);
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .whatsapp-section {
        padding: 7rem 0;
    }
}

.whatsapp-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .whatsapp-inner {
        grid-template-columns: 1fr auto;
        gap: 4rem;
    }
}

.whatsapp-text .section-tag {
    color: rgba(255, 255, 255, 0.7);
}

.whatsapp-title {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .whatsapp-title {
        font-size: 2.5rem;
    }
}

.whatsapp-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 520px;
}

.whatsapp-section .btn-gold {
    background-color: var(--color-white);
    color: #075e54;
    border-color: var(--color-white);
    font-weight: 600;
}

.whatsapp-section .btn-gold:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-qr-wrap {
    text-align: center;
    flex-shrink: 0;
}

.whatsapp-qr-link {
    display: inline-block;
    transition: var(--transition-smooth);
    border-radius: 16px;
}

.whatsapp-qr-link:hover {
    transform: scale(1.03) translateY(-4px);
}

.whatsapp-qr-img {
    width: 245px;
    max-width: 100%;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
    display: block;
}

.whatsapp-qr-caption {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

/* ==========================================================================
   FOOTER ADDITIONS
   ========================================================================== */

.footer-address-block {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.footer-address-block .footer-location {
    font-size: 0.8rem;
    display: block;
}

.footer-website {
    font-size: 0.8rem;
    color: var(--color-gold);
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-website:hover {
    opacity: 1;
}

/* Philosophy strip merged into About */
.about-philosophy-strip {
    padding-top: 1rem;
}

.about-philosophy-strip .cards-grid {
    margin-top: 0;
}

.about-philosophy-strip .philosophy-card {
    background: rgba(197, 168, 128, 0.06);
    border: 1px solid rgba(197, 168, 128, 0.18);
}

/* ==========================================================================
   MEMBERSHIP MODAL SPECIFIC STYLES
   ========================================================================== */
.membership-modal-content {
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    text-align: left;
    padding: 3.5rem 2.5rem;
    background-color: var(--color-ivory);
    border: 1px solid rgba(197, 168, 128, 0.3);
}

.membership-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.membership-modal-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.12);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.membership-modal-icon svg {
    width: 26px;
    height: 26px;
}

.membership-modal-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.membership-modal-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-olive-dark);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.membership-modal-subtitle {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-muted);
}

.membership-modal-body p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.membership-modal-note {
    background-color: rgba(197, 168, 128, 0.08);
    border-left: 3px solid var(--color-gold);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 4px 4px 0;
}

.membership-modal-note p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--color-olive-dark);
}

.membership-modal-chain {
    background: var(--color-white);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 6px;
    padding: 1.75rem;
    margin-bottom: 2rem;
}

.membership-modal-chain h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--color-olive-dark);
    margin-bottom: 1rem;
}

.membership-modal-chain p {
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
}

.membership-chain-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.membership-chain-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--color-charcoal);
}

.chain-level {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold);
    background: rgba(197, 168, 128, 0.15);
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    flex-shrink: 0;
}

.membership-modal-spots {
    border-top: 1px dashed rgba(197, 168, 128, 0.3);
    padding-top: 1.5rem;
    margin-bottom: 2rem;
}

.membership-modal-spots p {
    font-size: 0.88rem;
    font-weight: 500;
    color: #b22222;
    opacity: 0.9;
    margin-bottom: 0;
}

.membership-modal-cta {
    text-align: center;
    border-top: 1px solid rgba(197, 168, 128, 0.2);
    padding-top: 2rem;
}

.membership-modal-cta p {
    font-weight: 500;
    color: var(--color-olive-dark);
    margin-bottom: 1rem;
}

.membership-modal-cta .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
}

@media (max-width: 767px) {
    .membership-modal-content {
        padding: 2.5rem 1.5rem;
    }
    .membership-modal-title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   HERO BANNER SLIDER (CAROUSEL)
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    padding: 0;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 5;
}

@media (min-width: 768px) {
    .hero-container {
        padding: 0 2.5rem;
    }
}

/* Flex layout for side-by-side content slides (WhatsApp, Gift Cards) */
.flex-slide-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .flex-slide-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 4rem;
    }
    .flex-slide-row .hero-content {
        flex: 1;
        max-width: 580px;
        text-align: left;
    }
}

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

.hero-visual-qr .whatsapp-qr-link {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-visual-qr .whatsapp-qr-link:hover {
    transform: scale(1.04);
}

.hero-visual-qr .whatsapp-qr-img {
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}

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

.gift-card-preview {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gift-card-preview:hover {
    transform: translateY(-8px) rotate(1deg);
}

/* German slide features list */
.german-features-list li {
    font-family: var(--font-sans);
    line-height: 1.5;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.slider-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.25);
}

.slider-dots .dot.active {
    background-color: var(--color-gold);
    transform: scale(1.3);
}

@media screen and (max-width: 1023px) {
    .hero-slide {
        padding-top: 5rem;
        padding-bottom: 5rem;
        text-align: center;
    }
    .hero-slide .hero-content {
        margin: 0 auto;
        text-align: center;
    }
    .hero-slide .hero-ctas {
        justify-content: center;
    }
    .flex-slide-row .hero-content {
        text-align: center;
    }
}

/* ==========================================================================
   AGE GATE OVERLAY (+21)
   ========================================================================== */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(28, 36, 29, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-gate-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-gate-box {
    background-color: var(--color-ivory);
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.age-gate-overlay.active .age-gate-box {
    transform: scale(1);
}

.age-gate-logo-wrap {
    margin-bottom: 1.5rem;
}

.age-gate-logo {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.4);
}

.age-gate-box h2 {
    font-family: var(--font-serif);
    color: var(--color-olive-dark);
    margin-bottom: 1.25rem;
    font-size: 1.8rem;
}

.age-gate-box p {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.age-gate-error {
    color: #b22222;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    background-color: rgba(178, 34, 34, 0.08);
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid rgba(178, 34, 34, 0.2);
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 480px) {
    .age-gate-buttons {
        flex-direction: row;
        justify-content: center;
    }
    .age-gate-buttons .btn {
        flex: 1;
    }
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner-wrap {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    width: 90%;
    max-width: 850px;
    z-index: 99990; /* Right below the Age Gate modal but above other content */
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s ease, visibility 0.5s ease;
}

.cookie-banner-wrap.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-banner-box {
    background-color: rgba(250, 248, 245, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 168, 128, 0.35);
    border-radius: 12px;
    padding: 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 15px 40px rgba(28, 36, 29, 0.15);
}

@media (min-width: 768px) {
    .cookie-banner-box {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 3rem;
    }
}

.cookie-banner-content {
    flex: 1;
    text-align: left;
}

.cookie-banner-content h4 {
    font-family: var(--font-serif);
    color: var(--color-olive-dark);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.cookie-banner-content p {
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.cookie-banner-buttons .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.8rem;
}

.cookie-banner-buttons .btn-outline {
    border: 1px solid rgba(44, 54, 45, 0.25);
    color: var(--color-olive-dark);
    background-color: transparent;
}

.cookie-banner-buttons .btn-outline:hover {
    background-color: rgba(44, 54, 45, 0.05);
    border-color: rgba(44, 54, 45, 0.4);
}

