/* =====================================================
   DER EINBEINIGE MOTIVATOR — Premium Design System
   Marcel Reinhart | Version 1.0
   ===================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
    --brand:        #00A86B;
    --brand-hover:  #00c47d;
    --brand-glow:   rgba(0, 168, 107, 0.15);
    --brand-border: rgba(0, 168, 107, 0.3);
    --gold:         #D4AF37;
    --gold-light:   #F0D060;
    --gold-glow:    rgba(212, 175, 55, 0.15);

    --bg-0:         #060606;
    --bg-1:         #0e0e0e;
    --bg-2:         #141414;
    --bg-3:         #1a1a1a;
    --bg-4:         #222222;
    --bg-card:      #161616;
    --bg-input:     #1c1c1c;

    --border:       rgba(255, 255, 255, 0.07);
    --border-md:    rgba(255, 255, 255, 0.12);

    --text-1:       #FFFFFF;
    --text-2:       #CCCCCC;
    --text-3:       #999999;
    --text-4:       #666666;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;

    --radius-sm:    6px;
    --radius-md:    12px;
    --radius-lg:    20px;
    --radius-xl:    32px;

    --shadow-sm:    0 2px 8px rgba(0,0,0,0.4);
    --shadow-md:    0 8px 32px rgba(0,0,0,0.5);
    --shadow-lg:    0 24px 64px rgba(0,0,0,0.6);
    --shadow-brand: 0 8px 32px rgba(0, 168, 107, 0.25);
    --shadow-gold:  0 8px 32px rgba(212, 175, 55, 0.2);

    --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --nav-height:   80px;
    --container:    1200px;
    --container-sm: 760px;
}

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

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

body {
    background-color: var(--bg-1);
    color: var(--text-2);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Page transition overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--bg-0);
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

body.page-leaving::before { opacity: 1; }
body.page-entering::before { opacity: 0; }

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

a {
    color: var(--brand);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--brand-hover); }

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-1);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--text-1); }
em { font-style: italic; color: var(--text-1); }

/* --- Layout --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2.5rem);
}

.container-sm {
    max-width: var(--container-sm);
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2.5rem);
}

.page-main {
    min-height: 100vh;
}

/* Section spacing */
.section {
    padding: clamp(4rem, 8vw, 8rem) 0;
}

.section-sm {
    padding: clamp(2.5rem, 5vw, 5rem) 0;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background var(--transition-slow), backdrop-filter var(--transition-slow), box-shadow var(--transition-slow);
}

.nav.scrolled {
    background: rgba(6, 6, 6, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2.5rem);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.01em;
}

.nav-logo-text span {
    color: var(--brand);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-3);
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-1);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-1);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(6, 6, 6, 0.97);
    backdrop-filter: blur(20px);
    z-index: 99;
    padding: 1.5rem;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--border);
}

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

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-mobile-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-2);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}

.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-link:hover, .nav-mobile-link.active { color: var(--brand); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    letter-spacing: 0.02em;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.05);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
    box-shadow: 0 4px 20px rgba(0, 168, 107, 0.3);
}

.btn-primary:hover {
    background: var(--brand-hover);
    border-color: var(--brand-hover);
    box-shadow: 0 8px 32px rgba(0, 168, 107, 0.45);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text-1);
    border-color: var(--border-md);
}

.btn-outline:hover {
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #0a0a0a;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
    color: #0a0a0a;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-0);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.35);
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero.loaded .hero-bg-img {
    transform: scale(1);
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 50, 30, 0.3) 100%
    );
}

.hero-bg-noise {
    position: absolute;
    inset: 0;
    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)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: var(--nav-height);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 1.25rem;
}

.hero-label::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--brand);
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-1);
    margin-bottom: 1.5rem;
}

.hero-title .accent {
    color: var(--brand);
    font-style: italic;
}

.hero-title .gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-3);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.hero-tagline-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-tagline-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-1);
}

.hero-tagline-label {
    font-size: 0.8rem;
    color: var(--text-4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition);
}

.hero-scroll:hover { opacity: 1; }

.hero-scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-4);
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--text-4), transparent);
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(0.5); opacity: 1; }
}

