/* =============================================================================
   TAAAMPOPO reservation system — customer styles.

   Palette, typography, navigation and footer are taken from the live site
   (taampopo.com/style.css) so /reserve reads as the same property:
       black #221F20 · green #1A4432 · yellow #F5C55F · red #AD312D · cream #E7DED1
       Slackey for display, IBM Plex Sans for everything else.
   ========================================================================== */

:root {
    /* Brand — identical to the main site */
    --green: #1A4432;
    --yellow: #F5C55F;
    --red: #AD312D;
    --cream: #E7DED1;
    --black: #221F20;
    --nav-h: 64px;

    /* Derived surfaces used by the reservation flow */
    --line: rgba(245, 197, 95, .16);
    --line-soft: rgba(231, 222, 209, .10);

    /* Form fields carry their own border and fill, a good deal stronger than
       --line-soft. A decorative hairline can afford to be barely there; an input
       cannot, or it reads as empty page until it is focused. */
    --field-border: rgba(231, 222, 209, .24);
    --field-bg: rgba(231, 222, 209, .05);

    --font-display: 'Slackey', 'Comic Sans MS', cursive;
    --font-body: 'IBM Plex Sans', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Ambient background, matching the site's hero treatment ------------------ */
.page-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 80% at 10% 60%, rgba(173, 49, 45, .16) 0%, transparent 60%),
        radial-gradient(ellipse 70% 70% at 80% 40%, rgba(26, 68, 50, .55) 0%, transparent 60%),
        var(--black);
}

.page-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .032;
    background-image:
        repeating-linear-gradient(0deg, var(--yellow) 0, var(--yellow) 1px, transparent 1px, transparent 48px),
        repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 1px, transparent 1px, transparent 48px);
}

.page-kanji {
    position: fixed;
    right: -2%;
    top: 50%;
    z-index: 0;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(20vw, 28vw, 28vw);
    line-height: 1;
    color: var(--yellow);
    opacity: .05;
    user-select: none;
    pointer-events: none;
    animation: kfloat 9s ease-in-out infinite;
}

@keyframes kfloat {
    0%, 100% { transform: translateY(-50%) rotate(-1.5deg); }
    50%      { transform: translateY(-52%) rotate(1.5deg); }
}

@media (prefers-reduced-motion: reduce) {
    .page-kanji { animation: none; }
    html { scroll-behavior: auto; }
}

/* =========================================================================
   NAV — mirrors the site header
   ====================================================================== */
nav.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 2.5rem;
    background: rgba(34, 31, 32, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(245, 197, 95, .1);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: .06em;
    color: var(--yellow);
    text-shadow: 2px 2px 0 var(--red);
    text-decoration: none;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    justify-content: end;
    align-items: center;
    grid-column: 2 / -1;
}

.nav-links a {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: .6;
    text-decoration: none;
    transition: opacity .2s, color .2s;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--yellow);
}

.nav-cta,
.nav-social {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--yellow);
    opacity: 1;
    padding: .46rem 1.3rem;
    border: 1.5px solid var(--yellow);
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, color .2s;
}

.nav-cta:hover,
.nav-social:hover {
    background: var(--yellow);
    color: var(--black) !important;
    opacity: 1;
}

.nav-cta.is-current {
    background: var(--yellow);
    color: var(--black);
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    z-index: 1050;
    position: relative;
    color: var(--yellow);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
    pointer-events: none;
    z-index: 999;
}

@media (max-width: 991px) {
    nav.site-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1.25rem;
        z-index: 1001;
    }

    .menu-toggle { display: block; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: #000;
        flex-direction: column;
        gap: 25px;
        padding: 100px 30px;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, .5);
        justify-content: center;
        transition: right .4s cubic-bezier(.16, 1, .3, 1), opacity .3s ease;
        opacity: 0;
    }

    .nav-links.active {
        display: flex;
        right: 0;
        opacity: 1;
    }

    .nav-links li {
        opacity: 0;
        visibility: hidden;
        transform: translateX(15px);
        transition: opacity .3s ease, transform .3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: .10s; }
    .nav-links.active li:nth-child(2) { transition-delay: .15s; }
    .nav-links.active li:nth-child(3) { transition-delay: .20s; }
    .nav-links.active li:nth-child(4) { transition-delay: .25s; }
    .nav-links.active li:nth-child(5) { transition-delay: .30s; }
    .nav-links.active li:nth-child(6) { transition-delay: .35s; }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.no-scroll {
        overflow: hidden;
        height: 100vh;
    }
}

