@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;600&family=Zilla+Slab:wght@600;700&display=swap');

:root {
    --ink: #17120f;
    --brown: #562a24;
    --brown-dark: #2b1714;
    --gold: #efa724;
    --gold-light: #f8bc4b;
    --copper: #754414;
    --cream: #fffaf0;
    --cream-deep: #f1e7d6;
    --white: #ffffff;
    --muted-dark: #dbcac3;
    --muted-light: #5f5049;
    --rule-light: #d8c9b5;
    --heading: "Zilla Slab", Georgia, serif;
    --body: "Roboto Slab", Georgia, serif;
    --ease-out: cubic-bezier(.22, 1, .36, 1);
    --text-small: .875rem;
    --text-body: 1rem;
    --text-lead: clamp(1.125rem, 1.8vw, 1.25rem);
    --text-display: clamp(2.35rem, 6vw, 4.75rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background-color: var(--cream);
    font-family: var(--body);
    font-size: var(--text-body);
    font-weight: 400;
    line-height: 1.65;
    text-align: left;
}

body.menu-open { overflow: hidden; }

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: .1em;
    text-underline-offset: .25em;
}

button { font: inherit; }

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 100;
    min-height: 44px;
    padding: .65rem 1rem;
    color: var(--brown);
    background-color: var(--white);
    font-weight: 700;
    transform: translateY(-180%);
    transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 3rem));
    margin-inline: auto;
    padding: 1.15rem 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.logo-crop {
    position: relative;
    display: block;
    aspect-ratio: 868 / 442;
    overflow: hidden;
}

.logo-crop img {
    width: 124.425%;
    max-width: none;
    height: auto;
    transform: translate(-9.26%, -31.11%);
}

.header-logo {
    width: clamp(7.5rem, 12vw, 9.25rem);
    min-height: 44px;
    flex: 0 0 auto;
    text-decoration: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: clamp(1.3rem, 3vw, 2.6rem);
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.nav-list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: .35rem 0;
    color: var(--white);
    font-size: var(--text-small);
    font-weight: 600;
    letter-spacing: .03em;
    text-decoration-line: underline;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 1px;
    text-underline-offset: .45em;
    transition: color .2s ease, text-decoration-thickness .2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
    color: var(--gold-light);
    text-decoration-thickness: 3px;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: .35rem;
    border: 2px solid var(--gold);
    color: var(--white);
    background-color: transparent;
    cursor: pointer;
}

.menu-line {
    transform-box: fill-box;
    transform-origin: center;
    transition: opacity .2s ease, transform .25s var(--ease-out);
}

.menu-toggle[aria-expanded="true"] .menu-line-top {
    transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-line-middle { opacity: 0; }

.menu-toggle[aria-expanded="true"] .menu-line-bottom {
    transform: translateY(-5px) rotate(-45deg);
}

.menu-backdrop { display: none; }

.hero {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: 100svh;
    align-items: center;
    overflow: hidden;
    padding: 8.5rem 1.5rem 5rem;
    color: var(--white);
    background-color: var(--brown-dark);
    text-align: left;
}

.hero-inner {
    width: min(560px, 100%);
    margin-inline: auto;
}

.section-kicker {
    display: block;
    margin: 0 0 1rem;
    font-family: var(--heading);
    font-size: var(--text-small);
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.5;
}

.opening-ribbon {
    position: relative;
    width: min(500px, 100%);
    max-width: 100%;
    margin: 0 auto .75rem;
}

.opening-ribbon-art {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    filter: drop-shadow(5px 6px 0 rgba(0, 0, 0, .24));
}

.opening-ribbon-tail {
    fill: #b66c17;
    stroke: var(--gold-light);
    stroke-width: 2;
    stroke-linejoin: round;
}

.opening-ribbon-fold {
    fill: #8f4d10;
}

.opening-ribbon-face {
    fill: var(--gold);
    stroke: var(--gold-light);
    stroke-width: 3;
    stroke-linejoin: round;
}

.opening-ribbon-edge {
    fill: none;
    stroke: #ffdb8a;
    stroke-width: 2;
    stroke-linecap: round;
}

.opening-ribbon-text {
    fill: var(--brown-dark);
    font-family: var(--heading);
    font-size: clamp(20px, calc(46px - 5vw), 28px);
    font-weight: 700;
    letter-spacing: .01em;
}

.hero-logo {
    width: 100%;
    max-width: 540px;
    aspect-ratio: 879 / 735;
    margin: 0 0 1.75rem;
    filter: drop-shadow(0 18px 20px rgba(0, 0, 0, .32));
}

.hero-logo img {
    width: 122.867%;
    transform: translate(-9.26%, -22.82%);
}

.hero-copy {
    max-width: 34rem;
    margin: 0 0 2.65em;
    color: #f5ece8;
    font-size: var(--text-lead);
    font-weight: 400;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    gap: .75rem;
    padding: .8rem 1.6rem;
    border: 2px solid var(--gold);
    color: var(--brown-dark);
    background-color: var(--gold);
    font-family: var(--heading);
    font-size: var(--text-body);
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
    box-shadow: 4px 4px 0 var(--brown-dark);
    transition: transform .2s var(--ease-out), background-color .2s ease, color .2s ease, box-shadow .2s var(--ease-out);
}

.button::after {
    content: "→";
    transition: transform .2s var(--ease-out);
}

.button:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 6px 6px 0 var(--brown-dark);
}

