/* ═══════════════════════════════════════════════════════════════════════════════
   ВЕРТЕП - "Казковий Вечір" (Enchanted Evening)
   Dramatic Editorial Magazine Style — Medieval Ukrainian Folklore
   Rich moody atmosphere, bold typography, asymmetric compositions
   ═══════════════════════════════════════════════════════════════════════════════ */

@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,500;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* The Enchanted Palette */
    --color-burgundy: #6B1B2F;
    --color-burgundy-deep: #4A1220;
    --color-burgundy-light: #8B3246;
    --color-forest: #1A2E1A;
    --color-forest-light: #2D4A2D;
    --color-forest-mist: #3D5A3D;
    --color-gold: #C5A356;
    --color-gold-bright: #D4B76A;
    --color-gold-dark: #9A7D3F;
    --color-amber: #E89B4C;
    --color-parchment: #F7F3EB;
    --color-parchment-dark: #EDE6D8;
    --color-ink: #1A1614;
    --color-ink-light: #2C2622;
    
    /* Text Colors */
    --color-text: #1A1614;
    --color-text-inverse: #F7F3EB;
    --color-text-muted: #6B5D52;
    --color-text-gold: #C5A356;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 7rem;
    --space-2xl: 12rem;
    
    /* Animation */
    --ease-dramatic: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.3s;
    --duration-normal: 0.6s;
    --duration-slow: 1s;
    
    /* Layout */
    --header-height: 100px;
    --max-width: 1600px;
    --border-gold: 1px solid var(--color-gold);
    --border-subtle: 1px solid rgba(197, 163, 86, 0.2);
    
    /* Shadows */
    --shadow-dramatic: 0 30px 80px -20px rgba(26, 22, 20, 0.5);
    --shadow-glow-gold: 0 0 60px -10px rgba(197, 163, 86, 0.4);
    --shadow-glow-burgundy: 0 0 80px -20px rgba(107, 27, 47, 0.5);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) var(--color-forest);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-forest); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 4px;
}

::selection {
    background: var(--color-burgundy);
    color: var(--color-parchment);
}

:focus { outline: none; }
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-ink);
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 10003;
    transition: top var(--duration-fast) var(--ease-smooth);
}
.skip-link:focus { top: var(--space-sm); }

/* ─────────────────────────────────────────────────────────────────────────────
   CUSTOM CURSOR
   ───────────────────────────────────────────────────────────────────────────── */
/* Custom cursor - only hide default when custom cursor is active */
@media (hover: hover) and (pointer: fine) {
    body.custom-cursor-active { cursor: none; }
    body.custom-cursor-active a,
    body.custom-cursor-active button,
    body.custom-cursor-active .btn,
    body.custom-cursor-active .location-card,
    body.custom-cursor-active .menu-toggle { cursor: none; }
}

.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    mix-blend-mode: difference;
    transition: transform 0.15s var(--ease-smooth);
}
.cursor.active { opacity: 1; }
.cursor.hover { transform: scale(4); }

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s var(--ease-smooth);
}
.cursor-follower.active { opacity: 0.5; }
.cursor-follower.hover {
    width: 70px;
    height: 70px;
    border-width: 2px;
    opacity: 0.8;
}

/* ─────────────────────────────────────────────────────────────────────────────
   BODY & ATMOSPHERE
   ───────────────────────────────────────────────────────────────────────────── */
body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--color-text);
    background: var(--color-forest);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Subtle paper texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    z-index: 9998;
}

/* Decorative corner ornaments */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: 
        radial-gradient(ellipse at top left, var(--color-gold) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, var(--color-burgundy) 0%, transparent 40%);
    z-index: 9997;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PAGE TRANSITION
   ───────────────────────────────────────────────────────────────────────────── */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--color-burgundy-deep);
    z-index: 10001;
    pointer-events: none;
    transform: translateY(100%);
    transition: transform 0.8s var(--ease-dramatic);
}
.page-transition.active { transform: translateY(0); }

/* ─────────────────────────────────────────────────────────────────────────────
   FLOATING DECORATIVE ELEMENTS
   ───────────────────────────────────────────────────────────────────────────── */
.floating-decor {
    position: fixed;
    pointer-events: none;
    z-index: 1;
}

.floating-decor__star {
    width: 20px;
    height: 20px;
    opacity: 0.15;
    background: var(--color-gold);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle 4s ease-in-out infinite;
}