/* =========================================================================
   LAYOUT
   ====================================================================== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 3rem;
}

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

.shell {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--nav-h) + 3.5rem);
    padding-bottom: 5rem;
}

.layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.layout__main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.layout__aside { display: none; }

.eyebrow {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--yellow);
    opacity: .75;
    margin-bottom: 1.1rem;
}

.eyebrow::before {
    content: '';
    width: 34px;
    height: 1px;
    background: var(--yellow);
    opacity: .5;
}

/* Hero -------------------------------------------------------------------- */
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.6rem);
    line-height: 1.15;
    letter-spacing: .01em;
    color: var(--cream);
    margin: 0 0 1.1rem;
    max-width: 20ch;
}

.hero__title em {
    font-style: normal;
    color: var(--yellow);
    text-shadow: 2px 2px 0 var(--red);
}

.hero__sub {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--cream);
    opacity: .55;
    max-width: 54ch;
    font-weight: 300;
}

/* Steps ------------------------------------------------------------------- */
.step {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}

.step__head {
    display: flex;
    align-items: baseline;
    gap: .9rem;
    flex-wrap: wrap;
}

.step__num {
    font-family: var(--font-display);
    font-size: .95rem;
    color: var(--yellow);
    opacity: .8;
}

.step__title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3.6vw, 1.7rem);
    line-height: 1.25;
    color: var(--cream);
    margin: 0;
}

.step__hint {
    font-size: .6rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--yellow);
    opacity: .75;
}

.step.is-locked {
    opacity: .35;
    pointer-events: none;
}

.note {
    font-size: .75rem;
    line-height: 1.7;
    color: var(--cream);
    opacity: .38;
    font-weight: 300;
    margin: 0;
}

/* Date strip -------------------------------------------------------------- */
.date-strip {
    display: flex;
    gap: .7rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: .25rem .25rem 1rem;
    margin: 0 -.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(245, 197, 95, .3) transparent;
}

.date-strip::-webkit-scrollbar { height: 3px; }
.date-strip::-webkit-scrollbar-track { background: rgba(231, 222, 209, .06); }
.date-strip::-webkit-scrollbar-thumb { background: rgba(245, 197, 95, .35); }

.date-chip {
    scroll-snap-align: center;
    flex: 0 0 auto;
    width: 78px;
    padding: .85rem .4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--line-soft);
    cursor: pointer;
    font: inherit;
    transition: border-color .2s, background .2s, color .2s;
}

.date-chip:hover {
    border-color: var(--line);
    background: rgba(245, 197, 95, .05);
}

.date-chip__day,
.date-chip__month {
    font-size: .58rem;
    font-weight: 500;
    letter-spacing: .18em;
    opacity: .5;
    text-transform: uppercase;
}

.date-chip__num {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.25;
}

.date-chip.is-selected {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
}

.date-chip.is-selected .date-chip__day,
.date-chip.is-selected .date-chip__month { opacity: .75; }

/* Guest stepper ----------------------------------------------------------- */
.stepper {
    display: flex;
    align-items: center;
    gap: .8rem;
    max-width: 260px;
}

.stepper__btn {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--yellow);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}

.stepper__btn:hover:not(:disabled) {
    background: var(--yellow);
    color: var(--black);
}

.stepper__btn:disabled {
    opacity: .25;
    cursor: not-allowed;
}

.stepper__value {
    flex: 1;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-soft);
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--cream);
}

/* Slots ------------------------------------------------------------------- */
.slot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
}

.slot-btn {
    position: relative;
    min-height: 66px;
    padding: .8rem .6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    background: transparent;
    border: 1px solid var(--line-soft);
    color: var(--cream);
    font: inherit;
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
}

