/* =============================================
   AURELIA GRAND — Design System & Variables
   ============================================= */
:root {
    /* Colors */
    --ivory: #FAF7F2;
    --champagne: #F5EDE0;
    --warm-white: #FDFCFA;
    --beige: #E8DFD0;
    --soft-beige: #F0E9DD;
    --gold: #C9A96E;
    --gold-light: #D4B87A;
    --gold-dark: #B8944F;
    --espresso: #3D2B1F;
    --espresso-light: #5C4033;
    --black: #1A1410;
    --matte-black: #2A2320;
    --olive: #6B6B4F;
    --olive-light: #8A8A6A;
    --cream-border: #E0D5C5;
    --shadow-soft: rgba(61, 43, 31, 0.08);
    --shadow-medium: rgba(61, 43, 31, 0.15);
    --shadow-gold: rgba(201, 169, 110, 0.2);

    /* Typography */
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-editorial: 'Cormorant Garamond', 'Georgia', serif;
    --font-script: 'Great Vibes', cursive;
    --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    --space-4xl: 10rem;

    /* Layout */
    --max-width: 1280px;
    --header-height: 80px;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-elegant: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 0.3s;
    --duration-normal: 0.5s;
    --duration-slow: 0.8s;
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--espresso);
    background-color: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

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

::selection {
    background: var(--gold);
    color: var(--white);
}

/* =============================================
   Typography Utilities
   ============================================= */
.script-word {
    font-family: var(--font-script);
    font-weight: 400;
    color: var(--gold);
    font-size: 1.1em;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all var(--duration-normal) var(--ease-smooth);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--duration-normal) var(--ease-smooth);
}

.btn:hover::after {
    width: 100%;
}

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

.btn--gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-gold);
}

.btn--outline {
    background: transparent;
    color: var(--warm-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.btn--lg {
    padding: 1.1rem 2.8rem;
    font-size: 0.8rem;
}

.btn--full {
    width: 100%;
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--duration-normal) var(--ease-smooth);
    padding: 1.2rem 0;
}

.header.scrolled {
    background: rgba(26, 20, 16, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    z-index: 10;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--warm-white);
}

.logo-accent {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.65em;
    color: var(--gold);
    margin-top: -2px;
}

.header__nav {
    display: flex;
}

.nav__list {
    display: flex;
    gap: 2.2rem;
}

.nav__link {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding: 0.3rem 0;
    transition: color var(--duration-fast) var(--ease-smooth);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--duration-normal) var(--ease-smooth);
}

.nav__link:hover,
.nav__link.active {
    color: var(--gold);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.header__cta {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.65rem 1.5rem;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.header__cta:hover {
    background: var(--gold);
    color: var(--black);
}

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
    padding: 5px;
}

.header__burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--warm-white);
    transition: all var(--duration-fast) var(--ease-smooth);
    transform-origin: center;
}

.header__burger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 20, 16, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-slow) var(--ease-smooth);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

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

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.mobile-nav__link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--warm-white);
    letter-spacing: 0.1em;
    transition: color var(--duration-fast) var(--ease-smooth);
    opacity: 0;
    transform: translateY(20px);
}

.mobile-nav.active .mobile-nav__link {
    opacity: 1;
    transform: translateY(0);
    transition: opacity var(--duration-slow) var(--ease-smooth), transform var(--duration-slow) var(--ease-smooth), color var(--duration-fast) var(--ease-smooth);
}

.mobile-nav.active .mobile-nav__list li:nth-child(1) .mobile-nav__link { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav__list li:nth-child(2) .mobile-nav__link { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav__list li:nth-child(3) .mobile-nav__link { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav__list li:nth-child(4) .mobile-nav__link { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav__list li:nth-child(5) .mobile-nav__link { transition-delay: 0.3s; }
.mobile-nav.active .mobile-nav__list li:nth-child(6) .mobile-nav__link { transition-delay: 0.35s; }
.mobile-nav.active .mobile-nav__list li:nth-child(7) .mobile-nav__link { transition-delay: 0.4s; }

.mobile-nav__link:hover {
    color: var(--gold);
}

.mobile-nav__cta {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 1rem 2.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-nav.active .mobile-nav__cta {
    opacity: 1;
    transform: translateY(0);
    transition: all var(--duration-slow) var(--ease-smooth) 0.45s;
}

.mobile-nav__cta:hover {
    background: var(--gold);
    color: var(--black);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 20, 16, 0.55) 0%,
        rgba(26, 20, 16, 0.4) 40%,
        rgba(26, 20, 16, 0.65) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--space-lg);
    max-width: 900px;
}

.hero__decorative-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto var(--space-lg);
    opacity: 0;
    animation: fadeInLine 1s var(--ease-smooth) 0.5s forwards;
}

.hero__decorative-line--bottom {
    margin: var(--space-lg) auto 0;
    animation-delay: 1.8s;
}

@keyframes fadeInLine {
    to { opacity: 1; width: 80px; }
}

.hero__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-smooth) 0.3s forwards;
}

