:root {
    --black: #0d0f11;
    --charcoal: #171b1f;
    --graphite: #242b32;
    --silver: #b7bdc6;
    --silver-soft: #d4dae1;
    --brass: #b58b4e;
    --brass-bright: #cfaf79;
    --wood: #4a3122;
    --wood-deep: #2c1b13;
    --ivory: #efebe4;

    --font-display: 'Bodoni Moda', Georgia, serif;
    --font-body: 'Manrope', sans-serif;
    --font-label: 'Bebas Neue', sans-serif;

    --shell: min(1180px, 92vw);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    --line: rgba(212, 218, 225, 0.2);
    --line-brass: rgba(181, 139, 78, 0.42);
    --shadow-soft: 0 16px 36px rgba(6, 8, 10, 0.28);
    --shadow-hard: 0 28px 58px rgba(4, 5, 7, 0.52);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    font-family: var(--font-body);
    color: var(--ivory);
    line-height: 1.65;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 10% 0%, #30363d 0%, var(--black) 44%),
        var(--black);
}

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

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

button {
    font: inherit;
    color: inherit;
}

.site-noise {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0) 32%),
        radial-gradient(circle at 82% 76%, rgba(181, 139, 78, 0.06) 0, rgba(181, 139, 78, 0) 34%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 3px);
    opacity: 0.82;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.25s ease;
}

.site-header.scrolled {
    background: rgba(12, 14, 16, 0.86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.header-shell {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.brand span {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.01em;
}

.primary-nav {
    justify-self: center;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.97rem;
    color: rgba(212, 218, 225, 0.88);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.33rem;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
    background: linear-gradient(90deg, var(--brass), var(--brass-bright));
}

.nav-link:hover,
.nav-link.active {
    color: #fff8eb;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.header-cta {
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.92rem;
    border: 1px solid var(--line-brass);
    padding: 0.48rem 0.95rem;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.header-cta:hover {
    background: rgba(181, 139, 78, 0.16);
    border-color: rgba(207, 175, 121, 0.8);
}

.nav-toggle {
    display: none;
    width: 2.15rem;
    height: 1.8rem;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 120;
}

.nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--ivory);
    transition: all 0.24s ease;
}

.nav-toggle span:nth-child(1) { top: 0.1rem; }
.nav-toggle span:nth-child(2) { top: 0.77rem; }
.nav-toggle span:nth-child(3) { top: 1.43rem; }

.nav-toggle.open span:nth-child(1) {
    top: 0.77rem;
    transform: rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    top: 0.77rem;
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: end;
    padding: 8.5rem 0 5.3rem;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.09);
    transition: opacity 1.1s ease, transform 7.2s ease;
}

.hero-slide.is-active {
    opacity: 1;
    animation: heroDrift 14s ease-in-out infinite alternate;
}

@keyframes heroDrift {
    0% {
        transform: scale(1.02) translate3d(0, 0, 0);
    }
    50% {
        transform: scale(1.09) translate3d(-1.2%, -0.9%, 0);
    }
    100% {
        transform: scale(1.15) translate3d(1.1%, 1.2%, 0);
    }
}

.hero-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(7, 8, 10, 0.18) 0%, rgba(7, 8, 10, 0.62) 62%, rgba(7, 8, 10, 0.82) 100%),
        radial-gradient(circle at 24% 36%, rgba(181, 139, 78, 0.2) 0, rgba(181, 139, 78, 0) 42%);
}

.hero-logo-overlay {
    position: absolute;
    top: 50%;
    left: clamp(0.8rem, 5vw, 4.5rem);
    transform: translateY(-50%);
    width: clamp(260px, 32vw, 450px);
    opacity: 0.96;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.62)) brightness(1.35) contrast(1.25);
}

.kicker {
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.98rem;
    color: var(--brass-bright);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 3px;
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.93rem;
    transition: all 0.2s ease;
}

.btn-brass {
    background: linear-gradient(135deg, var(--brass), var(--brass-bright));
    color: #23160d;
    box-shadow: 0 8px 20px rgba(181, 139, 78, 0.3);
}

.btn-brass:hover {
    transform: translateY(-2px);
}

