:root {
    /* Color System */
    --color-base: #0B0B0F;
    --color-secondary: #141012;
    --color-accent-1: #B08D57;
    /* Warm Brass */
    --color-accent-2: #2A0B0D;
    /* Deep Oxblood */
    --color-surface: #14141A;
    --color-text-primary: #F6F1E8;
    /* Soft Ivory */
    --color-text-muted: #C9C1B6;
    /* Warm Gray */
    --color-border: rgba(176, 141, 87, 0.2);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--color-base);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: 1.75rem;
}

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

ul {
    list-style: none;
}

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

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-lg) 0;
}

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

.text-gold {
    color: var(--color-accent-1);
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-accent-1);
    color: var(--color-base);
    border-color: var(--color-accent-1);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent-1);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-text-primary);
    color: var(--color-text-primary);
}

.btn-secondary:hover {
    border-color: var(--color-accent-1);
    color: var(--color-accent-1);
}

/* Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background: linear-gradient(to bottom, rgba(11, 11, 15, 0.9), rgba(11, 11, 15, 0));
}

.header.scrolled {
    background-color: rgba(11, 11, 15, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent-1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-1);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-text-primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--color-secondary);
    /* Fallback color */
}

/* Home page hero with image */
.home-hero {
    background: linear-gradient(rgba(11, 11, 15, 0.6), rgba(11, 11, 15, 0.6)), url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
}

.hero.hero-small {
    height: 20vh;
    min-height: 150px;
    padding-top: 80px;
    /* Account for fixed header */
}

/* Create a dark gradient overlay if no image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--color-base) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 var(--spacing-sm);
}

.hero-tagline {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-1);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background-color: var(--color-accent-1);
    margin: 2rem auto;
}

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

/* Awards Section */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.award-badge {
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.award-badge:hover {
    border-color: var(--color-accent-1);
    transform: translateY(-5px);
}

.award-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent-1);
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.award-year {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Features/Signature */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-accent-1);
    margin-bottom: 1.5rem;
}

/* Menu Preview */
.menu-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-card {
    background-color: var(--color-secondary);
    padding: 2rem;
    border: 1px solid var(--color-border);
}

.menu-card h3 {
    color: var(--color-accent-1);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.menu-item {
    margin-bottom: 1.5rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

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

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: var(--color-surface);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(11, 11, 15, 0.8);
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    transform: translateY(100%);
    transition: var(--transition-fast);
}

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

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img,
.gallery-featured:hover .gallery-img,
.gallery-small:hover .gallery-img {
    transform: scale(1.05);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent-1);
}

/* Footer */
.footer {
    background-color: var(--color-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-border);
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--color-accent-1);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-link {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--color-text-muted);
}

.footer-link:hover {
    color: var(--color-text-primary);
}

.copyright {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--color-base);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-150%);
        transition: var(--transition-smooth);
        text-align: center;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hero-buttons {
        flex-direction: column;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero.hero-small {
        height: auto;
        min-height: 200px;
        padding-top: 120px;
        padding-bottom: 40px;
    }
}

/* Accolades Section */
.accolades {
    background-color: var(--color-base);
}

.accolades-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.accolade-card {
    background-color: var(--color-secondary);
    padding: 2rem;
    border: 1px solid rgba(176, 141, 87, 0.1);
    border-top: 3px solid var(--color-accent-1);
    transition: var(--transition-smooth);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 350px;
}

.accolade-card:hover {
    transform: translateY(-4px);
    border-color: rgba(176, 141, 87, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.accolade-year {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-1);
    border: 1px solid var(--color-border);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;

}

.accolade-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.accolade-source {
    font-size: 0.85rem;
    color: var(--color-accent-1);
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.accolade-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-top: auto;
}

@media (min-width: 600px) {
    .accolade-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .accolade-card {
        flex: 0 0 calc(25% - 1.5rem);
    }
}

/* Collapsible Menu Categories */
.menu-category h2 {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

.collapsible-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
    color: var(--color-accent-1);
    opacity: 0.7;
}

.menu-category.collapsed .collapsible-arrow {
    transform: rotate(-90deg);
}

.collapsible-content {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    max-height: 5000px;
    opacity: 1;
    overflow: hidden;
}

.menu-category.collapsed .collapsible-content {
    max-height: 0;
    opacity: 0;
}

/* ============================================
   EDITORIAL REDESIGN STYLES
   ============================================ */

/* Accolades - Featured Highlight */
.accolade-featured {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-surface) 100%);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-accent-1);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.accolade-featured-badge {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-1);
    border: 1px solid var(--color-accent-1);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.accolade-featured-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.accolade-featured-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Accolades - Timeline */
.accolade-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem 0;
}

.accolade-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent-1), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-left {
    flex-direction: row;
    padding-right: 52%;
}

.timeline-right {
    flex-direction: row-reverse;
    padding-left: 52%;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent-1);
    color: var(--color-base);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    z-index: 1;
}

.timeline-content {
    background: var(--color-secondary);
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--color-border);
}

.timeline-content h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Accolades - Mentions */
.accolade-mentions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.accolade-mention {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

/* Features - Split Bands */
.features-editorial {
    padding: 0;
}

.feature-band {
    padding: 4rem 0;
    background: var(--color-base);
}

.feature-band-alt {
    background: var(--color-surface);
}

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

.feature-split-reverse {
    direction: rtl;
}

.feature-split-reverse>* {
    direction: ltr;
}

.feature-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-1);
    margin-bottom: 0.75rem;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-text p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-accent-box {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent-2) 100%);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-accent-1);
}

.feature-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-accent-1);
}

/* Menu - Editorial Layout */
.menu-editorial {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.menu-hero {
    background: var(--color-secondary);
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-accent-1);
}

.menu-hero h3 {
    color: var(--color-accent-1);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.menu-hero-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-item-large {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-item-large:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.menu-item-size {
    font-size: 0.85rem;
    color: var(--color-accent-1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.menu-item-large p {
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.menu-secondary {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-section-compact {
    padding: 1.5rem;
    background: var(--color-secondary);
    border: 1px solid var(--color-border);
}

.menu-section-compact h4 {
    color: var(--color-accent-1);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.menu-item-compact {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.menu-item-compact strong {
    color: var(--color-text-primary);
    font-weight: 500;
}

/* Gallery - Masonry */
.gallery-masonry {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
}

.gallery-featured {
    position: relative;
    aspect-ratio: 4/3;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent-2) 50%, var(--color-secondary) 100%);
    border: 1px solid var(--color-border);
}

.gallery-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(11, 11, 15, 0.85);
    color: var(--color-text-primary);
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.gallery-secondary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-small {
    position: relative;
    aspect-ratio: 16/9;
}

/* Responsive - Editorial */
@media (max-width: 768px) {
    .accolade-timeline::before {
        left: 1rem;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 3rem !important;
        padding-right: 0 !important;
    }

    .timeline-year {
        left: 1rem;
        transform: translateX(-50%);
    }

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

    .feature-split-reverse {
        direction: ltr;
    }

    .feature-visual {
        order: -1;
    }

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

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

    .gallery-featured {
        aspect-ratio: 16/9;
    }
}