/* --- Banner (21:9 full-width image strip) --- */
.banner {
    position: relative;
    width: 100%;
    aspect-ratio: 21/9;
    overflow: hidden;
    background: var(--bg-0);
}

@media (max-width: 768px) {
    .banner { aspect-ratio: 16/9; }
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.banner:hover .banner-img {
    transform: scale(1.03);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
}

.banner-content {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
}

/* --- Section Labels --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 1.25rem;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--brand);
    flex-shrink: 0;
}

.section-headline {
    margin-bottom: 1rem;
}

.section-subline {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-3);
    max-width: 600px;
    line-height: 1.7;
}

/* --- Cards --- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.card:hover {
    border-color: var(--brand-border);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), var(--shadow-brand);
    transform: translateY(-4px);
}

.card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.card-body {
    padding: 1.75rem;
}

/* --- Feature Cards --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    border-color: var(--brand-border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--shadow-brand);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--brand-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--brand);
}

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

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.75rem;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-3);
    line-height: 1.7;
}

/* --- Quote Block --- */
.quote-block {
    position: relative;
    background: var(--bg-2);
    border-left: 4px solid var(--brand);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 2rem 2.5rem;
    margin: 2rem 0;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    color: var(--text-1);
    line-height: 1.4;
}

.quote-full {
    text-align: center;
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--bg-0);
    position: relative;
    overflow: hidden;
}

.quote-full::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: clamp(8rem, 20vw, 16rem);
    color: var(--brand);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.quote-full-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-style: italic;
    color: var(--text-1);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.3;
}

.quote-full-author {
    font-size: 0.9rem;
    color: var(--brand);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- Two Column Layout --- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

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

.two-col-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px var(--border);
}

/* --- Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--bg-3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.lightbox.open {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: var(--text-2);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem;
    transition: color var(--transition);
}

.lightbox-close:hover { color: var(--text-1); }

.lightbox-caption {
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-3);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--border);
    color: var(--text-1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
}

.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: -3.5rem; }
.lightbox-next { right: -3.5rem; }

/* --- Events --- */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    align-items: start;
}

.event-card:hover {
    border-color: var(--brand-border);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.event-card.past {
    opacity: 0.55;
}

.event-date-box {
    text-align: center;
    background: var(--bg-3);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    min-width: 72px;
    flex-shrink: 0;
}

.event-date-day {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
}

.event-date-month {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}

.event-date-year {
    font-size: 0.7rem;
    color: var(--text-4);
    margin-top: 0.15rem;
}

.event-body {
    flex: 1;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.5rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-4);
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.event-meta-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.event-description {
    font-size: 0.95rem;
    color: var(--text-3);
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.event-badge.upcoming {
    background: var(--brand-glow);
    color: var(--brand);
    border: 1px solid var(--brand-border);
}

.event-badge.past {
    background: rgba(255,255,255,0.05);
    color: var(--text-4);
    border: 1px solid var(--border);
}

/* --- Contact Form --- */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-label span {
    color: var(--brand);
}

.form-control {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-1);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
}

.form-control::placeholder { color: var(--text-4); }
.form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
}

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

/* Form field error states */
.form-control.error {
    border-color: rgba(239, 68, 68, 0.8);
    background-color: rgba(239, 68, 68, 0.05);
}
.form-control.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
    outline: none;
}
.form-group .error-hint {
    display: block;
    color: #f87171;
    font-size: 0.8rem;
    margin-top: 0.35rem;
}
.form-checkbox.error .form-checkbox-label {
    color: #f87171;
}
.form-checkbox.error input[type="checkbox"] {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}


/* Honeypot */
.form-honey { display: none !important; }

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-md);
    border-radius: 4px;
    background: var(--bg-input);
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--brand);
}

.form-checkbox-label {
    font-size: 0.875rem;
    color: var(--text-3);
    line-height: 1.5;
}

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