.floating-decor__diamond {
    width: 12px;
    height: 12px;
    opacity: 0.1;
    background: var(--color-amber);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: twinkle 5s ease-in-out infinite reverse;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.2); }
}

/* ─────────────────────────────────────────────────────────────────────────────
   SCROLL PROGRESS
   ───────────────────────────────────────────────────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-burgundy) 0%, var(--color-gold) 50%, var(--color-burgundy) 100%);
    z-index: 10002;
    width: 0%;
    box-shadow: 0 0 20px var(--color-gold);
}

/* ─────────────────────────────────────────────────────────────────────────────
   TYPOGRAPHY
   ───────────────────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-text-inverse);
}

h1 {
    font-size: clamp(4rem, 14vw, 11rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    font-style: italic;
}

h2 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

p { max-width: 60ch; }
a { color: inherit; text-decoration: none; }

.text-gradient {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-amber) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTAINER
   ───────────────────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container { padding: 0 var(--space-lg); }
}

/* ─────────────────────────────────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.site-header.scrolled {
    background: rgba(26, 46, 26, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Logo - Dramatic and Ornate */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--duration-fast) ease;
}
.logo:hover { transform: scale(1.02); }

.logo-mark {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-parchment);
    line-height: 1.1;
    letter-spacing: 0.05em;
}

.logo-text span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 0;
    list-style: none;
}

.main-nav a {
    display: block;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-parchment);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    transition: color var(--duration-fast) ease;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: all var(--duration-fast) var(--ease-bounce);
    transform: translateX(-50%);
}

.main-nav a:hover,
.main-nav a.active { color: var(--color-gold); }

.main-nav a:hover::before,
.main-nav a.active::before { width: 30px; }

/* Menu Toggle */
.menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    background: transparent;
    border: var(--border-subtle);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--duration-fast) ease;
}

.menu-toggle:hover { border-color: var(--color-gold); }

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--color-gold);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

@media (max-width: 900px) {
    .menu-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-forest);
        padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
        transform: translateX(100%);
        transition: transform var(--duration-normal) var(--ease-dramatic);
        overflow-y: auto;
    }

    .main-nav.open { transform: translateX(0); }
    .main-nav ul { flex-direction: column; gap: 0; }

    .main-nav a {
        font-family: var(--font-display);
        font-size: 2.5rem;
        font-weight: 400;
        font-style: italic;
        text-transform: none;
        letter-spacing: 0;
        padding: var(--space-sm) 0;
        border-bottom: var(--border-subtle);
    }

    .main-nav a::before { display: none; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO SECTION - Dramatic Editorial Style
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-forest);
    isolation: isolate;
    z-index: 1;
}

/* Theatrical elements - subtle lighting effects */
.hero-spotlight {
    position: absolute;
    top: -50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center top, rgba(197, 163, 86, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero-curtain-trim,
.hero-curtain-trim--left,
.hero-curtain-trim--right {
    position: absolute;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-gold) 0%, transparent 30%, transparent 70%, var(--color-gold) 100%);
    opacity: 0.3;
    z-index: 3;
}
.hero-curtain-trim--left { left: var(--space-md); }
.hero-curtain-trim--right { right: var(--space-md); }

/* Animated gradient orbs - moody atmosphere */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbPulse 15s ease-in-out infinite;
}

.hero-orb--primary {
    width: 600px;
    height: 600px;
    background: var(--color-burgundy);
    top: -20%;
    right: -10%;
}

.hero-orb--secondary {
    width: 500px;
    height: 500px;
    background: var(--color-gold-dark);
    bottom: -15%;
    left: -10%;
    animation-delay: -5s;
}

.hero-orb--accent {
    width: 400px;
    height: 400px;
    background: var(--color-forest-light);
    top: 40%;
    left: 40%;
    opacity: 0.3;
    animation-delay: -10s;
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1) translate(0, 0); }
    33% { transform: scale(1.1) translate(20px, -20px); }
    66% { transform: scale(0.95) translate(-15px, 15px); }
}

/* Background image */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background__image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-background__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) saturate(80%) brightness(0.4);
    transform: scale(1.05);
    transition: transform 30s ease-out;
}

.hero-background__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(26, 46, 26, 0.7) 0%, rgba(26, 46, 26, 0.4) 40%, rgba(26, 46, 26, 0.9) 100%),
        radial-gradient(ellipse at 30% 50%, rgba(107, 27, 47, 0.3) 0%, transparent 60%);
}

