/* ─────────────────────────────────────────────────────────────
   MAIN STYLESHEET — AURUM MODERN RESTAURANT
   ───────────────────────────────────────────────────────────── */

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

:root {
    --cream:      #FAF7F2;
    --cream-2:    #F2EDE4;
    --gold:       #C9A84C;
    --gold-light: #E4C97A;
    --charcoal:   #1A1A1A;
    --gray-1:     #2D2D2D;
    --gray-2:     #555555;
    --gray-3:     #888888;
    --gray-4:     #BBBBBB;
    --white:      #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
}

[x-cloak] {
    display: none !important;
}

/* ── 2. SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--cream);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}





/* ── 4. NAVIGATION ── */
nav.demo-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 70px;
    transition: all 0.4s ease;
}
nav.demo-nav.scrolled {
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}
nav.demo-nav.scrolled .nav-logo {
    color: var(--charcoal);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
}
nav.demo-nav.scrolled .nav-links a {
    color: var(--gray-2);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--gold) !important;
}
.nav-links a.nav-cta {
    padding: 0.55rem 1.4rem;
    background: var(--gold);
    color: var(--white) !important;
    border-radius: 2px;
    font-weight: 600 !important;
}
.nav-links a.nav-cta:hover {
    background: var(--gold-light);
    color: var(--charcoal) !important;
}
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}
nav.demo-nav.scrolled .nav-hamburger span {
    background: var(--charcoal);
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    border-bottom: 1px solid var(--cream-2);
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.mobile-menu.open {
    display: flex;
}
.mobile-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gray-2);
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    nav.demo-nav { padding: 0 1.25rem; }
}

/* ── 5. PAGE HERO & HEADINGS ── */
.page-hero {
    padding: 130px 0 80px;
    text-align: center;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg, none);
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}
.page-hero-inner {
    position: relative;
    z-index: 1;
}
.page-hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}
.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}
.page-hero-title em {
    font-style: italic;
    color: var(--gold-light);
}
.page-hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 1rem;
    font-weight: 300;
}
.text-page-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: var(--charcoal);
    color: var(--white);
}
.gold-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem auto;
}

/* Hero variants */
.about-hero   { --hero-bg: url("/demo-previews/aurum-modern-restaurant-fine-dining-website-template/images/interior.jpg"); }
.menu-hero    { --hero-bg: url("/demo-previews/aurum-modern-restaurant-fine-dining-website-template/images/hero-menu.jpg"); }
.gallery-hero { --hero-bg: url("/demo-previews/aurum-modern-restaurant-fine-dining-website-template/images/plating.jpg"); }
.events-hero  { --hero-bg: url("/demo-previews/aurum-modern-restaurant-fine-dining-website-template/images/hero-events.jpg"); }
.contact-hero { --hero-bg: url("/demo-previews/aurum-modern-restaurant-fine-dining-website-template/images/dish-4.jpg"); }

/* ── 6. SECTIONS & CONTAINERS ── */
section {
    padding: 6rem 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section-eyebrow {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.section-title em {
    font-style: italic;
    color: var(--gold);
}
.section-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--gray-2);
    line-height: 1.9;
    font-weight: 300;
}
.text-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.text-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--charcoal);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}
.text-content h2:first-child {
    margin-top: 0;
}
.text-content p {
    font-size: 1rem;
    color: var(--gray-2);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.text-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-2);
    line-height: 1.8;
}
.text-content li {
    margin-bottom: 0.5rem;
}

/* ── 7. FOOTER ── */
.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    display: block;
}
.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--gray-4);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.footer-socials {
    display: flex;
    gap: 0.75rem;
}
.footer-social {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
}
.footer-social:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.footer-col-title {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-links a {
    font-size: 0.85rem;
    color: var(--gray-4);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-hour {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-4);
}
.footer-hour span:first-child {
    color: rgba(255, 255, 255, 0.6);
}
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
}
.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

/* ── 8. BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.25rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--gold);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.25rem;
    background: transparent;
    color: var(--charcoal);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    border: 2px solid var(--charcoal);
    transition: all 0.3s;
}
.btn-outline-dark:hover {
    background: var(--charcoal);
    color: var(--white);
}
.btn-outline {
    display: inline-flex;
    padding: 0.9rem 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.2);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

/* ── 9. ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}
@keyframes popIn {
    from { transform: translate(-50%, -50%) scale(0.9); opacity: 0; }
    to   { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
@keyframes subtleZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* ── 10. PAGE & COMPONENT SPECIFIC STYLES ── */

/* --- HOME PAGE HERO --- */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url("/demo-previews/aurum-modern-restaurant-fine-dining-website-template/images/hero-home.jpg") center/cover;
    opacity: 0.9;
    animation: subtleZoom 20s infinite alternate;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.8) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 2rem 0;
    max-width: 800px;
}
.hero-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}
.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* --- CHEF BANNER --- */
.chef-banner {
    background: var(--charcoal);
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}
.chef-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("/demo-previews/aurum-modern-restaurant-fine-dining-website-template/images/chef-banner.jpg") center/cover;
    opacity: 0.15;
}
.chef-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.chef-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--gold-light);
    margin: 2rem 0;
}