.button:hover::after,
.button:focus-visible::after { transform: translateX(3px); }

.button-ghost {
    color: var(--white);
    background-color: transparent;
    border-color: var(--white);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, .3);
}

.button-ghost:hover {
    color: var(--brown-dark);
    background-color: var(--white);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, .3);
}

.scroll-cue {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    display: grid;
    width: 44px;
    min-height: 44px;
    place-items: center;
    color: var(--gold);
    transform: translateX(-50%);
    animation: bob 2s ease-in-out infinite;
}

.scroll-cue svg {
    width: 1.4rem;
    height: 2rem;
}

.section { padding: clamp(5rem, 10vw, 8.5rem) 1.5rem; }

.section-inner {
    width: min(1120px, 100%);
    margin-inline: auto;
}

.section-kicker { color: var(--copper); }

.section-kicker::after {
    display: block;
    width: 2.5rem;
    height: 2px;
    margin-top: .75rem;
    background-color: currentColor;
    content: "";
}

h1, h2, h3 {
    font-family: var(--heading);
    line-height: 1.1;
}

h2, h3 {
    margin: 0;
    color: var(--brown);
    font-size: var(--text-display);
    letter-spacing: -.025em;
}

.menu-section {
    border-bottom: 1px solid var(--rule-light);
    background-color: var(--cream);
}

.menu-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
    gap: clamp(4rem, 10vw, 8rem);
    align-items: center;
}

.menu-copy p {
    max-width: 37rem;
    margin: 1.5rem 0 3.3em;
    color: var(--muted-light);
    font-size: var(--text-lead);
    line-height: 1.6;
}

.coming-card {
    position: relative;
    min-height: 24rem;
    padding: clamp(2.2rem, 5vw, 4rem) 2rem;
    color: var(--white);
    background-color: var(--brown);
    box-shadow: 18px 18px 0 var(--gold);
}

.coming-card::before,
.coming-card::after {
    position: absolute;
    inset: .75rem;
    border: 1px solid var(--gold);
    content: "";
    pointer-events: none;
}

.coming-card::after {
    inset: 1.05rem;
    border-color: rgba(255, 255, 255, .45);
}

.coming-card svg {
    width: 44px;
    margin: 0 0 1.2rem;
    color: var(--gold);
}

.coming-card h3 { color: var(--gold); }

.coming-card p {
    max-width: 20rem;
    margin: 1.25rem 0 0;
    color: var(--muted-dark);
    line-height: 1.65;
}

.about-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background-color: var(--brown);
    border-top: 4px solid var(--gold);
}

.about-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: clamp(3rem, 8vw, 7rem);
    align-items: center;
}

.about-emblem {
    display: flex;
    width: min(390px, 100%);
    min-height: 20rem;
    align-items: center;
    margin: 0;
    padding-left: clamp(1.5rem, 4vw, 2.75rem);
    border-left: 4px solid var(--gold);
}

