:root {
    --plum: #6B2F5B;
    --plum-dark: #4A1F3F;
    --plum-deep: #2D1426;
    --plum-light: #9B598A;
    --amber: #E8963E;
    --amber-light: #F5B96E;
    --amber-dark: #C47A20;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE3;
    --white: #FFFFFF;
    --text-dark: #1A0A14;
    --text-muted: #7A5A6A;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─── GEOMETRIC BACKGROUND SHAPES ─── */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    opacity: 0.04;
}

.geo-circle {
    border-radius: 50%;
    background: var(--plum);
}

.geo-triangle {
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--plum);
}

.geo-rect, .geo-bar {
    background: var(--amber);
}

.geo-dot {
    border-radius: 50%;
    background: var(--plum);
}

.geo-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.geo-2 { width: 160px; height: 160px; top: 30%; left: -40px; border-bottom-color: var(--amber) !important; }
.geo-3 { width: 200px; height: 80px; top: 50%; right: 5%; border-radius: 12px; }
.geo-4 { width: 250px; height: 250px; bottom: 10%; left: 10%; }
.geo-5 { width: 60px; height: 300px; top: 20%; right: 15%; transform: rotate(15deg); border-radius: 30px; }
.geo-6 { width: 20px; height: 20px; top: 40%; left: 20%; }
.geo-7 { width: 0 !important; height: 0 !important; bottom: 30%; right: 5%; border-left: 60px solid transparent !important; border-right: 60px solid transparent !important; border-bottom-color: var(--plum) !important; }
.geo-8 { width: 120px; height: 120px; bottom: 5%; right: 20%; transform: rotate(45deg); border-radius: 8px; }

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(45, 20, 38, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    box-shadow: 0 4px 30px rgba(107, 47, 91, 0.3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 10;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width 0.3s;
}

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

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

.btn-nav {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    background: var(--amber);
    color: var(--plum-deep);
    border-radius: 6px;
    transition: all 0.3s;
    display: none;
}

.btn-nav:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--white);
    z-index: 10;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--amber);
    color: var(--plum-deep);
    border-color: var(--amber);
}

.btn-primary:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--plum-deep);
}

.btn-full {
    width: 100%;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 20, 38, 0.88) 0%,
        rgba(107, 47, 91, 0.75) 50%,
        rgba(74, 31, 63, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 150, 62, 0.15);
    border: 1px solid rgba(232, 150, 62, 0.4);
    color: var(--amber-light);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 9rem);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
}

.hero-title .word-group {
    display: inline-block;
    margin: 0 0.15em;
}

.hero-title .word-group.accent .word {
    color: var(--amber);
    position: relative;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--amber);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-geometric {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.geo-accent {
    position: absolute;
    opacity: 0.12;
}

.geo-accent-1 {
    width: 300px;
    height: 300px;
    border: 3px solid var(--amber);
    border-radius: 50%;
    top: 10%;
    left: -5%;
}

.geo-accent-2 {
    width: 150px;
    height: 150px;
    background: var(--amber);
    transform: rotate(45deg);
    bottom: 15%;
    right: 5%;
}

.geo-accent-3 {
    width: 80px;
    height: 80px;
    border: 3px solid var(--plum-light);
    border-radius: 50%;
    top: 20%;
    right: 15%;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    opacity: 0.5;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(8px); }
    60% { transform: translateX(-50%) translateY(4px); }
}

/* ─── SECTION COMMON ─── */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--amber-dark);
    background: rgba(232, 150, 62, 0.12);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--plum-dark);
    line-height: 1.05;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
}

.text-accent {
    color: var(--amber-dark);
}

.section-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.7;
}

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

/* ─── ABOUT ─── */
.about {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    z-index: 1;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 20px 4px 20px 4px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(107, 47, 91, 0.2);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: 4px 20px 4px 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(107, 47, 91, 0.25);
    border: 5px solid var(--cream);
}

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

.about-accent-box {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    background: var(--amber);
    color: var(--plum-deep);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(232, 150, 62, 0.4);
}

.about-accent-box .accent-box-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.about-accent-box .accent-box-text {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(232, 150, 62, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item strong {
    display: block;
    font-size: 1rem;
    color: var(--plum-dark);
    margin-bottom: 0.2rem;
}

.feature-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.geo-block {
    position: absolute;
    opacity: 0.06;
    background: var(--plum);
}

.geo-block-1 {
    width: 200px;
    height: 200px;
    top: 5%;
    right: -3%;
    border-radius: 50%;
}

.geo-block-2 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 3%;
    transform: rotate(30deg);
}

.geo-block-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 5%;
    background: var(--amber);
    border-radius: 50%;
}

/* ─── MENU ─── */
.menu {
    position: relative;
    padding: 7rem 0;
    background: var(--plum-deep);
    overflow: hidden;
}

.menu .section-tag {
    background: rgba(232, 150, 62, 0.2);
    color: var(--amber-light);
}