/* Hero Ornaments */
.hero-ornament {
    position: absolute;
    width: 220px;
    height: 220px;
    color: var(--color-gold);
    opacity: 0.15;
    z-index: 2;
    animation: ornamentGlow 8s ease-in-out infinite;
}

.hero-ornament--left {
    left: 5%;
    top: 20%;
}

.hero-ornament--right {
    right: 5%;
    bottom: 20%;
    animation-delay: -4s;
}

@keyframes ornamentGlow {
    0%, 100% { opacity: 0.1; filter: drop-shadow(0 0 10px transparent); }
    50% { opacity: 0.2; filter: drop-shadow(0 0 20px var(--color-gold)); }
}

@media (max-width: 768px) {
    .hero-ornament { display: none; }
}

/* Hero Content - Dramatic Editorial Layout */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
    text-align: center;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeReveal 1s var(--ease-dramatic) 0.3s forwards;
}

.hero-content h1 {
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: heroTitleReveal 1.2s var(--ease-dramatic) 0.5s forwards;
}

.hero-content h1 span {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0.05em;
    color: var(--color-parchment);
    opacity: 0.8;
    margin-top: var(--space-sm);
    line-height: 1.6;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(247, 243, 235, 0.7);
    max-width: 50ch;
    margin: 0 auto var(--space-lg);
    opacity: 0;
    animation: fadeReveal 1s var(--ease-dramatic) 0.8s forwards;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeReveal 1s var(--ease-dramatic) 1s forwards;
}

@keyframes fadeReveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroTitleReveal {
    from { opacity: 0; transform: translateY(60px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: fadeReveal 1s var(--ease-dramatic) 1.3s forwards;
}

.hero-scroll__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.hero-scroll__inner span {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
}

.hero-scroll__line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--color-gold) 0%, transparent 100%);
    position: relative;
}

.hero-scroll__line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--color-gold);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(40px); opacity: 0; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-ink);
    box-shadow: var(--shadow-glow-gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-burgundy-deep) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--duration-fast) var(--ease-smooth);
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { color: var(--color-parchment); }

.btn-secondary {
    background: transparent;
    color: var(--color-parchment);
    border: 1px solid rgba(247, 243, 235, 0.3);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(197, 163, 86, 0.1);
}

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

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-ink);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECTIONS
   ───────────────────────────────────────────────────────────────────────────── */
.section {
    padding: var(--space-2xl) 0;
    position: relative;
    z-index: 15;
    background: inherit;
}

.section--cream {
    background: var(--color-parchment);
    color: var(--color-text);
}

.section--cream h2,
.section--cream h3 { color: var(--color-ink); }

.section--linen {
    background: var(--color-forest);
    position: relative;
}

.section--linen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
}

.section-header {
    margin-bottom: var(--space-xl);
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.section-label::before {
    content: '◆';
    font-size: 0.5rem;
}

.section--cream .section-label { color: var(--color-burgundy); }
.section--cream .section-label::before { color: var(--color-burgundy); }

.section-subtitle {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
}

.section--linen .section-subtitle { color: rgba(247, 243, 235, 0.6); }

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    background: var(--color-parchment);
}

.section-divider__ornament {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-burgundy), transparent);
}

.section-divider__star {
    width: 12px;
    height: 12px;
    background: var(--color-burgundy);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* ─────────────────────────────────────────────────────────────────────────────
   INTRO SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.intro-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1000px) {
    .intro-section {
        grid-template-columns: 1.1fr 1fr;
        gap: var(--space-2xl);
    }
}

.intro-content h2 {
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.intro-content p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.intro-content .btn { margin-top: var(--space-sm); }

.intro-image {
    position: relative;
}

.intro-image__main {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-dramatic);
}

.intro-image__main::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--color-gold);
    opacity: 0;
    z-index: 2;
    transition: all var(--duration-fast) ease;
    transform: translate(-10px, -10px);
}

.intro-image:hover .intro-image__main::before {
    opacity: 1;
    transform: translate(0, 0);
}

.intro-image__main img {
    width: 100%;
    height: auto;
    display: block;
    transition: all var(--duration-slow) var(--ease-smooth);
}

.intro-image:hover .intro-image__main img {
    transform: scale(1.05);
}

.intro-image__accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-burgundy);
    padding: var(--space-md) var(--space-lg);
    z-index: 2;
    box-shadow: var(--shadow-glow-burgundy);
}

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

.intro-image__accent-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--color-gold);
    line-height: 1;
}