.hero__heading {
    margin-bottom: var(--space-lg);
}

.hero__line {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 700;
    color: var(--warm-white);
    letter-spacing: 0.05em;
    line-height: 1.1;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-smooth) forwards;
}

.hero__line:nth-child(1) { animation-delay: 0.5s; }
.hero__line:nth-child(2) { animation-delay: 0.65s; }
.hero__line:nth-child(3) { animation-delay: 0.8s; }
.hero__line:nth-child(4) { animation-delay: 0.95s; }

.hero__line--script {
    font-family: var(--font-script);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 400;
    color: var(--gold);
    text-transform: none;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-top: 0.2em;
}

.hero__text {
    font-family: var(--font-editorial);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.8;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-smooth) 1.2s forwards;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-smooth) 1.5s forwards;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-smooth) 2s forwards;
}

.hero__scroll-indicator span {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

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

/* =============================================
   EDITORIAL / BROCHURE INTRO
   ============================================= */
.editorial {
    padding: var(--space-4xl) 0;
    background: var(--ivory);
}

.editorial__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.editorial__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.editorial__heading {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--espresso);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.editorial__gold-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: var(--space-md) 0;
}

.editorial__subheading {
    font-family: var(--font-editorial);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--espresso-light);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    font-weight: 300;
    font-style: italic;
}

.editorial__body {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--espresso-light);
    line-height: 1.9;
    max-width: 480px;
    font-weight: 300;
}

.editorial__stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--cream-border);
}

.editorial__stat {
    display: flex;
    flex-direction: column;
}

.editorial__stat-number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.editorial__stat-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--espresso-light);
    margin-top: 0.4rem;
    text-transform: uppercase;
}

.editorial__right {
    position: relative;
    height: 600px;
}

.editorial__image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 85%;
    overflow: hidden;
}

.editorial__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.editorial__image-main:hover img {
    transform: scale(1.05);
}

.editorial__image-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    opacity: 0.3;
    pointer-events: none;
}

.editorial__image-overlay {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 55%;
    height: 50%;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 15px 50px var(--shadow-medium);
}

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

.editorial__image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    opacity: 0.5;
    pointer-events: none;
}

.editorial__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--gold);
    opacity: 0.3;
    z-index: 0;
}

/* =============================================
   FEATURE HIGHLIGHTS
   ============================================= */
.features {
    padding: var(--space-3xl) 0;
    background: var(--espresso);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.06);
}

.features__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.feature-item {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    border-right: 1px solid rgba(201, 169, 110, 0.15);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.feature-item:last-child {
    border-right: none;
}

.feature-item:hover {
    background: rgba(201, 169, 110, 0.05);
}

.feature-item__number {
    font-family: var(--font-editorial);
    font-size: 0.85rem;
    color: var(--gold);
    opacity: 0.5;
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 300;
}

.feature-item__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    color: var(--gold);
    opacity: 0.8;
}

.feature-item__icon svg {
    width: 100%;
    height: 100%;
}

.feature-item__title {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-white);
    margin-bottom: var(--space-xs);
}

.feature-item__text {
    font-family: var(--font-editorial);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    line-height: 1.6;
}

/* =============================================
   EVENT TYPES
   ============================================= */
.events {
    padding: var(--space-4xl) 0 var(--space-3xl);
    background: var(--warm-white);
}

.events__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    padding: 0 var(--space-lg);
}

.events__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.events__heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: var(--espresso);
    line-height: 1.2;
}

.events__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.event-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.event-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.event-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(26, 20, 16, 0.85) 0%,
        rgba(26, 20, 16, 0.1) 60%,
        rgba(26, 20, 16, 0) 100%
    );
    transition: background var(--duration-normal) var(--ease-smooth);
}

.event-card:hover .event-card__overlay {
    background: linear-gradient(
        to top,
        rgba(26, 20, 16, 0.9) 0%,
        rgba(201, 169, 110, 0.1) 60%,
        rgba(26, 20, 16, 0.15) 100%
    );
}

.event-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl) var(--space-lg);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.event-card__icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.event-card:hover .event-card__icon {
    opacity: 1;
    transform: translateY(0);
}

.event-card__title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--warm-white);
    letter-spacing: 0.05em;
    transition: color var(--duration-fast) var(--ease-smooth);
}