.form-message {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-message.success {
    background: rgba(0, 168, 107, 0.1);
    border: 1px solid var(--brand-border);
    color: var(--brand);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    z-index: 500;
    width: calc(100% - 3rem);
    max-width: 680px;
    background: var(--bg-3);
    border: 1px solid var(--border-md);
    border-radius: var(--radius-xl);
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-banner.visible {
    transform: translateX(-50%) translateY(0);
}

.cookie-headline {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.5rem;
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--text-3);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-actions .btn { padding: 0.65rem 1.25rem; font-size: 0.85rem; }

.cookie-settings-panel {
    display: none;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.cookie-settings-panel.open { display: block; }

.cookie-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.cookie-option:last-child { border-bottom: none; }

.cookie-option-info { flex: 1; }

.cookie-option-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 0.2rem;
}

.cookie-option-desc {
    font-size: 0.8rem;
    color: var(--text-4);
}

/* Toggle switch */
.toggle {
    position: relative;
    width: 42px;
    height: 24px;
    flex-shrink: 0;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--bg-4);
    border-radius: 100px;
    cursor: pointer;
    transition: background var(--transition);
    border: 1px solid var(--border);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background: var(--text-3);
    border-radius: 50%;
    transition: transform var(--transition), background var(--transition);
}

.toggle input:checked + .toggle-slider {
    background: var(--brand);
    border-color: var(--brand);
}

.toggle input:checked + .toggle-slider::before {
    transform: translateX(18px);
    background: #fff;
}

.toggle input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--bg-0) 0%, rgba(0, 30, 18, 0.8) 50%, var(--bg-0) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .section-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.cta-section .section-subline {
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}

/* --- Instagram Section --- */
.instagram-section {
    text-align: center;
}

.instagram-placeholder {
    max-width: 500px;
    margin: 2rem auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition);
}

.instagram-placeholder:hover {
    border-color: var(--brand-border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-brand);
}

.instagram-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

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

.instagram-handle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-1);
}

.instagram-blocked {
    display: none;
    font-size: 0.85rem;
    color: var(--text-4);
    max-width: 360px;
    line-height: 1.5;
}

/* --- About Page --- */
.about-takeaways {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.takeaway-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.takeaway-item:hover {
    border-color: var(--brand-border);
    transform: translateX(4px);
}

.takeaway-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--brand-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand);
    margin-top: 2px;
}

.takeaway-icon svg { width: 14px; height: 14px; }

.takeaway-text {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.5;
}

/* --- Legal Pages --- */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.legal-content h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-2);
    font-family: var(--font-body);
    font-weight: 600;
}

.legal-content p, .legal-content li {
    font-size: 0.95rem;
    color: var(--text-3);
    margin-bottom: 1rem;
}

.legal-content a {
    color: var(--brand);
}

/* --- Footer --- */
.footer {
    background: var(--bg-0);
    border-top: 1px solid var(--border);
    padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

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

.footer-brand-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 1rem;
}

.footer-brand-text {
    font-size: 0.9rem;
    color: var(--text-4);
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    transition: all var(--transition);
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--brand-glow);
    border-color: var(--brand-border);
    color: var(--brand);
}

.footer-social-link svg { width: 18px; height: 18px; }

.footer-nav-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav-link {
    font-size: 0.9rem;
    color: var(--text-4);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-nav-link:hover { color: var(--brand); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-4);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-link {
    font-size: 0.85rem;
    color: var(--text-4);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-legal-link:hover { color: var(--brand); }

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fade-in, .fade-in-left, .fade-in-right, .stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .hero-bg-img { transition: none; }
}

/* --- Placeholders & Empty States --- */
.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-3), var(--bg-4));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-4);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-4);
}

.empty-state svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    opacity: 0.4;
}

/* --- Dividers --- */
.divider {
    height: 1px;
    background: var(--border);
    margin: 0;
}