.intro-image__accent-text span {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-parchment);
    opacity: 0.8;
}

/* ─────────────────────────────────────────────────────────────────────────────
   LOCATIONS GRID
   ───────────────────────────────────────────────────────────────────────────── */
.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

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

.location-card {
    background: var(--color-forest-light);
    overflow: hidden;
    transition: all var(--duration-fast) var(--ease-smooth);
    position: relative;
    border: var(--border-subtle);
}

.location-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--color-gold);
    opacity: 0;
    z-index: 3;
    transition: opacity var(--duration-fast) ease;
}

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

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dramatic);
}

.location-card__image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.location-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8);
    transition: all var(--duration-slow) var(--ease-smooth);
}

.location-card:hover .location-card__image img {
    transform: scale(1.1);
    filter: saturate(1);
}

.location-card__badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--color-burgundy);
    color: var(--color-gold);
    padding: 0.5rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 2;
}

.location-card__content {
    padding: var(--space-md);
}

.location-card__content h3 {
    color: var(--color-parchment);
    margin-bottom: var(--space-xs);
    font-size: 2rem;
    font-style: italic;
}

.location-card__address {
    font-size: 0.95rem;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.location-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.location-card__detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(247, 243, 235, 0.7);
}

.location-card__detail svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
}

.info-card {
    background: var(--color-forest-light);
    padding: var(--space-lg);
    border: var(--border-subtle);
    text-align: center;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.info-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.info-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    background: transparent;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.info-card h4 {
    color: var(--color-parchment);
    margin-bottom: var(--space-sm);
    font-size: 0.8rem;
}

.info-card p {
    color: rgba(247, 243, 235, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────────────────────
   STATISTICS
   ───────────────────────────────────────────────────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    text-align: center;
}

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

.stat-card {
    padding: var(--space-lg);
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, var(--color-burgundy) 50%, transparent 100%);
}

.stat-card:last-child::after { display: none; }

.stat-card__number {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 6rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-burgundy);
    line-height: 1;
}

.stat-card__label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
}

/* ─────────────────────────────────────────────────────────────────────────────
   FEATURES SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.features-section {
    background: var(--color-burgundy-deep);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(197, 163, 86, 0.1) 0%, transparent 60%);
}

.features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.feature-block {
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    border: 1px solid rgba(197, 163, 86, 0.15);
    margin: -0.5px;
    transition: all var(--duration-fast) var(--ease-smooth);
    position: relative;
}

.feature-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(197, 163, 86, 0.05);
    opacity: 0;
    transition: opacity var(--duration-fast) ease;
}

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

.feature-block__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 50%;
    transition: transform var(--duration-fast) var(--ease-bounce);
}

.feature-block__icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-ink);
}

.feature-block:hover .feature-block__icon {
    transform: scale(1.15) rotate(-5deg);
}

.feature-block h4 {
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
    position: relative;
}

.feature-block p {
    color: rgba(247, 243, 235, 0.7);
    font-size: 0.95rem;
    margin: 0 auto var(--space-md);
    max-width: 280px;
    position: relative;
}

.feature-block .btn-secondary {
    color: var(--color-gold);
    border-color: rgba(197, 163, 86, 0.3);
}

.feature-block .btn-secondary:hover {
    border-color: var(--color-gold);
    background: rgba(197, 163, 86, 0.15);
}

/* ─────────────────────────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-md);
}

.testimonial-card {
    background: var(--color-forest-light);
    padding: var(--space-lg);
    border: var(--border-subtle);
    transition: all var(--duration-fast) var(--ease-smooth);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-sm);
    right: var(--space-md);
    font-family: var(--font-display);
    font-size: 6rem;
    font-style: italic;
    color: var(--color-gold);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow-gold);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-md);
}

.testimonial-card__stars svg {
    width: 18px;
    height: 18px;
    fill: var(--color-gold);
}

.testimonial-card__text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-parchment);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    position: relative;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-burgundy-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-gold);
}

.testimonial-card__info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-parchment);
    margin-bottom: 2px;
    text-transform: none;
    letter-spacing: 0;
}

.testimonial-card__info span {
    font-size: 0.75rem;
    color: var(--color-gold);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION NAVIGATION
   ───────────────────────────────────────────────────────────────────────────── */
.section-nav {
    position: fixed;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    opacity: 0;
    transition: opacity var(--duration-fast) ease;
}

.section-nav.visible { opacity: 1; }

