:root {
    --deep-green: #0B2E26;
    --gold: #D4AF37;
    --gold-light: #F1D279;
    --soft-cream: #F5F5DC;
    --terracotta: #E2725B; /* Earthy accent noted in research */
    --text-light: rgba(245, 245, 220, 0.85);
    --transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--deep-green);
    color: var(--soft-cream);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}




/* Subtle texture overlay for 'rustic' feel */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/dark-leather.png');
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

/* Luxury Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--deep-green);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader-content {
    text-align: center;
    width: 200px;
}

.preloader-logo {
    width: 180px; /* Enhanced brand presence */
    margin-bottom: 20px;
    opacity: 0;
    transform: scale(0.8);
    animation: preloaderLogo 1.5s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.preloader-bar {
    width: 0;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
    animation: preloaderBar 2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes preloaderLogo {
    to { opacity: 1; transform: scale(1); }
}

@keyframes preloaderBar {
    to { width: 100%; }
}

/* Global Section Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

nav.scrolled {
    background: rgba(11, 46, 38, 0.95);
    padding: 1rem 5%;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--soft-cream);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

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

.nav-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.nav-cta .gold-btn {
    padding: 12px 30px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sections */
section {
    position: relative;
    padding: 100px 5%;
    width: 100%;
    z-index: 2;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    font-style: italic;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem auto 0;
    opacity: 0.5;
}

/* Hero Section */
/* Custom Luxury Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s cubic-bezier(0.2, 1, 0.3, 1);
    transform: translate(-50%, -50%);
}

@media (max-width: 1024px) {
    .custom-cursor, .cursor-follower {
        display: none !important;
    }
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 46, 38, 0.2) 0%, rgba(5, 20, 16, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
}

.hero-tagline {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(to bottom, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.hero-btns {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    text-align: left;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.about-img::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--gold);
    z-index: -1;
    border-radius: 4px;
}

/* Signature Series Spotlight */
.signature-spotlight {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #000;
}

.spotlight-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.spotlight-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: transform 12s cubic-bezier(0.2, 1, 0.3, 1);
}

.signature-spotlight.animate .spotlight-bg img {
    transform: scale(1.15);
}

.spotlight-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    background: rgba(11, 46, 38, 0.45);
    backdrop-filter: blur(20px);
    padding: 5rem 4rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    margin: 0 auto; /* Restored centering */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: boxGlow 8s ease-in-out infinite alternate;
}

.spotlight-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold);
    margin: 1rem 0;
    line-height: 1.1;
    text-align: center;
}

.spotlight-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Menu Section */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--soft-cream);
    padding: 10px 25px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--gold);
    color: var(--deep-green);
    border-color: var(--gold);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.menu-item-info {
    text-align: left;
}

.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 300px;
}

.menu-item-price {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    font-weight: 600;
}

/* Experience Section */
.experience {
    background-image: radial-gradient(circle at center, rgba(11, 46, 38, 0.3) 0%, rgba(11, 46, 38, 0.9) 100%), url('assets/cocktails.png');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.experience .container {
    display: grid;
    grid-template-columns: 1fr; /* Centered layout for hero-like focus */
    justify-items: center;
    align-items: center;
}

.experience-content {
    max-width: 550px;
    text-align: center;
    padding: 4rem;
    background: rgba(11, 46, 38, 0.45);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: boxGlow 6s ease-in-out infinite alternate;
}

@keyframes boxGlow {
    from { border-color: rgba(212, 175, 55, 0.2); }
    to { border-color: rgba(212, 175, 55, 0.5); box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1); }
}

.experience-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

/* Contact Info */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.contact-card {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
}

.contact-card svg {
    width: 40px;
    height: 40px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.contact-card h4 {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    z-index: 1001;
}

.nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--deep-green);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
}


.learn-more {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 5px;
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
    padding-left: 10px;
    padding-right: 10px;
}