/* --- TESTIMONIALS --- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 900px) {
    .testimonials { grid-template-columns: 1fr; }
}
.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}
.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gray-2);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.reviewer {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
}

/* --- ABOUT PAGE --- */
.timeline {
    position: relative;
    padding-left: 2.5rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--cream-2);
}
.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--cream);
}
.timeline-year {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
}
.timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}
.timeline-body {
    font-size: 0.875rem;
    color: var(--gray-2);
    line-height: 1.7;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; }
}
.team-card {
    text-align: center;
}
.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.25rem;
    border: 4px solid var(--cream-2);
    display: block;
}
.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}
.team-role {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.team-bio {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gray-2);
    line-height: 1.7;
    font-style: italic;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (max-width: 600px) {
    .values-grid { grid-template-columns: 1fr; }
}
.value-card {
    padding: 2rem;
    background: var(--white);
    border-left: 3px solid var(--gold);
}
.value-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}
.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}
.value-body {
    font-size: 0.875rem;
    color: var(--gray-2);
    line-height: 1.7;
}
.award-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 2px;
}
.award-badge {
    font-size: 2rem;
    min-width: 48px;
    text-align: center;
}
.award-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
}
.award-body {
    font-size: 0.8rem;
    color: var(--gray-3);
    margin-top: 0.2rem;
}

/* --- MENU PAGE --- */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}
.menu-tab {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid var(--cream-2);
    color: var(--gray-2);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s;
}
.menu-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.menu-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    margin-top: 3rem;
}
@media (max-width: 900px) {
    .menu-grid { grid-template-columns: 1fr; }
}
.menu-item {
    border-bottom: 1px dashed var(--cream-2);
    padding-bottom: 1.5rem;
}
.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    gap: 1rem;
}
.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
}
.menu-item-price {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}
.menu-item-desc {
    font-size: 0.875rem;
    color: var(--gray-3);
    line-height: 1.6;
    padding-right: 2rem;
}
.menu-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.menu-tag {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
}
.tag-veg {
    background: rgba(46,125,50,0.1);
    color: #2e7d32;
}
.tag-signature {
    background: rgba(201,168,76,0.1);
    color: var(--gold);
}
.dietary-notes {
    text-align: center;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--cream-2);
    font-size: 0.85rem;
    color: var(--gray-3);
    font-style: italic;
}

/* --- GALLERY PAGE --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--charcoal);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.9;
}
.gallery-item:hover img {
    transform: scale(1.08);
    opacity: 0.4;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: rgba(201,168,76,0.3);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay-text {
    transform: translateY(0);
}

/* --- EVENTS PAGE --- */
.event-space {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}
.event-space:nth-child(even) {
    direction: rtl;
}
.event-space:nth-child(even) > div {
    direction: ltr;
}
@media (max-width: 900px) {
    .event-space, .event-space:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }
}
.event-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.feature-list {
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-2);
    margin-bottom: 0.75rem;
}
.feature-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
}

/* --- CONTACT PAGE --- */
.reservation-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
}
@media (max-width: 900px) {
    .reservation-layout { grid-template-columns: 1fr; gap: 4rem; }
}
.reservation-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; }
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 1px solid var(--cream-2);
    border-radius: 2px;
    background: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--charcoal);
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--charcoal);
    color: var(--white);
    padding: 1.25rem 2rem;
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 10000;
}
.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--cream-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.info-item-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 0.2rem;
}
.info-item-body {
    font-size: 0.875rem;
    color: var(--gray-2);
    line-height: 1.6;
}

/* --- CAREERS PAGE --- */
.job-posting {
    padding: 2rem;
    border: 1px solid var(--cream-2);
    margin-bottom: 1.5rem;
    border-radius: 4px;
    transition: border-color 0.3s;
}
.job-posting:hover {
    border-color: var(--gold);
}
.job-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}
.job-type {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.job-desc {
    font-size: 0.875rem;
    color: var(--gray-2);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* --- VOUCHERS PAGE --- */
.voucher-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}
@media (max-width: 600px) {
    .voucher-cards { grid-template-columns: 1fr; }
}
.voucher-card {
    padding: 2.5rem;
    background: var(--cream-2);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.voucher-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}
.voucher-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.voucher-desc {
    font-size: 0.85rem;
    color: var(--gray-2);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* --- PRESS PAGE --- */
.press-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}
@media (max-width: 600px) {
    .press-grid { grid-template-columns: 1fr; }
}
.press-card {
    padding: 2.5rem;
    background: var(--cream);
    border-left: 3px solid var(--gold);
}
.press-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.press-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-2);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.press-date {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ── 11. MODERN MICRO-INTERACTIONS & UI POLISH ── */

/* Navigation Links Animated Gold Underline */
.nav-links a:not(.nav-cta) {
    position: relative;
    padding-bottom: 4px;
}
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Interactive Card Elevations & Smooth Hovers */
.testimonial-card,
.value-card,
.award-row,
.event-space,
.job-posting,
.press-card,
.voucher-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}
.testimonial-card:hover,
.value-card:hover,
.award-row:hover,
.event-space:hover,
.job-posting:hover,
.press-card:hover,
.voucher-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(201, 168, 76, 0.12);
}

/* Enhanced Menu Items Hover Highlight */
.menu-item {
    border-radius: 4px;
    padding: 1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-item:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

/* Team Avatar Smooth Zoom */
.team-avatar {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}
.team-card:hover .team-avatar {
    transform: scale(1.06);
    border-color: var(--gold);
}

/* Input Focus Glow Ring */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18) !important;
    transition: all 0.25s ease;
}

/* Floating Back-To-Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--charcoal);
    color: var(--gold);
    border: 1px solid var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
    box-shadow: 0 12px 30px rgba(201, 168, 76, 0.4);
    transform: translateY(-3px);
}