.btn-ghost {
    border-color: rgba(212, 218, 225, 0.45);
    color: var(--ivory);
}

.btn-ghost:hover {
    background: rgba(212, 218, 225, 0.1);
}

.section {
    padding: clamp(5rem, 9vw, 8rem) 0;
}

.section-head {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    max-width: 760px;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.9vw, 4.1rem);
    line-height: 0.96;
    margin: 0.4rem 0 0.8rem;
    text-wrap: balance;
}

.section-head p {
    color: rgba(239, 235, 228, 0.78);
}

.experience {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(36, 42, 48, 0.78), rgba(22, 26, 31, 0.97));
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.experience-card {
    padding: 1.35rem 0 0;
    border-top: 1px solid rgba(207, 175, 121, 0.6);
    background: transparent;
}

.card-index {
    font-family: var(--font-label);
    letter-spacing: 0.14em;
    font-size: 1rem;
    color: rgba(212, 218, 225, 0.55);
}

.experience-card h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    margin: 0.35rem 0 0.5rem;
}

.experience-card p {
    color: rgba(239, 235, 228, 0.8);
    max-width: 34ch;
}

.editorial-quote {
    background:
        linear-gradient(180deg, rgba(36, 25, 18, 0.8), rgba(16, 18, 20, 0.95)),
        url('public/wood.png') center/cover;
    text-align: center;
    border-top: 1px solid var(--line-brass);
    border-bottom: 1px solid var(--line-brass);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 6.5rem);
    color: rgba(207, 175, 121, 0.65);
    line-height: 0.6;
    margin-bottom: 0.4rem;
}

.editorial-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.3vw, 2.7rem);
    line-height: 1.15;
    max-width: 24ch;
    margin: 0 auto;
    color: #f8f3ea;
    text-wrap: balance;
}

.quote-credit {
    margin-top: 0.9rem;
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(212, 218, 225, 0.75);
}

.feature-strips {
    background: linear-gradient(180deg, rgba(14, 17, 20, 0.95), rgba(11, 13, 15, 0.98));
}

.feature-strip {
    display: grid;
    grid-template-columns: 1.06fr 1fr;
    gap: clamp(1.2rem, 2.6vw, 2.2rem);
    align-items: center;
    margin-bottom: clamp(3rem, 7vw, 5rem);
}

.feature-strip:last-child {
    margin-bottom: 0;
}

.feature-strip.reverse {
    grid-template-columns: 1fr 1.06fr;
}

.feature-strip.reverse .feature-media { order: 2; }
.feature-strip.reverse .feature-copy { order: 1; }

.feature-media {
    min-height: 380px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-hard);
}

.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-copy {
    max-width: 520px;
}

.feature-copy h3 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.6vw, 3.2rem);
    line-height: 1.02;
    margin: 0.42rem 0 0.75rem;
    text-wrap: balance;
}

.feature-copy p {
    color: rgba(239, 235, 228, 0.82);
}

.menu-section {
    background: linear-gradient(160deg, #c7ced5 0%, #a9b3be 45%, #858f9a 100%);
    color: #11161d;
}

.menu-section .kicker {
    color: #6d4b20;
}

.menu-section .section-head p {
    color: rgba(17, 22, 29, 0.8);
}

.menu-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.2rem;
    align-items: start;
}

    .menu-tabs {
    display: grid;
    gap: 0.35rem;
    position: sticky;
    top: 100px;
}

.menu-tab {
    border: 1px solid rgba(17, 22, 29, 0.26);
    background: rgba(239, 235, 228, 0.72);
    color: #1a222b;
    text-align: left;
    padding: 0.52rem 0.7rem;
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.menu-tab:hover {
    background: rgba(17, 22, 29, 0.12);
}

.menu-tab.active {
    background: linear-gradient(135deg, #8f6632, #b68d50);
    color: #fff7ea;
    border-color: #7f5b2e;
}

.menu-panels {
    border: 1px solid rgba(17, 22, 29, 0.24);
    background: rgba(239, 235, 228, 0.9);
    box-shadow: 0 16px 30px rgba(16, 20, 24, 0.18);
    padding: 1.2rem;
}

.menu-panel h3 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.05;
    margin-bottom: 0.4rem;
    color: #141b22;
}

.menu-intro {
    color: rgba(17, 22, 29, 0.76);
    margin-bottom: 1rem;
}

.menu-items {
    display: grid;
    gap: 0.9rem;
}

.menu-item {
    border-top: 1px solid rgba(17, 22, 29, 0.16);
    padding-top: 0.75rem;
}

.menu-item:first-child {
    border-top: none;
    padding-top: 0;
}

.menu-item-head {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: baseline;
}

.menu-item-head h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.2;
    color: #111820;
}