.about-emblem span {
    display: block;
    max-width: 16rem;
    color: var(--gold);
    font-family: var(--heading);
    font-size: var(--text-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.025em;
    text-align: left;
}

.about-section .section-kicker { color: var(--gold); }

.about-copy h2 { color: var(--white); }

.about-copy p {
    max-width: 39rem;
    margin: 1.5rem 0 3.3em;
    color: var(--muted-dark);
    font-size: var(--text-body);
    line-height: 1.65;
}

.about-copy p:last-child { margin-bottom: 0; }

.closing-strip {
    padding: clamp(2.75rem, 6vw, 4rem) 1.5rem;
    color: var(--brown-dark);
    background-color: var(--gold);
}

.closing-strip h2 {
    width: min(1120px, 100%);
    margin-inline: auto;
    color: var(--brown-dark);
    font-size: var(--text-lead);
    line-height: 1.5;
    text-align: center;
    letter-spacing: .01em;
}

footer {
    padding: 2.5rem 1.5rem;
    color: var(--muted-dark);
    background-color: #120b09;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: min(1120px, 100%);
    margin-inline: auto;
    font-size: var(--text-small);
    line-height: 1.5;
    text-align: left;
}

.footer-inner p {
    max-width: 80ch;
    margin: 0;
}

.footer-mark {
    color: var(--white);
    font-family: var(--heading);
    font-weight: 700;
}

.noscript-note {
    margin: 0;
    padding: 1rem 1.5rem;
    color: var(--ink);
    background-color: var(--gold);
}

.js .hero-inner > * {
    opacity: 0;
    animation: hero-enter .7s var(--ease-out) forwards;
}

.js .hero-inner > :nth-child(2) { animation-delay: .08s; }
.js .hero-inner > :nth-child(3) { animation-delay: .16s; }
.js .hero-inner > :nth-child(4) { animation-delay: .24s; }

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes hero-enter {
    from {
    opacity: 0;
    transform: translateY(18px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

@keyframes bob {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 7px); }
}

@media (max-width: 760px) {
    .site-header { width: calc(100% - 2rem); }

    .js .menu-toggle {
    position: absolute;
    top: 1rem;
    right: 0;
    z-index: 32;
    display: inline-flex;
    }

    .js .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 19;
    display: block;
    width: 100%;
    min-height: 100svh;
    padding: 0;
    border: 0;
    background-color: rgba(0, 0, 0, .58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
    }

    .js .menu-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    }

    .js .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 31;
    display: grid;
    width: min(22rem, 88vw);
    min-height: 100svh;
    align-content: start;
    justify-items: stretch;
    grid-auto-rows: min-content;
    gap: 0;
    margin: 0;
    padding: 7rem 1.75rem 3rem;
    color: var(--white);
    background-color: #180d0b;
    border-left: 1px solid rgba(239, 167, 36, .5);
    box-shadow: -20px 0 48px rgba(0, 0, 0, .28);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .3s var(--ease-out), visibility 0s linear .3s;
    }

    .js .nav-list.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
    }

    .js .nav-list li { width: 100%; }

    .js .nav-list a {
    justify-content: flex-start;
    width: 100%;
    min-height: 64px;
    padding: .75rem .25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    font-size: var(--text-lead);
    text-underline-offset: .35em;
    }

    .menu-open .header-logo {
    opacity: 0;
    visibility: hidden;
    }

    .menu-open .menu-toggle {
    position: fixed;
    right: 1rem;
    }

    .menu-open .site-header { border-bottom-color: transparent; }

    .hero {
    min-height: 100svh;
    padding-top: 8.5rem;
    }

    .opening-ribbon {
    top: clamp(-2rem, -5vw, -1.5rem);
    }

    .hero-logo { width: 100%; }

    .hero-actions { margin-top: 1rem; }

    .menu-grid,
    .about-grid { grid-template-columns: 1fr; }

    .coming-card { margin-right: 16px; }

    .about-copy { order: -1; }

    .about-emblem {
    min-height: auto;
    padding: 2.5rem 0 0;
    border-top: 4px solid var(--gold);
    border-left: 0;
    }

    .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    }
}

@media (max-width: 380px) {
    .header-logo { width: 6.75rem; }

    .hero {
    padding-inline: 1rem;
    padding-bottom: 4rem;
    }

    .hero-actions {
    align-items: stretch;
    flex-direction: column;
    }

    .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .js .hero-inner > *,
    .js .reveal {
    opacity: 1;
    transform: none;
    }

    *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
    }
}