.menu .section-title {
    color: var(--white);
}

.menu .section-lead {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
}

.menu .text-center {
    margin-bottom: 4rem;
}

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

.menu-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(232, 150, 62, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.menu-card-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--amber), var(--amber-light));
}

.menu-card.featured {
    background: rgba(232, 150, 62, 0.1);
    border-color: rgba(232, 150, 62, 0.2);
}

.menu-card.featured .menu-card-accent {
    background: linear-gradient(90deg, var(--amber-light), var(--amber));
    height: 5px;
}

.menu-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--amber);
    color: var(--plum-deep);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    z-index: 1;
}

.menu-card-body {
    padding: 2rem;
}

.menu-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 150, 62, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.menu-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.menu-card-body p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.menu-geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-diamond {
    position: absolute;
    background: var(--amber);
    opacity: 0.04;
    transform: rotate(45deg);
}

.geo-diamond-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -5%;
}

.geo-diamond-2 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 5%;
}

/* ─── GALLERY ─── */
.gallery {
    position: relative;
    padding: 7rem 0;
    z-index: 1;
}

.gallery .section-tag {
    background: rgba(232, 150, 62, 0.12);
    color: var(--amber-dark);
}

.gallery .section-title {
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 20, 38, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.gallery-item--tall {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
    min-height: 500px;
}

.gallery-item:not(.gallery-item--tall) {
    min-height: 240px;
}

.gallery-item--wide {
    grid-column: 6 / 13;
    min-height: 240px;
}

/* ─── EVENTS ─── */
.events {
    position: relative;
    padding: 7rem 0;
    background: var(--cream-dark);
    overflow: hidden;
    z-index: 1;
}

.events-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.events-content .section-lead {
    margin-bottom: 2.5rem;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.event-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.event-item:hover {
    border-color: var(--amber);
    box-shadow: 0 10px 30px rgba(232, 150, 62, 0.15);
    transform: translateX(8px);
}

.event-date {
    flex-shrink: 0;
    background: var(--plum);
    color: var(--white);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
}

.event-day {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--amber);
}

.event-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

.event-info strong {
    display: block;
    font-size: 1rem;
    color: var(--plum-dark);
    margin-bottom: 0.3rem;
}

.event-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.events-visual {
    position: relative;
    padding-top: 2rem;
}

.events-img-stack {
    position: relative;
}

.events-img-1 {
    border-radius: 20px 4px 20px 4px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(107, 47, 91, 0.2);
}

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

.events-img-2 {
    position: absolute;
    bottom: -2rem;
    left: -1rem;
    width: 65%;
    border-radius: 4px 20px 4px 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(107, 47, 91, 0.25);
    border: 5px solid var(--cream-dark);
}

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

.events-accent {
    position: absolute;
    top: -1rem;
    right: -1rem;
    opacity: 0.15;
}

/* ─── CONTACT ─── */
.contact {
    position: relative;
    padding: 7rem 0 0;
    z-index: 1;
}

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

.contact-info .section-lead {
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(232, 150, 62, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.contact-detail span,
.contact-detail a {
    font-size: 1rem;
    color: var(--plum-dark);
    font-weight: 500;
}

.contact-detail a:hover {
    color: var(--amber-dark);
}

.hours {
    background: var(--plum);
    color: var(--white);
    padding: 2rem;
    border-radius: 16px;
}

.hours h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--amber);
}

.hours p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

/* ─── FORM ─── */
.contact-form-wrap {
    position: relative;
}

.form-geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.form-circle {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(232, 150, 62, 0.15);
    border-radius: 50%;
    top: -3rem;
    right: -3rem;
}

.form-triangle {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(107, 47, 91, 0.06);
    bottom: 2rem;
    left: -2rem;
    transform: rotate(-15deg);
}

.contact-form {
    position: relative;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(107, 47, 91, 0.1);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--plum-dark);
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

.form-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--cream-dark);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--amber);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(232, 150, 62, 0.1);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.form-success svg {
    margin: 0 auto 1rem;
}

.form-success p {
    font-size: 1.1rem;
    color: var(--plum-dark);
    font-weight: 600;
}

/* ─── MAP ─── */
.map-section {
    position: relative;
    z-index: 1;
}

.map-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum), var(--amber), var(--plum));
}

/* ─── FOOTER ─── */
.footer {
    background: var(--plum-deep);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: var(--amber);
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--amber);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(45, 20, 38, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--amber);
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 0.5rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .about-grid,
    .events-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .mobile-toggle {
        display: block;
    }

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

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-num {
        font-size: 2rem;
    }

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

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

    .gallery-item--tall {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 300px;
    }

    .gallery-item:not(.gallery-item--tall),
    .gallery-item--wide {
        grid-column: auto;
        min-height: 200px;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .about-img-secondary {
        right: 0;
        bottom: -1.5rem;
    }

    .events-img-2 {
        left: 0;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

    .gallery-item--wide {
        grid-column: auto;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* ─── ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