.menu-item-head span {
    font-family: var(--font-label);
    letter-spacing: 0.08em;
    font-size: 1.1rem;
    color: #6f4d24;
    white-space: nowrap;
}

.menu-item p {
    color: rgba(17, 22, 29, 0.82);
    margin-top: 0.28rem;
    font-size: 0.96rem;
}

.menu-option {
    font-style: italic;
    color: rgba(17, 22, 29, 0.72);
}

.events {
    position: relative;
    overflow: hidden;
    background: #14191f;
}

.events::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(12, 14, 16, 0.82) 8%, rgba(45, 29, 20, 0.5) 55%, rgba(12, 14, 16, 0.86) 100%),
        url("public/micimg.jpeg") center/cover no-repeat;
    transform: scale(1.03);
}

.events .shell {
    position: relative;
    z-index: 1;
}

.events .section-head {
    max-width: 820px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.event-card {
    border: 1px solid rgba(207, 175, 121, 0.44);
    background: linear-gradient(165deg, rgba(18, 22, 27, 0.88), rgba(13, 15, 17, 0.76));
    box-shadow: var(--shadow-soft);
    padding: 1.2rem;
    min-height: 220px;
}

.event-tag {
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.9rem;
    color: var(--brass-bright);
}

.event-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.1;
    margin: 0.3rem 0 0.5rem;
    color: #f7f0e4;
}

.event-card p {
    color: rgba(239, 235, 228, 0.86);
}

.gallery {
    background: linear-gradient(180deg, #1d2329 0%, #101317 100%);
}

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

.gallery-tile {
    border: 1px solid var(--line);
    cursor: pointer;
    overflow: hidden;
    min-height: 200px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.gallery-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 15, 17, 0), rgba(13, 15, 17, 0.55));
    opacity: 0;
    transition: opacity 0.22s ease;
}

.gallery-tile:hover::after {
    opacity: 1;
}

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

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

.gallery-tile.large {
    grid-column: span 7;
    min-height: 360px;
}

.gallery-tile.wide {
    grid-column: span 7;
    min-height: 260px;
}

.gallery-tile:not(.large):not(.wide) {
    grid-column: span 5;
}

.visit {
    background:
        linear-gradient(170deg, rgba(45, 29, 20, 0.72), rgba(19, 22, 26, 0.96)),
        url('public/wood.png') center/cover;
}

.visit-shell {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 1rem;
}

.visit-card,
.map-card {
    background: rgba(13, 15, 17, 0.68);
    border: 1px solid var(--line-brass);
    box-shadow: var(--shadow-soft);
}

.visit-card {
    padding: 1.5rem;
}

.visit-card h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.03;
    margin: 0.35rem 0 0.62rem;
}

.visit-address {
    color: rgba(239, 235, 228, 0.88);
}

.hours-list {
    list-style: none;
    margin: 1.1rem 0 1.2rem;
    display: grid;
    gap: 0.45rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.9rem;
    border-bottom: 1px dashed rgba(212, 218, 225, 0.3);
    padding-bottom: 0.45rem;
}

.hours-list span {
    color: rgba(239, 235, 228, 0.8);
}

.hours-list strong {
    color: #fff9ed;
}

.visit-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.visit-actions .btn {
    width: 100%;
}

.map-card {
    min-height: 420px;
    overflow: hidden;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer {
    background: #090b0d;
    border-top: 1px solid var(--line);
    padding: 1.4rem 0;
    text-align: center;
}

.footer-credit {
    color: rgba(239, 235, 228, 0.82);
    font-size: 0.95rem;
    text-align: center;
    width: 100%;
}

.footer-credit a {
    color: #fff8eb;
}

.footer-credit a:hover {
    color: var(--brass-bright);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 140;
    background: rgba(6, 8, 10, 0.9);
    display: grid;
    place-items: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: min(92vw, 1040px);
    max-height: 80vh;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-hard);
}