.slot-btn__time {
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .06em;
}

.slot-btn__meta {
    font-size: .55rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    opacity: .45;
}

.slot-btn:hover:not(:disabled) {
    border-color: var(--yellow);
    color: var(--yellow);
}

.slot-btn.is-selected {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
}

.slot-btn.is-selected .slot-btn__meta { opacity: .7; }

.slot-btn:disabled,
.slot-btn.is-booked {
    border-color: rgba(231, 222, 209, .06);
    color: var(--cream);
    opacity: .3;
    cursor: not-allowed;
}

.slot-btn.is-booked .slot-btn__time { text-decoration: line-through; }

.slot-empty,
.slot-loading {
    grid-column: 1 / -1;
    font-size: .78rem;
    letter-spacing: .04em;
    color: var(--cream);
    opacity: .4;
    border: 1px dashed var(--line-soft);
    padding: 1.4rem;
    text-align: center;
}

/* Summary + form ---------------------------------------------------------- */
.summary {
    border: 1px solid var(--line);
    background: rgba(26, 68, 50, .18);
    padding: 1.4rem;
}

.summary__title {
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--yellow);
    opacity: .7;
    margin: 0 0 1.1rem;
}

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

.summary__label,
.detail__label {
    font-size: .55rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: .4;
    margin: 0 0 .3rem;
}

.summary__value,
.detail__value {
    font-size: .95rem;
    font-weight: 500;
    color: var(--cream);
    margin: 0;
    overflow-wrap: anywhere;
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.field label {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: .68;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: var(--field-bg);
    border: 1px solid var(--field-border);
    color: var(--cream);
    font-family: var(--font-body);
    /* Never below 16px: iOS Safari zooms the whole page in on a smaller field. */
    font-size: 1rem;
    padding: .85rem .9rem;
    min-height: 48px;
    border-radius: 0;
    transition: border-color .2s, background-color .2s;
}

/* Native selects draw their own arrow in a colour we cannot control and that
   vanishes on this background, so the control is reset and given one. */
.field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.4rem;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23E7DED1' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .95rem center;
    background-size: 12px 8px;
}

/* Keeps the browser's own date and time widgets legible on a dark field, and
   makes the calendar panel itself open dark rather than as a white sheet.
   Matched on type alone so any date field added later is covered too. */
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"],
.field select {
    color-scheme: dark;
}

/* The stock calendar icon is drawn near-black and vanishes on this background. */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator,
input[type="month"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(2);
    opacity: .9;
    cursor: pointer;
    padding: 4px;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.field textarea {
    min-height: 96px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--cream);
    opacity: .42;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: rgba(231, 222, 209, .38);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--yellow);
    background: rgba(231, 222, 209, .07);
    outline: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--red); }

.field__error {
    font-size: .72rem;
    color: #e07a76;
    min-height: 1rem;
}

.field--full { grid-column: 1 / -1; }

/* Cover charge ------------------------------------------------------------ */
/* Marketing consent -------------------------------------------------------- */
/* Deliberately quiet. A consent box styled to catch the thumb is a dark
   pattern, and consent collected that way is worth nothing the moment somebody
   complains about it. */
.consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.45;
    text-transform: none;
    letter-spacing: 0;
}

.consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    flex: 0 0 auto;
    accent-color: var(--gold, #E8B84B);
    cursor: pointer;
}

.consent__fine {
    display: block;
    margin-top: 4px;
    font-size: .78rem;
    opacity: .65;
}
.cover-charge {
    border: 1px solid var(--line);
    background: rgba(245, 197, 95, .05);
    padding: 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

/* A display rule outranks the hidden attribute's own display:none, so hiding the
   box needs saying explicitly — without this, `hidden` is silently ignored and a
   zero cover charge is announced anyway. */
.cover-charge[hidden] { display: none; }

.cover-charge__amount {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--yellow);
    text-shadow: 2px 2px 0 var(--red);
}

.cover-charge__note {
    font-size: .8rem;
    line-height: 1.7;
    color: var(--cream);
    opacity: .5;
    margin: 0;
    font-weight: 300;
}