.section-nav__dot {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 1px solid rgba(197, 163, 86, 0.5);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
    position: relative;
}

.section-nav__dot::before {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + var(--space-sm));
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    white-space: nowrap;
    opacity: 0;
    transition: opacity var(--duration-fast) ease;
}

.section-nav__dot:hover::before,
.section-nav__dot.active::before { opacity: 1; }

.section-nav__dot:hover,
.section-nav__dot.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.5);
}

@media (max-width: 768px) {
    .section-nav { display: none; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   SCROLL TO TOP
   ───────────────────────────────────────────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-fast) var(--ease-smooth);
    z-index: 900;
    box-shadow: var(--shadow-glow-gold);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--color-burgundy);
    transform: translateY(-5px);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
    color: var(--color-ink);
}

.scroll-top:hover svg { color: var(--color-gold); }

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--color-ink);
    padding: var(--space-2xl) 0 var(--space-lg);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-burgundy) 0%, var(--color-gold) 50%, var(--color-burgundy) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-parchment);
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    color: rgba(247, 243, 235, 0.5);
    font-size: 1rem;
    max-width: 350px;
}

@media (max-width: 900px) {
    .footer-brand p { margin: 0 auto; }
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--color-gold) !important;
    margin-top: var(--space-md) !important;
    font-size: 1.1rem !important;
}

.footer-links h4 {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: var(--space-sm); }

.footer-links a {
    color: rgba(247, 243, 235, 0.5);
    font-size: 0.95rem;
    transition: color var(--duration-fast) ease;
}

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

.footer-bottom {
    max-width: var(--max-width);
    margin: var(--space-xl) auto 0;
    padding: var(--space-md) var(--space-md) 0;
    border-top: 1px solid rgba(197, 163, 86, 0.15);
    text-align: center;
}

.footer-bottom p {
    color: rgba(247, 243, 235, 0.55);
    font-size: 0.8rem;
    margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────────────────────
   REVEAL ANIMATIONS
   ───────────────────────────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all var(--duration-slow) var(--ease-dramatic);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

.reveal-blur {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: all var(--duration-slow) var(--ease-dramatic);
}

.reveal-blur.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.reveal-pop {
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--duration-normal) var(--ease-bounce);
}

.reveal-pop.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-clip {
    clip-path: inset(100% 0 0 0);
    transition: clip-path var(--duration-slow) var(--ease-dramatic);
}

.reveal-clip.visible {
    clip-path: inset(0 0 0 0);
}

.reveal-rotate {
    opacity: 0;
    transform: perspective(1000px) rotateX(-15deg) translateY(40px);
    transition: all var(--duration-slow) var(--ease-dramatic);
}

.reveal-rotate.visible {
    opacity: 1;
    transform: perspective(1000px) rotateX(0) translateY(0);
}

/* ─────────────────────────────────────────────────────────────────────────────
   PAGE HEADER - Inner pages
   ───────────────────────────────────────────────────────────────────────────── */
.page-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-forest);
    overflow: hidden;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(107, 27, 47, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(197, 163, 86, 0.15) 0%, transparent 50%);
}

.page-header__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.page-header__shape {
    position: absolute;
    border: 1px solid var(--color-gold);
    opacity: 0.1;
}

.page-header__shape:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: shapeRotate 40s linear infinite;
}

.page-header__shape:nth-child(2) {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: 5%;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: shapeRotate 30s linear infinite reverse;
}

.page-header__shape:nth-child(3) {
    width: 180px;
    height: 180px;
    top: 25%;
    left: -50px;
    border-radius: 50%;
    animation: shapePulse 10s ease-in-out infinite;
}

@keyframes shapeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shapePulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.15; }
}

.page-header__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.page-header__content .section-label {
    justify-content: center;
    margin-bottom: var(--space-md);
}

.page-header__content .section-label::before {
    display: none;
}

.page-header__content h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: heroTitleReveal 0.8s var(--ease-dramatic) 0.2s forwards;
}

.page-header__content p {
    font-size: 1.1rem;
    color: rgba(247, 243, 235, 0.7);
    max-width: 50ch;
    margin: 0 auto;
    opacity: 0;
    animation: fadeReveal 0.8s var(--ease-dramatic) 0.4s forwards;
}

.page-header__content::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-burgundy), var(--color-gold), var(--color-burgundy));
    margin: var(--space-lg) auto 0;
    opacity: 0;
    animation: fadeReveal 0.8s var(--ease-dramatic) 0.6s forwards;
}