.event-card:hover .event-card__title {
    color: var(--gold);
}

.event-card__line {
    display: block;
    width: 0;
    height: 1px;
    background: var(--gold);
    margin-top: var(--space-sm);
    transition: width var(--duration-normal) var(--ease-smooth);
}

.event-card:hover .event-card__line {
    width: 40px;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid transparent;
    z-index: 3;
    transition: border-color var(--duration-normal) var(--ease-smooth);
    pointer-events: none;
}

.event-card:hover::before {
    border-color: var(--gold);
}

/* =============================================
   VENUE SHOWCASE
   ============================================= */
.venue {
    padding: var(--space-4xl) 0;
    background: var(--ivory);
}

.venue__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.venue__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.venue__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.venue__heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: var(--espresso);
    line-height: 1.2;
}

.venue__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.venue__card {
    position: relative;
    overflow: hidden;
}

.venue__card--large {
    grid-row: span 2;
}

.venue__card--wide {
    grid-column: span 2;
}

.venue__card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

.venue__card--large .venue__card-inner {
    min-height: 670px;
}

.venue__card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.venue__card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(26, 20, 16, 0.8) 0%,
        rgba(26, 20, 16, 0) 50%
    );
}

.venue__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    z-index: 2;
}

.venue__card-tag {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.15);
    padding: 0.3rem 0.8rem;
    display: inline-block;
    margin-bottom: var(--space-sm);
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.venue__card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--warm-white);
    margin-bottom: 0.5rem;
}

.venue__card-text {
    font-family: var(--font-editorial);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    line-height: 1.6;
}

/* =============================================
   WHY AURELIA GRAND
   ============================================= */
.why {
    padding: var(--space-4xl) 0;
    background: var(--warm-white);
}

.why__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.why__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.why__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.why__heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: var(--espresso);
    line-height: 1.2;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why__card {
    padding: var(--space-xl);
    border: 1px solid var(--cream-border);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-smooth);
    position: relative;
    background: var(--ivory);
}

.why__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--duration-normal) var(--ease-smooth);
    transform-origin: left;
}

.why__card:hover::before {
    transform: scaleX(1);
}

.why__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-soft);
    border-color: var(--gold);
}

.why__card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto var(--space-md);
    color: var(--gold);
}

.why__card-icon svg {
    width: 100%;
    height: 100%;
}

.why__card-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: var(--space-sm);
}

.why__card-text {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--espresso-light);
    line-height: 1.7;
    font-weight: 300;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
    padding: var(--space-4xl) 0;
    background: var(--ivory);
}

.gallery__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.gallery__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.gallery__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.gallery__heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: var(--espresso);
    line-height: 1.2;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 1rem;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 2;
}

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

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

.gallery__item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 20, 16, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-icon {
    width: 40px;
    height: 40px;
    color: var(--warm-white);
    transform: scale(0.8);
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.gallery__item:hover .gallery__item-icon {
    transform: scale(1);
}

.gallery__item-icon svg {
    width: 100%;
    height: 100%;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 20, 16, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-smooth);
    backdrop-filter: blur(10px);
}

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

.lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: var(--warm-white);
    z-index: 10;
    transition: color var(--duration-fast) var(--ease-smooth);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__close:hover {
    color: var(--gold);
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: var(--warm-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--duration-fast) var(--ease-smooth);
}

.lightbox__prev { left: 2rem; }
.lightbox__next { right: 2rem; }

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

.lightbox__prev svg,
.lightbox__next svg {
    width: 32px;
    height: 32px;
}

.lightbox__content {
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.95);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.lightbox.active .lightbox__content img {
    opacity: 1;
    transform: scale(1);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--champagne);
}

.testimonials__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.testimonials__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.testimonials__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.testimonials__heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: var(--espresso);
    line-height: 1.2;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--warm-white);
    padding: var(--space-xl);
    position: relative;
    border: 1px solid var(--cream-border);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-soft);
}

.testimonial-card__quote {
    margin-bottom: var(--space-md);
    color: var(--gold);
}

.testimonial-card__quote svg {
    width: 40px;
    height: 30px;
}

.testimonial-card__text {
    font-family: var(--font-editorial);
    font-size: 1.05rem;
    color: var(--espresso-light);
    line-height: 1.8;
    font-weight: 300;
    font-style: italic;
    margin-bottom: var(--space-md);
}

.testimonial-card__divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: var(--space-md);
}

.testimonial-card__name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--espresso);
    display: block;
}

.testimonial-card__occasion {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 20, 16, 0.78);
}

.cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 var(--space-lg);
}

.cta__decorative-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto var(--space-lg);
}

.cta__heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--warm-white);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.cta__text {
    font-family: var(--font-editorial);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    font-weight: 300;
}

