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

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

body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: #2a1f1e;
    background-color: #faf6f1;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #4a2c3d;
    color: #faf6f1;
    padding: 0.5rem 1rem;
    border-radius: 0 0 4px 0;
    z-index: 200;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: 0;
}

/* ── Typography ──────────────────────────────────── */
:root {
    --plum-deep: #3a1f30;
    --plum: #5c3a52;
    --plum-light: #8b5e78;
    --plum-muted: #c4a4b4;
    --amber: #c8923a;
    --amber-light: #e0b06a;
    --amber-glow: #f0c878;
    --cream: #faf6f1;
    --cream-dark: #f0e8dd;
    --text: #2a1f1e;
    --text-light: #6b5550;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Lato', Helvetica, Arial, sans-serif;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--plum-deep);
}

em {
    font-style: italic;
    color: var(--amber);
}

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

/* ── Header ──────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(250, 246, 241, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(92, 58, 82, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--plum);
    flex-shrink: 0;
}

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

.logo-dot {
    color: var(--amber);
}

.logo--light .logo-icon {
    color: var(--cream);
}

.logo--light .logo-text {
    color: var(--cream);
}

/* ── Navigation ──────────────────────────────────── */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--plum-deep);
    position: relative;
    transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--plum-deep);
    left: 0;
    transition: transform 0.3s ease;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

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

.nav-menu a {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-menu a:hover {
    color: var(--plum-deep);
}

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

.nav-cta {
    border: 1px solid var(--plum);
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

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

.nav-cta:hover {
    background: var(--plum);
    color: var(--cream) !important;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #1a0f18 0%,
        #3a1f30 20%,
        #5c3a52 40%,
        #7a4a5e 55%,
        #c8923a 80%,
        #e0b06a 100%
    );
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(200, 146, 58, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(92, 58, 82, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 90% 70% at 50% 50%, rgba(58, 31, 48, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 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='1'%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");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem 4rem;
    max-width: 800px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-title em {
    color: var(--amber-glow);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.375rem);
    font-weight: 300;
    color: rgba(250, 246, 241, 0.75);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
    color: rgba(250, 246, 241, 0.6);
}

.hero-meta-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(250, 246, 241, 0.4);
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(250, 246, 241, 0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200, 146, 58, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border-color: rgba(250, 246, 241, 0.4);
}

.btn-secondary:hover {
    border-color: var(--cream);
    background: rgba(250, 246, 241, 0.1);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

/* ── Section shared ──────────────────────────────── */
section {
    padding: 7rem 0;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--plum-deep);
}

.section-subtitle {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* ── About ───────────────────────────────────────── */
.about {
    background: var(--cream);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(58, 31, 48, 0.15);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(58, 31, 48, 0.2);
    border: 4px solid var(--cream);
}

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

.about-accent {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 100px;
    height: 100px;
    border: 2px solid var(--amber);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.4;
}

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

.about-signature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cream-dark);
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    color: var(--plum);
    font-style: italic;
}

.about-signature svg {
    width: 20px;
    height: 20px;
    color: var(--amber);
    flex-shrink: 0;
}

/* ── Divider ─────────────────────────────────────── */
.divider-section {
    padding: 5rem 0;
    background: var(--plum-deep);
}

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

.divider-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 1rem;
    max-width: 600px;
    line-height: 1.4;
}

.divider-attr {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
}

/* ── Menu ────────────────────────────────────────── */
.menu {
    background: var(--cream);
}

.menu .container {
    max-width: 900px;
}

.menu-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--cream-dark);
    padding-bottom: 0;
}

.menu-tab {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.menu-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--amber);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-tab.active {
    color: var(--plum-deep);
}

.menu-tab.active::after {
    transform: scaleX(1);
}

.menu-tab:hover {
    color: var(--plum-deep);
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.menu-item {
    padding: 1.5rem;
    background: white;
    border-radius: 4px;
    border: 1px solid rgba(200, 146, 58, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.menu-item:hover {
    box-shadow: 0 8px 32px rgba(58, 31, 48, 0.08);
    transform: translateY(-2px);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.375rem;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--plum-deep);
}

.menu-item-desc {
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--amber);
    white-space: nowrap;
}

.menu-item-details {
    list-style: none;
}

.menu-item-details li {
    font-size: 0.875rem;
    color: var(--text-light);
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.menu-item-details li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--plum-muted);
}

/* ── Gallery ─────────────────────────────────────── */
.gallery {
    background: var(--cream-dark);
    padding: 7rem 0;
}

.gallery .container {
    max-width: 1200px;
}

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

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

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

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

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

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

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

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: 5 / 9; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; }
.gallery-item:nth-child(4) { grid-column: 5 / 9; }
.gallery-item:nth-child(5) { grid-column: 9 / 13; grid-row: span 2; }

/* ── Visit ───────────────────────────────────────── */
.visit {
    background: var(--cream);
}

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

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.visit-detail {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

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

.visit-detail-icon svg {
    width: 20px;
    height: 20px;
    color: var(--amber);
}

.visit-detail-text h3 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 0.375rem;
}

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

.visit-detail-text a {
    color: var(--plum);
    border-bottom: 1px solid var(--plum-muted);
    transition: color 0.3s ease, border-color 0.3s ease;
}

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

.visit-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(58, 31, 48, 0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 100%);
    padding: 4rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-height: 360px;
    justify-content: center;
}

.map-icon {
    width: 48px;
    height: 48px;
    color: var(--amber);
    opacity: 0.8;
}

.map-placeholder p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--cream);
    font-style: italic;
    line-height: 1.6;
}

/* ── Contact ─────────────────────────────────────── */
.contact {
    background: var(--cream-dark);
}

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

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text);
    background: white;
    border: 1px solid var(--cream-dark);
    border-radius: 4px;
    padding: 0.875rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(200, 146, 58, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--plum-muted);
}

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(200, 146, 58, 0.08);
    border: 1px solid rgba(200, 146, 58, 0.2);
    border-radius: 4px;
    font-size: 0.9375rem;
    color: var(--plum);
}

.form-success svg {
    width: 20px;
    height: 20px;
    color: var(--amber);
    flex-shrink: 0;
}

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

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

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(250, 246, 241, 0.6);
    margin-top: 1rem;
    line-height: 1.7;
    max-width: 280px;
}

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

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

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(250, 246, 241, 0.6);
    transition: color 0.3s ease;
}

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

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(250, 246, 241, 0.6);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(250, 246, 241, 0.6);
    border-bottom: 1px solid rgba(250, 246, 241, 0.2);
    transition: color 0.3s ease, border-color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(250, 246, 241, 0.08);
    padding: 1.5rem 0;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(250, 246, 241, 0.35);
    text-align: center;
}

/* ── Animations ──────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Scroll reveal ───────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

    .about-images {
        max-width: 500px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transition: right 0.4s ease;
        box-shadow: -8px 0 32px rgba(58, 31, 48, 0.12);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .hero-content {
        padding: 7rem 1.5rem 3rem;
    }

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

    .menu-tabs {
        flex-wrap: wrap;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 280px;
    }

    .gallery-item:nth-child(5) {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 280px;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
        height: 200px;
    }

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

    .about-accent {
        display: none;
    }

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

    .footer-brand {
        grid-column: auto;
    }
}

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

    section {
        padding: 5rem 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: auto;
        height: 220px;
    }
}
