/* ========================================
   Teachers Cornbread Cafe — Stylesheet
   Classic & Elegant · Emerald + Cream
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-emerald-deep: #0a3d2a;
    --color-emerald: #0f5132;
    --color-emerald-light: #1a6b45;
    --color-emerald-muted: #2d7a52;
    --color-cream: #f5f0e8;
    --color-cream-light: #faf7f2;
    --color-cream-dark: #e8e0d0;
    --color-gold: #c9a84c;
    --color-gold-light: #d4b96a;
    --color-text: #1a1a1a;
    --color-text-light: #4a4a4a;
    --color-text-muted: #6b6b6b;
    --color-white: #ffffff;
    --color-border: rgba(15, 81, 50, 0.15);
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lora', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

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

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

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

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

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

ul {
    list-style: none;
}

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

/* --- Typography --- */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-emerald);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-emerald-deep);
    margin-bottom: 1.5rem;
}

.title-underline {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    margin-bottom: 2rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-emerald);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-emerald-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-emerald-deep);
    border: 1.5px solid var(--color-emerald);
}

.btn-secondary:hover {
    background: var(--color-emerald);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.875rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--color-emerald);
    color: var(--color-cream);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-emerald-deep);
    letter-spacing: 0.02em;
}

.nav.scrolled .nav-logo-text {
    color: var(--color-emerald-deep);
}

.nav-logo-text {
    color: var(--color-white);
}

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

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--color-text-light);
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-gold);
    transition: var(--transition);
}

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

.nav-cta {
    padding: 0.5rem 1.25rem;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 4px;
    transition: var(--transition);
}

.nav.scrolled .nav-cta {
    border-color: var(--color-emerald);
    color: var(--color-emerald);
}

.nav-cta:hover {
    background: var(--color-emerald);
    border-color: var(--color-emerald);
    color: var(--color-white) !important;
}

.nav-cta::after {
    display: none;
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-line {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
    display: block;
}

.nav.scrolled .menu-line {
    background: var(--color-emerald-deep);
}

.menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Overlay --- */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 61, 42, 0.95);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    background: var(--color-cream);
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-emerald-deep) 0%, var(--color-emerald) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: 2rem;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-label-line {
    width: 40px;
    height: 1.5px;
    background: var(--color-gold);
    flex-shrink: 0;
}

.hero-label span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-emerald);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-emerald-deep);
    margin-bottom: 1.75rem;
}

.hero-accent {
    color: var(--color-gold);
    font-style: italic;
}

.hero-sub {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-hours {
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.hero-hours-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-emerald);
    margin-bottom: 0.75rem;
}

.hero-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.hero-hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.hero-hours-list li span:first-child {
    font-weight: 600;
    color: var(--color-text);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 700px;
}

.hero-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 85%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

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

.hero-image-accent {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 55%;
    height: 45%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-cream);
}

.hero-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-accent-badge {
    position: absolute;
    bottom: -12px;
    right: 20px;
    background: var(--color-gold);
    color: var(--color-emerald-deep);
    padding: 0.5rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 3px;
}

.hero-image-small {
    position: absolute;
    top: 5%;
    left: 10%;
    width: 35%;
    height: 25%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--color-cream);
    z-index: 2;
}

.hero-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- About Section --- */
.about {
    padding: 7rem 0;
    background: var(--color-cream-light);
}

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

.about-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.about-text-col .section-title {
    margin-bottom: 1.25rem;
}

.about-text-col p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.about-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.about-signature .signature-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-emerald);
}

/* --- Menu Section --- */
.menu {
    padding: 7rem 0;
    background: var(--color-emerald-deep);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.menu-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.menu-header .section-label {
    color: var(--color-gold);
}

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

.menu-header .title-underline {
    margin: 0 auto 2rem;
}

.menu-header .menu-intro {
    font-size: 1.05rem;
    color: rgba(245, 240, 232, 0.7);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.menu-category:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
}

.category-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-list li {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.menu-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-name {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 0.25rem;
}

.menu-item-desc {
    display: block;
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.55);
    font-style: italic;
}

.menu-note {
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.5);
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* --- Gallery Section --- */
.gallery {
    padding: 7rem 0;
    background: var(--color-cream-light);
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    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.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 61, 42, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-cream);
    font-style: italic;
}

.gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    grid-column: span 4;
}

.gallery-item--wide {
    grid-column: 5 / 13;
    grid-row: 2 / 3;
}

/* --- Visit Section --- */
.visit {
    padding: 7rem 0;
    background: var(--color-cream);
}

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

.visit-detail {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.visit-icon {
    width: 48px;
    height: 48px;
    background: var(--color-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-cream);
}

.visit-detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.visit-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-emerald);
}

.visit-detail-text span,
.visit-detail-text a {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.visit-detail-text a:hover {
    color: var(--color-emerald);
}

.visit-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 450px;
}

/* --- Contact Section --- */
.contact {
    padding: 7rem 0;
    background: var(--color-cream-light);
}

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

.contact-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-text-light);
    margin-top: 1.5rem;
}

.contact-form {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--color-cream-light);
    border: 1.5px solid var(--color-border);
    border-radius: 4px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-emerald);
    box-shadow: 0 0 0 3px rgba(15, 81, 50, 0.1);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 1rem;
    background: rgba(15, 81, 50, 0.08);
    color: var(--color-emerald);
    font-size: 0.9375rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.form-success.show {
    display: block;
}

/* --- Footer --- */
.footer {
    background: var(--color-emerald-deep);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    width: 48px;
    height: 48px;
    background: var(--color-gold);
    color: var(--color-emerald-deep);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.footer-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a,
.footer-contact a {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-contact li {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.4);
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero::before {
        width: 45%;
    }

    .hero-grid {
        gap: 2rem;
    }

    .hero-visual {
        height: 550px;
    }

    .menu-categories {
        gap: 2rem;
    }

    .menu-category:last-child {
        max-width: 60%;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero::before {
        width: 100%;
        clip-path: none;
        opacity: 0.15;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-label {
        justify-content: center;
    }

    .hero-sub {
        margin: 0 auto 2.5rem;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-hours {
        display: none;
    }

    .hero-visual {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image-col {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .menu-category:last-child {
        grid-column: auto;
        max-width: 100%;
    }

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

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

    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        grid-column: span 1;
        height: 220px;
    }

    .gallery-item--wide {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 250px;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .visit-map {
        height: 300px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-emerald-deep);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.75rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: rgba(245, 240, 232, 0.85) !important;
        font-size: 0.9375rem;
    }

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

    .nav-cta {
        border-color: rgba(245, 240, 232, 0.4) !important;
        color: var(--color-cream) !important;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 7rem 1.5rem 4rem;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero {
        padding: 6rem 1.25rem 3rem;
    }

    .about, .menu, .gallery, .visit, .contact {
        padding: 4rem 0;
    }

    .contact-form {
        padding: 1.5rem;
    }

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

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