/* Buttons ----------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    width: 100%;
    min-height: 52px;
    padding: .9rem 2rem;
    background: var(--yellow);
    color: var(--black);
    border: 1.5px solid var(--yellow);
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, color .2s, opacity .2s;
}

.btn:hover:not(:disabled) {
    background: transparent;
    color: var(--yellow);
}

.btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.btn--ghost {
    background: transparent;
    color: var(--yellow);
}

.btn--ghost:hover:not(:disabled) {
    background: var(--yellow);
    color: var(--black);
}

.btn--quiet {
    background: transparent;
    color: var(--cream);
    border-color: var(--line-soft);
}

.btn--quiet:hover:not(:disabled) {
    border-color: var(--yellow);
    color: var(--yellow);
    background: transparent;
}

.btn__spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(34, 31, 32, .3);
    border-top-color: var(--black);
    border-radius: 50%;
    animation: spin .7s linear infinite;
    display: none;
}

.btn.is-loading .btn__spinner { display: block; }

.btn.is-loading {
    pointer-events: none;
    opacity: .7;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Alerts ------------------------------------------------------------------ */
.alert {
    border: 1px solid var(--red);
    background: rgba(173, 49, 45, .12);
    color: var(--cream);
    padding: .9rem 1.1rem;
    font-size: .88rem;
    line-height: 1.7;
    display: none;
}

.alert.is-visible { display: block; }

.alert--info {
    border-color: var(--line);
    background: rgba(245, 197, 95, .07);
}

.alert--success {
    border-color: rgba(26, 68, 50, .9);
    background: rgba(26, 68, 50, .3);
}

/* Aside ------------------------------------------------------------------- */
.decor__kicker {
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--yellow);
    opacity: .52;
    margin: 0 0 .9rem;
}

.decor__body {
    font-size: .8rem;
    line-height: 1.8;
    color: var(--cream);
    opacity: .38;
    font-weight: 300;
    margin: 0;
}

.rule {
    border: 0;
    border-top: 1px solid var(--line-soft);
    margin: 2rem 0;
}

/* Reservation ticket ------------------------------------------------------ */
.ticket {
    border: 1px solid var(--line);
    background: rgba(26, 68, 50, .16);
    padding: 2rem 1.6rem;
}

.ticket__status {
    display: inline-block;
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--yellow);
    padding: .4rem .9rem;
    margin-bottom: 1.4rem;
}

.ticket__status--cancelled {
    background: var(--red);
    color: var(--cream);
}

.ticket__status--pending {
    background: transparent;
    color: var(--yellow);
    border: 1px solid var(--yellow);
}

.ticket__code {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 6vw, 2.6rem);
    line-height: 1.2;
    color: var(--yellow);
    text-shadow: 2px 2px 0 var(--red);
    margin: 0 0 .4rem;
    overflow-wrap: anywhere;
}

.ticket__caption {
    font-size: .58rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: .38;
    margin: 0 0 1.8rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    border-top: 1px solid var(--line-soft);
    padding-top: 1.6rem;
}

.detail--full { grid-column: 1 / -1; }

.pill {
    display: inline-block;
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .3rem .7rem;
    border: 1px solid var(--line-soft);
    color: var(--cream);
}

.pill--paid {
    color: var(--yellow);
    border-color: var(--yellow);
}

.pill--failed {
    color: #e07a76;
    border-color: var(--red);
}

.action-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: .7rem;
    margin-top: 2rem;
}

.link-box {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    border: 1px dashed var(--line-soft);
    padding: 1.1rem;
    margin-top: 1.8rem;
}

.link-box__url {
    font-size: .74rem;
    color: var(--yellow);
    opacity: .8;
    overflow-wrap: anywhere;
}

a.inline-link {
    color: var(--yellow);
    text-decoration: none;
    opacity: .8;
}

a.inline-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* =========================================================================
   FOOTER — mirrors the site footer
   ====================================================================== */
footer.site-footer {
    position: relative;
    z-index: 1;
    background: var(--black);
    border-top: 1px solid rgba(245, 197, 95, .07);
    padding: 4.5rem 0 2.8rem;
}

.ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
    text-align: left;
}

.ft-brand {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--yellow);
    text-shadow: 2px 2px 0 var(--red);
    margin-bottom: .9rem;
}

.ft-desc {
    font-size: .8rem;
    line-height: 1.7;
    opacity: .38;
    font-weight: 300;
    max-width: 260px;
}

.ft-col-h {
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.3rem;
    opacity: .52;
}

.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.ft-links a {
    font-size: .8rem;
    color: var(--cream);
    opacity: .38;
    text-decoration: none;
    font-weight: 300;
    transition: opacity .2s;
}

.ft-links a:hover { opacity: .72; }

.ft-bot {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(231, 222, 209, .06);
    padding-top: 1.8rem;
}

.ft-copy {
    font-size: .68rem;
    opacity: .22;
    font-weight: 300;
    text-align: center;
}

@media (max-width: 767px) {
    .ft-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .ft-desc { max-width: none; }

    /* On a phone — smaller screen, often outdoors, often at an angle — the
       resting field needs to read as a field before it is touched. Borders and
       fill go up, and the label with them. */
    :root {
        --field-border: rgba(231, 222, 209, .38);
        --field-bg: rgba(231, 222, 209, .08);
    }

    .field label {
        font-size: .7rem;
        letter-spacing: .14em;
        opacity: .85;
    }

    .field input,
    .field select,
    .field textarea {
        min-height: 52px;
        padding: .9rem .95rem;
    }

    .field input::placeholder,
    .field textarea::placeholder { opacity: .55; }

    .form-grid { gap: 1.15rem; }
}

/* Utilities --------------------------------------------------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}

/* Responsive -------------------------------------------------------------- */
@media (min-width: 600px) {
    .slot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .action-stack { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .summary__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .btn--inline { width: auto; min-width: 320px; }
}

@media (min-width: 768px) {
    .detail-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .layout { flex-direction: row; gap: 4rem; }

    .layout__aside {
        display: block;
        width: 280px;
        flex: 0 0 280px;
        border-left: 1px solid var(--line-soft);
        padding-left: 2.5rem;
    }

    .layout__aside-inner { position: sticky; top: calc(var(--nav-h) + 2.5rem); }
}

@media print {
    .page-bg, .page-grid, .page-kanji, nav.site-nav, .action-stack, footer.site-footer { display: none !important; }
    body { background: #fff; color: #000; }
    .ticket { border: 1px solid #000; background: #fff; }
    .ticket__code { color: #000; text-shadow: none; }
    .detail__value, .ticket__caption, .detail__label { color: #000; opacity: 1; }
}

/* =========================================================================
   Closed / fully booked dates, and the call-us prompt
   ====================================================================== */
.date-chip.is-unavailable {
    opacity: .32;
    cursor: not-allowed;
    border-style: dashed;
}

.date-chip.is-unavailable:hover {
    background: transparent;
    border-color: var(--line-soft);
}

.date-chip.is-unavailable .date-chip__num {
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.date-chip__flag {
    font-size: .5rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    margin-top: .1rem;
}

.call-prompt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .8rem;
    border: 1px solid var(--line);
    background: rgba(245, 197, 95, .06);
    padding: 1.4rem;
}

.call-prompt[hidden] { display: none; }

.call-prompt__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--yellow);
    margin: 0;
}

.call-prompt__body {
    font-size: .9rem;
    line-height: 1.7;
    color: var(--cream);
    opacity: .7;
    margin: 0;
    max-width: 52ch;
}

.call-prompt__action { width: auto; min-width: 240px; }

/* The refund rule. Quieter than the amount above it, but never so quiet that a
   guest can say they were not told. */
.cover-charge__refund {
    margin-top: .5rem;
    padding-top: .5rem;
    border-top: 1px solid var(--line-soft);
    opacity: .8;
}

.cover-charge__breakdown {
    font-size: .85rem;
    color: var(--cream);
    opacity: .75;
    margin: 0;
    font-variant-numeric: tabular-nums;
}