.divider-gold {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 3rem 0;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-brand  { color: var(--brand); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-3); }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1        { gap: 0.5rem; }
.gap-2        { gap: 1rem; }
.gap-3        { gap: 1.5rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.bg-alt { background: var(--bg-2); }
.bg-dark { background: var(--bg-0); }

/* =====================================================
   RESPONSIVE SYSTEM — Mobile First, 4 Breakpoints
   xs: 0–479px | sm: 480–767px | md: 768–1023px | lg: 1024px+
   ===================================================== */

/* --- 1024px: Tablet Landscape / Small Desktop --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid > :first-child {
        grid-column: 1 / -1;
    }
    .two-col {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .two-col.reverse { direction: ltr; }

    .lightbox-prev { left: -2.5rem; }
    .lightbox-next { right: -2.5rem; }

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

    .hero-title {
        font-size: clamp(2.6rem, 6vw, 4.5rem);
    }

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

    .section-header {
        max-width: 100%;
    }
}

/* --- 768px: Tablet Portrait --- */
@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    /* Nav */
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    /* Hero */
    .hero {
        min-height: 100svh; /* safe viewport height for mobile browsers */
    }
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }
    .hero-text {
        font-size: 1rem;
        max-width: 100%;
    }
    .hero-tagline {
        gap: 1.25rem;
        flex-wrap: wrap;
        margin-top: 2rem;
        padding-top: 1.75rem;
    }
    .hero-tagline-value {
        font-size: 1.1rem;
    }
    .hero-scroll { display: none; }

    /* Sections */
    .section {
        padding: clamp(3rem, 8vw, 5rem) 0;
    }
    .section-sm {
        padding: clamp(2rem, 6vw, 3.5rem) 0;
    }

    /* About page */
    .about-hero-text {
        font-size: 1rem;
    }
    .story-section .two-col {
        gap: 2rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .feature-card {
        padding: 1.5rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.5rem;
    }

    /* Events */
    .event-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    .event-date-box {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        min-width: unset;
        width: fit-content;
    }
    .event-date-day { font-size: 1.4rem; }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form {
        max-width: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    /* Lightbox nav arrows — hide on touch */
    .lightbox-prev,
    .lightbox-next { display: none; }
    .lightbox-inner {
        max-width: 95vw;
    }

    /* Cookie banner */
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        transform: translateX(0) translateY(100%);
        padding: 1.5rem;
    }
    .cookie-banner.visible {
        transform: translateX(0) translateY(0);
    }

    /* Booking section */
    .booking-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    /* Mission quote */
    .mission-quote {
        font-size: clamp(1.4rem, 4vw, 2rem);
        padding: 0 1rem;
    }

    /* Banner */
    .banner { aspect-ratio: 16/9; }

    /* Instagram block */
    .instagram-block {
        padding: 2.5rem 1.5rem;
    }

    /* Stat cards on dashboard */
    .stat-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- 480px: Small Phones --- */
@media (max-width: 480px) {
    :root {
        --nav-height: 60px;
    }

    /* Hero full-width buttons */
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    .hero-tagline {
        gap: 1rem;
    }
    .hero-tagline-item {
        flex: 1 1 45%;
    }
    .hero-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    /* Section headings */
    h2 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
    h3 { font-size: clamp(1.3rem, 5vw, 1.8rem); }

    /* Gallery tighter grid */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    /* Buttons full-width in banners */
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Cookie */
    .cookie-actions {
        flex-direction: column;
    }
    .cookie-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Events */
    .event-card {
        padding: 1.25rem;
    }

    /* Feature card icon */
    .feature-icon {
        width: 44px;
        height: 44px;
    }

    /* Footer nav columns stacked */
    .footer-nav-cols {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Booking CTA section */
    .booking-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Page header titles */
    .page-header h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    /* Lightbox close button repositioned */
    .lightbox-close {
        top: -2.5rem;
        font-size: 1.75rem;
    }
}

/* --- 375px: Very Small Phones (iPhone SE etc.) --- */
@media (max-width: 375px) {
    :root {
        --nav-height: 56px;
    }

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

    .hero-label {
        font-size: 0.7rem;
    }

    .container,
    .container-sm {
        padding: 0 1rem;
    }

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

    .event-card {
        padding: 1rem;
    }

    .btn-lg {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* --- Safe area insets for notch/island phones --- */
@supports (padding: env(safe-area-inset-bottom)) {
    .nav-mobile {
        padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
    }
    .cookie-banner {
        padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
    }
    .footer {
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    .fade-in, .fade-in-left, .fade-in-right, .stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .hero-bg-img {
        transform: none !important;
        transition: none !important;
    }
    .hero-scroll-line {
        animation: none !important;
    }
    body::before {
        transition: none !important;
    }
}