.btn-primary {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Brand Marquee */
.brand-marquee {
    position: relative;
    padding: 3.5rem 0; /* More breathing room */
    background: rgba(11, 46, 38, 0.6);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
    white-space: nowrap;
    z-index: 5;
}

.brand-marquee .marquee-content {
    display: flex;
    animation: marquee 40s linear infinite;
}

.brand-marquee span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold);
    display: inline-block;
    padding-right: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.6;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: rgba(11, 46, 38, 0.3);
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 4rem auto;
    position: relative;
    min-height: 250px;
}

.testimonial-item {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guest-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 2px solid var(--gold);
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.testimonial-item.active .guest-img {
    animation: zoom-in 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.testimonial-item.active {
    top: 0;
    opacity: 1;
}

.quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-style: italic;
    color: var(--soft-cream);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.author {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 6px;
    height: 6px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.5);
}

/* Form Styles */
/* Newsletter Section (The Registry) */
.subscription-form-container {
    padding: 100px 5%;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.registry-card {
    max-width: 600px;
    margin: 0 auto;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.registry-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.registry-card p {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    max-width: 550px;
    line-height: 1.8;
    text-align: center;
}

.subscription-form {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 550px;
}

.subscription-form input {
    flex: 1;
    background: rgba(5, 20, 16, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-right: none;
    padding: 20px 25px;
    border-radius: 4px 0 0 4px;
    color: var(--soft-cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.subscription-form input:focus {
    background: rgba(11, 46, 38, 0.8);
    border-color: var(--gold);
    box-shadow: -10px 0 30px rgba(212, 175, 55, 0.1);
}

.subscription-form .gold-btn {
    border-radius: 0 4px 4px 0;
    padding: 0 40px;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
}

.privacy-notice {
    margin-top: 1.5rem;
    font-size: 0.75rem !important;
    color: rgba(245, 245, 220, 0.3) !important;
    font-style: italic;
    letter-spacing: 0.05em;
}

.subscription-form input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.gold-btn {
    background: var(--gold);
    color: var(--deep-green);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: inline-flex; /* Fix for wrapping issues */
    align-items: center;
    justify-content: center;
    white-space: nowrap; /* Prevent broken text layout on small screens */
    text-decoration: none;
}

.gold-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.gold-btn:active {
    transform: translateY(0);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 1rem;
}

.social-icon {
    color: var(--gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--deep-green);
}

/* Details Section Styling */
.details-section {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 60px auto 40px;
    padding: 0 20px;
    text-align: center;
}

.details-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.details-section p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Gallery Section */
.gallery {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay-text {
    transform: translateY(0);
}

/* Premium Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1), transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.zoom-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.5s cubic-bezier(0.2, 1, 0.3, 1), transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.zoom-in.animate {
    opacity: 1;
    transform: scale(1);
}

.fade-in, .zoom-in {
    will-change: transform, opacity;
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* Extraordinary Touches */
.gold-btn {
    overflow: hidden;
}

.gold-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
}

.gold-btn:hover::before {
    left: 100%;
}

.menu-item {
    transition: var(--transition);
    cursor: default;
}

.menu-item:hover {
    transform: translateX(10px);
    border-bottom-color: var(--gold);
}

.about-img img {
    animation: float 6s ease-in-out infinite;
}

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

.hero h1 {
    animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3)); }
    to { filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6)); }
}
.footer {
    background: rgba(5, 20, 16, 0.95);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.footer .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    text-align: left;
    margin-bottom: 60px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2));
    transition: var(--transition);
}

.footer-logo:hover {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    transform: scale(1.05);
}

.footer-about p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links h4, .footer-contact h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-bottom {
    background: transparent;
    border-top: 1px solid rgba(212, 175, 55, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 245, 220, 0.4);
    letter-spacing: 0.05em;
}

/* Social Links for Footer Bottom */
.footer-bottom .social-links {
    margin: 0;
}

/* Responsive Overhaul */
@media (max-width: 1400px) {
    .container {
        padding: 0 5%;
    }
}