/* ─────────────────────────────────────────────────────────────────────────────
   MENU PAGE STYLES
   ───────────────────────────────────────────────────────────────────────────── */
.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.menu-category {
    margin-bottom: var(--space-xl);
    position: relative;
}

.menu-category--with-icon h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--color-ink);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-burgundy);
    position: relative;
}

/* Decorative underline accent */
.menu-category--with-icon h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-burgundy));
    border-radius: 2px;
}

.menu-category__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-burgundy-deep) 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.3);
    transition: all var(--duration-fast) var(--ease-spring);
    flex-shrink: 0;
}

.menu-category__icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
}

.menu-category:hover .menu-category__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.4);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xs);
}

.menu-item {
    display: flex;
    flex-direction: column;
    padding: var(--space-sm) var(--space-md);
    background: rgba(107, 27, 47, 0.03);
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all var(--duration-fast) var(--ease-gentle);
    position: relative;
}

.menu-item:hover {
    background: rgba(107, 27, 47, 0.08);
    border-left-color: var(--color-burgundy);
    transform: translateX(4px);
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-ink);
    transition: color var(--duration-fast) ease;
}

.menu-item:hover .menu-item-name {
    color: var(--color-burgundy);
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: 0.25rem;
    line-height: 1.5;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .menu-items {
        grid-template-columns: 1fr;
    }

    .menu-category__icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .menu-category--with-icon h3 {
        font-size: 1.5rem;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   GALLERY PAGE STYLES
   ───────────────────────────────────────────────────────────────────────────── */
.gallery-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    padding: 0 var(--space-lg);
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

.gallery-section {
    margin-bottom: var(--space-2xl);
    padding: 0 var(--space-lg);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-title {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.gallery-title__badge {
    background: var(--color-burgundy);
    color: var(--color-gold);
    padding: 0.5rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.gallery-location {
    color: var(--color-burgundy);
    margin-bottom: var(--space-lg);
    font-size: 1rem;
    font-weight: 500;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-sm);
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-forest-light);
    border: var(--border-subtle);
    display: block;
}

.gallery-item__image {
    width: 100%;
    height: 100%;
}

.gallery-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8);
    transition: all var(--duration-slow) var(--ease-smooth);
}

.gallery-item:hover .gallery-item__image img {
    transform: scale(1.1);
    filter: saturate(1);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 22, 20, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--duration-fast) ease;
}

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

.gallery-item__overlay span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    transform: translateY(10px);
    transition: transform var(--duration-fast) var(--ease-smooth);
}

.gallery-item:hover .gallery-item__overlay span {
    transform: translateY(0);
}

.gallery-placeholder {
    background: var(--color-forest-light);
    border: var(--border-subtle);
    padding: var(--space-2xl);
    text-align: center;
}

.gallery-placeholder__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: transparent;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder__icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
}

.gallery-placeholder p {
    color: rgba(247, 243, 235, 0.6);
    margin: 0 auto var(--space-md);
    max-width: 40ch;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(26, 22, 20, 0.97);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-fast) ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

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

.lightbox__image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox__caption {
    text-align: center;
    color: rgba(247, 243, 235, 0.7);
    margin-top: var(--space-sm);
    font-size: 0.95rem;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) ease;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--color-gold);
    color: var(--color-ink);
}

.lightbox__close {
    top: var(--space-md);
    right: var(--space-md);
}

.lightbox__prev {
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
}

/* Lightbox Header with Counter */
.lightbox__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    z-index: 10;
}

.lightbox__counter {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(247, 243, 235, 0.8);
    letter-spacing: 0.1em;
}

.lightbox__header .lightbox__close {
    position: static;
    width: 44px;
    height: 44px;
}

.lightbox__header .lightbox__close svg {
    width: 20px;
    height: 20px;
}

.lightbox__image {
    transition: opacity 0.3s ease;
}

/* Gallery Filter Tabs */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    padding: 0 var(--space-lg);
    flex-wrap: wrap;
}

.gallery-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}

.gallery-filter:hover {
    border-color: var(--color-burgundy);
    color: var(--color-burgundy);
}

.gallery-filter.active {
    background: var(--color-burgundy);
    border-color: var(--color-burgundy);
    color: var(--color-parchment);
}

.gallery-filter__icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-filter__icon svg {
    width: 100%;
    height: 100%;
}