.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--warm-white);
}

.contact__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.contact__heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 600;
    color: var(--espresso);
    line-height: 1.2;
    margin-bottom: var(--space-xl);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact__detail {
    display: flex;
    flex-direction: column;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--cream-border);
}

.contact__detail-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.contact__detail-value {
    font-family: var(--font-editorial);
    font-size: 1.05rem;
    color: var(--espresso);
    font-weight: 400;
    line-height: 1.6;
}

a.contact__detail-value:hover {
    color: var(--gold);
}

/* Form */
.contact__form {
    background: var(--ivory);
    padding: var(--space-xl);
    border: 1px solid var(--cream-border);
}

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

.form__group {
    display: flex;
    flex-direction: column;
}

.form__group--full {
    grid-column: span 2;
    margin-bottom: 1.5rem;
}

.form__label {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--espresso-light);
    margin-bottom: 0.5rem;
}

.form__input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--cream-border);
    background: var(--warm-white);
    color: var(--espresso);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: border-color var(--duration-fast) var(--ease-smooth);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.form__input:focus {
    border-color: var(--gold);
}

.form__input::placeholder {
    color: rgba(92, 64, 51, 0.35);
}

.form__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A96E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.contact__form .btn {
    margin-top: 0.5rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-3xl) 0 0;
}

.footer__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.footer__tagline {
    font-family: var(--font-editorial);
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    max-width: 280px;
    line-height: 1.6;
}

.footer__links-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.footer__links-title {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer__list a {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--duration-fast) var(--ease-smooth);
    font-weight: 300;
}

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

.footer__social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.footer__social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
}

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

.footer__bottom {
    padding: var(--space-lg) 0;
    text-align: center;
}

.footer__bottom p {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }

    .header__cta {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .editorial__container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .editorial__right {
        height: 500px;
    }

    .features__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-item:nth-child(4),
    .feature-item:nth-child(5) {
        border-top: 1px solid rgba(201, 169, 110, 0.15);
    }

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

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

    .venue__card--large {
        grid-row: span 1;
    }

    .venue__card--large .venue__card-inner {
        min-height: 400px;
    }

    .venue__card--wide {
        grid-column: span 2;
    }

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

    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 240px;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact__container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .footer__brand {
        grid-column: span 2;
    }
}

/* =============================================
   RESPONSIVE — Mobile (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
        --space-4xl: 6rem;
    }

    .hero__heading .hero__line {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero__line--script {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(201, 169, 110, 0.15);
        padding: var(--space-md);
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        text-align: left;
        gap: 0 var(--space-sm);
        align-items: center;
    }

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

    .feature-item__number {
        grid-column: 1;
        margin-bottom: 0;
    }

    .feature-item__icon {
        width: 36px;
        height: 36px;
        margin: 0;
        grid-column: 2;
        grid-row: 1 / 3;
        justify-self: end;
    }

    .feature-item__title {
        grid-column: 1;
    }

    .feature-item__text {
        grid-column: 1;
    }

    .editorial__right {
        height: 400px;
    }

    .editorial__image-overlay {
        width: 50%;
        height: 45%;
        left: -5%;
    }

    .editorial__stats {
        gap: var(--space-lg);
    }

    .editorial__stat-number {
        font-size: 1.8rem;
    }

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

    .event-card {
        aspect-ratio: 3/4;
    }

    .event-card__title {
        font-size: 1.1rem;
    }

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

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

    .venue__card--large,
    .venue__card--wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .venue__card-inner {
        min-height: 300px;
    }

    .venue__card--large .venue__card-inner {
        min-height: 350px;
    }

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

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery__item--tall {
        grid-row: span 2;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

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

    .form__group--full {
        grid-column: span 1;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer__brand {
        grid-column: span 1;
    }

    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .lightbox__prev { left: 0.5rem; }
    .lightbox__next { right: 0.5rem; }

    .lightbox__close {
        top: 1rem;
        right: 1rem;
    }

    .hero__scroll-indicator {
        display: none;
    }
}

/* =============================================
   RESPONSIVE — Small Mobile (max-width: 480px)
   ============================================= */
@media (max-width: 480px) {
    .header__inner {
        padding: 0 var(--space-md);
    }

    .hero__content {
        padding: 0 var(--space-md);
    }

    .editorial__container {
        padding: 0 var(--space-md);
    }

    .editorial__right {
        height: 350px;
    }

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

    .event-card {
        aspect-ratio: 4/3;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }

    .testimonial-card {
        padding: var(--space-lg);
    }

    .contact__form {
        padding: var(--space-lg);
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.7rem;
        min-width: 160px;
    }
}