@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-text {
        text-align: center;
        order: 2;
    }

    .about-img {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .section-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    /* Navigation */
    nav {
        padding: 1.2rem 5%;
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    /* Hero */
    .hero h1 {
        font-size: clamp(3rem, 12vw, 5rem);
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    /* Signature Spotlight Responsive */
    .signature-spotlight {
        height: auto;
        padding: 100px 0;
    }

    .spotlight-content {
        margin: 0 auto;
        padding: 3rem 1.5rem;
        text-align: center;
        max-width: 100%;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .spotlight-content h2, .spotlight-content p {
        text-align: center;
    }

    /* Menu Tabs */
    .menu-tabs {
        gap: 0.8rem;
    }

    .tab-btn {
        padding: 8px 15px;
        font-size: 0.7rem;
    }

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

    /* Experience */
    .experience-content {
        padding: 3rem 1.5rem;
        margin: 0 5%;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Registry Card Responsive */
    .registry-card {
        padding: 0;
        text-align: center;
    }

    .registry-card h3, .registry-card p, .privacy-notice {
        text-align: center;
    }

    .subscription-form {
        flex-direction: column;
        gap: 15px;
    }

    .subscription-form input {
        border-right: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 4px;
    }

    .subscription-form .gold-btn {
        border-radius: 4px;
        padding: 18px 0;
    }

    /* Footer */
    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 0.7rem;
    }

    .quote {
        font-size: 1.2rem;
    }

    .guest-img {
        width: 80px;
        height: 80px;
    }
}

/* ════════════════════════════════
   FAQ PAGE
   ════════════════════════════════ */

/* ── FAQ Hero ── */
.faq-hero {
    height: 65vh;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    background-image: url('assets/about-interior.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,20,16,0.3) 0%, rgba(5,20,16,0.75) 60%, var(--deep-green) 100%);
    z-index: 1;
}

.faq-hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
}

.faq-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    line-height: 1;
    background: linear-gradient(to bottom, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    margin-bottom: 1.5rem;
    animation: titleGlow 4s ease-in-out infinite alternate;
}

.faq-hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── Breadcrumb ── */
.breadcrumb {
    position: relative;
    z-index: 10;
    padding: 1.2rem 5%;
    background: rgba(5, 20, 16, 0.6);
    border-bottom: 1px solid rgba(212,175,55,0.1);
}

.breadcrumb-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.breadcrumb-inner a { color: var(--gold); text-decoration: none; transition: var(--transition); }
.breadcrumb-inner a:hover { color: var(--gold-light); }
.breadcrumb-inner span { color: rgba(245,245,220,0.35); }
.breadcrumb-inner .current { color: var(--text-light); }

/* ── FAQ Intro ── */
.faq-intro {
    padding: 40px 5% 10px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.faq-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ── FAQ Main ── */
.faq-main {

    max-width: 1000px;
    margin: 0 auto;
}


.faq-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-category-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.faq-category-icon svg {
    width: 20px;
    height: 20px;
}

.faq-category h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.6rem;
    margin: 0;
}

.faq-item {
    margin-bottom: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.04);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--soft-cream);
    font-size: 1rem;
    gap: 1rem;
    user-select: none;
}

.faq-question-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    transition: var(--transition);
}

.faq-item.active .faq-question-icon {
    background: var(--gold);
    color: var(--deep-green);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 0.92rem;
    font-weight: 300;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 1.5rem 1.5rem;
    transition: max-height 0.45s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

/* ── Two-column items inside a category ── */
.faq-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

/* ── CTA Strip ── */
.faq-cta {
    padding: 60px 5%;
    text-align: center;
    background: rgba(11,46,38,0.4);
    border-top: 1px solid rgba(212,175,55,0.08);
    border-bottom: 1px solid rgba(212,175,55,0.08);
}

.faq-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.faq-cta p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.faq-cta-btns {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Nav active state (FAQ page) ── */
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* ── FAQ Responsive ── */
@media (max-width: 768px) {
    .faq-main {
        padding: 30px 5% 40px;
    }
    .faq-items-grid {
        grid-template-columns: 1fr;
    }
}