.gallery-filter__count {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.gallery-filter.active .gallery-filter__count {
    background: rgba(255, 255, 255, 0.2);
}

/* Masonry Grid */
.gallery-grid--masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: var(--space-sm);
    grid-auto-flow: dense;
}

.gallery-grid--masonry .gallery-item {
    aspect-ratio: auto;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item--tall {
    grid-row: span 2;
}

@media (max-width: 1200px) {
    .gallery-grid--masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 768px) {
    .gallery-grid--masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    .gallery-item--tall {
        grid-row: span 2;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .gallery-filter {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .gallery-filter__icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .gallery-grid--masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .gallery-grid--masonry .gallery-item {
        aspect-ratio: 16/10;
    }

    .gallery-item--wide,
    .gallery-item--tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Image Loading Animation */
.gallery-item__loader {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        var(--color-forest-light) 0%,
        rgba(247, 243, 235, 0.1) 50%,
        var(--color-forest-light) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

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

.gallery-item__image.loaded .gallery-item__loader {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gallery-item__image.loaded img {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(1.02);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   SERVICES PAGE STYLES
   ───────────────────────────────────────────────────────────────────────────── */
.services-content {
    max-width: 900px;
    margin: 0 auto;
}

.services-content p {
    color: var(--color-text);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-content p strong {
    color: var(--color-burgundy);
    font-weight: 600;
}

.services-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
    justify-content: center;
    text-align: center;
}

.service-feature {
    background: var(--color-burgundy);
    border: none;
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--duration-fast) var(--ease-smooth);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(107, 27, 47, 0.2);
}

.service-feature:hover {
    background: var(--color-burgundy-deep);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(107, 27, 47, 0.3);
}

.service-feature__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 243, 235, 0.15);
    border-radius: 50%;
}

.service-feature__icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
}

.service-feature h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-parchment);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT PAGE STYLES
   ───────────────────────────────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-location {
    background: white;
    padding: var(--space-lg);
    border-radius: 12px;
    border-left: 4px solid var(--color-burgundy);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-location__badge {
    display: inline-block;
    background: var(--color-burgundy);
    color: var(--color-parchment);
    padding: 0.35rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-bottom: var(--space-sm);
}

.contact-location h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-ink);
    margin-bottom: var(--space-sm);
}

.contact-location p {
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

.contact-location p strong {
    color: var(--color-ink);
    font-weight: 600;
}

.contact-location a {
    color: var(--color-burgundy);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--duration-fast) ease;
}

.contact-location a:hover {
    color: var(--color-burgundy-light);
}

.contact-hours {
    background: var(--color-burgundy);
    padding: var(--space-lg);
    border-radius: 12px;
    text-align: center;
    color: var(--color-parchment);
}

.contact-hours__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-xs);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hours__icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
}

.contact-hours h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-hours p {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-form-wrapper {
    background: white;
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-ink);
    margin-bottom: var(--space-xs);
}

.contact-form-wrapper > p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-ink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-ink);
    background: var(--color-parchment);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all var(--duration-fast) ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-burgundy);
    background: white;
    box-shadow: 0 0 0 4px rgba(107, 27, 47, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: var(--space-md);
}

/* Location Mini Cards (Map Section) */
.location-mini-card {
    background: rgba(247, 243, 235, 0.05);
    border: 1px solid rgba(197, 163, 86, 0.2);
    padding: var(--space-lg);
    border-radius: 12px;
    text-align: center;
    transition: all var(--duration-fast) ease;
}

.location-mini-card:hover {
    background: rgba(247, 243, 235, 0.08);
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

.location-mini-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-mini-card__icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
}

.location-mini-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-parchment);
    margin-bottom: 0.5rem;
}

.location-mini-card__address {
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.location-mini-card__detail {
    font-size: 0.85rem;
    color: rgba(247, 243, 235, 0.6);
    margin-bottom: var(--space-md);
}

.location-mini-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--duration-fast) ease;
}

.location-mini-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--duration-fast) ease;
}

.location-mini-card__link:hover {
    color: var(--color-parchment);
}