.lightbox-btn {
    position: absolute;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(239, 235, 228, 0.42);
    border-radius: 999px;
    background: rgba(13, 15, 17, 0.62);
    color: #fff;
    cursor: pointer;
    font-size: 1.42rem;
}

.lightbox-btn.close {
    top: 1rem;
    right: 1rem;
    font-size: 1rem;
}

.lightbox-btn.prev { left: 1rem; }
.lightbox-btn.next { right: 1rem; }

.lightbox-caption {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 15, 17, 0.75);
    border: 1px solid rgba(207, 175, 121, 0.45);
    color: #fff8eb;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.62s ease, transform 0.62s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

@media (max-width: 1080px) {
    .experience-grid,
    .feature-strip,
    .feature-strip.reverse,
    .visit-shell,
    .menu-layout {
        grid-template-columns: 1fr;
    }

    .feature-strip.reverse .feature-media,
    .feature-strip.reverse .feature-copy {
        order: initial;
    }

    .menu-tabs {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem;
    }

    .menu-tab {
        flex: 0 0 auto;
        width: auto;
        padding: 0.36rem 0.52rem;
        font-size: 0.72rem;
        letter-spacing: 0.06em;
        line-height: 1.1;
        text-align: center;
    }
    .events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .events::before {
        background-position: center, 100% center;
    }

    .gallery-tile.large,
    .gallery-tile.wide,
    .gallery-tile:not(.large):not(.wide) {
        grid-column: span 6;
    }
}

@media (max-width: 860px) {
    .header-shell {
        grid-template-columns: 1fr auto;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
    }

    .primary-nav {
        position: absolute;
        top: calc(100% + 0.45rem);
        right: 0;
        width: min(280px, 86vw);
        display: grid;
        gap: 0.2rem;
        padding: 0.55rem;
        background: rgba(13, 15, 17, 0.96);
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.22s ease;
    }

    .primary-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        padding: 0.45rem 0.55rem;
    }

    .header-cta {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-logo-overlay {
        top: 50%;
        left: 0.6rem;
        transform: translateY(-50%);
        width: clamp(180px, 56vw, 280px);
        opacity: 0.9;
    }

    .site-header {
        padding: 0.72rem 0;
    }

    .brand span {
        font-size: 1rem;
    }

    .hero {
        padding: 7rem 0 4.2rem;
    }

    .menu-tabs {
        gap: 0.3rem;
    }

    .menu-tab {
        padding: 0.3rem 0.46rem;
        font-size: 0.68rem;
        letter-spacing: 0.05em;
    }

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

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

    .gallery-tile.large,
    .gallery-tile.wide,
    .gallery-tile:not(.large):not(.wide) {
        grid-column: auto;
        min-height: 215px;
    }

    .map-card {
        min-height: 320px;
    }

    .lightbox-btn.prev,
    .lightbox-btn.next {
        display: none;
    }

    .lightbox-caption {
        border-radius: 10px;
        width: calc(100% - 2rem);
        text-align: center;
    }
}

.gallery-grid.gallery-grid-library {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-grid-library .gallery-tile,
.gallery-grid-library .gallery-tile.large,
.gallery-grid-library .gallery-tile.wide,
.gallery-grid-library .gallery-tile:not(.large):not(.wide) {
    grid-column: auto !important;
    min-height: 220px;
}

@media (max-width: 640px) {
    .gallery-grid.gallery-grid-library {
        grid-template-columns: 1fr;
    }

    .gallery-grid-library .gallery-tile,
    .gallery-grid-library .gallery-tile.large,
    .gallery-grid-library .gallery-tile.wide,
    .gallery-grid-library .gallery-tile:not(.large):not(.wide) {
        min-height: 215px;
    }
}

/* Show only the first 10 gallery tiles on the page; lightbox still contains all images */
.gallery-grid-library .gallery-tile:nth-child(n+11) {
    display: none;
}