.location-mini-card__link:hover svg {
    transform: translate(3px, -3px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   NEWS PAGE STYLES
   ───────────────────────────────────────────────────────────────────────────── */
.news-grid {
    max-width: 900px;
    margin: 0 auto;
}

.news-empty {
    background: white;
    border: 2px solid rgba(107, 27, 47, 0.1);
    border-radius: 16px;
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.news-empty__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.news-empty__icon svg {
    width: 64px;
    height: 64px;
    color: var(--color-gold);
}

.news-empty h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-style: italic;
    color: var(--color-ink);
    margin-bottom: var(--space-sm);
}

.news-empty p {
    color: var(--color-text-muted);
    margin: 0 auto;
    max-width: 40ch;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CTA SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.section--cta {
    background: var(--color-burgundy-deep);
    padding: var(--space-2xl) var(--space-md);
    position: relative;
    overflow: hidden;
    z-index: 20;
}

.section--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(197, 163, 86, 0.15) 0%, transparent 60%);
}

.cta-frame {
    position: absolute;
    inset: var(--space-lg);
    border: 1px solid var(--color-gold);
    opacity: 0.2;
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-style: italic;
    margin-bottom: var(--space-md);
}

.cta-content p {
    color: rgba(247, 243, 235, 0.7);
    margin: 0 auto var(--space-lg);
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 5rem;
        --space-2xl: 8rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn { width: 100%; }

    .stats-grid .stat-card::after {
        width: 50%;
        height: 1px;
        right: 25%;
        top: auto;
        bottom: 0;
        transform: none;
    }

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

/* ─────────────────────────────────────────────────────────────────────────────
   ENHANCED MICRO-INTERACTIONS & CARD EFFECTS
   ───────────────────────────────────────────────────────────────────────────── */

/* Shine effect on hover */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    transform: rotate(30deg) translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.shine-effect:hover::after {
    transform: rotate(30deg) translateX(100%);
}

/* Glow effect */
.glow-effect {
    transition: box-shadow var(--duration-fast) ease;
}

.glow-effect:hover {
    box-shadow:
        0 0 20px rgba(196, 112, 79, 0.3),
        0 8px 40px rgba(44, 36, 25, 0.15);
}

/* Card lift effect */
.card-lift {
    transition: all var(--duration-fast) var(--ease-spring);
}

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

/* Image zoom container */
.img-zoom {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.img-zoom img {
    transition: transform var(--duration-normal) var(--ease-smooth);
}

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

/* Icon bounce on hover */
.icon-bounce {
    display: inline-block;
    transition: transform var(--duration-fast) var(--ease-spring);
}

.icon-bounce:hover {
    transform: translateY(-4px);
}

/* Float animation */
.float {
    animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Pulse animation */
.pulse-attention {
    animation: pulseAttention 2s ease-in-out infinite;
}

@keyframes pulseAttention {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(196, 112, 79, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 30px rgba(196, 112, 79, 0.5);
    }
}

/* Text highlight */
.text-highlight {
    background: linear-gradient(120deg, var(--color-honey-light) 0%, var(--color-honey-light) 100%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: 0 88%;
    transition: background-size 0.4s ease;
}

.text-highlight.visible,
.text-highlight:hover {
    background-size: 100% 40%;
}

/* Underline slide effect */
.link-slide {
    position: relative;
    display: inline-block;
}

.link-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-terracotta);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--duration-fast) var(--ease-smooth);
}

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

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-dark) 100%);
    color: var(--color-cream);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-warm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-fast) var(--ease-spring);
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(196, 112, 79, 0.4);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(44, 36, 25, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-gentle);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--duration-normal) var(--ease-spring);
}

.lightbox.active .lightbox__content {
    transform: scale(1) translateY(0);
}

.lightbox__image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__caption {
    text-align: center;
    color: var(--color-cream);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    margin-top: var(--space-md);
    opacity: 0.9;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-cream);
    cursor: pointer;
    transition: all var(--duration-fast) ease;
    border-radius: 50%;
}

.lightbox__close {
    top: var(--space-md);
    right: var(--space-md);
    width: 48px;
    height: 48px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__close:hover {
    background: var(--color-terracotta);
    border-color: var(--color-terracotta);
    transform: rotate(90deg);
}

.lightbox__prev,
.lightbox__next {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__prev { left: var(--space-md); }
.lightbox__next { right: var(--space-md); }

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-honey);
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRINT
   ───────────────────────────────────────────────────────────────────────────── */
@media print {
    body::before,
    body::after,
    .cursor,
    .cursor-follower,
    .scroll-progress,
    .scroll-top,
    .page-transition,
    .floating-decor,
    .section-nav,
    .hero-orb,
    .hero-spotlight,
    .hero-curtain-trim {
        display: none !important;
    }

    .site-header { position: static; }
    .hero { min-height: auto; padding: var(--space-lg) 0; }
    .section { padding: var(--space-lg) 0; }
}
