/* =============================================================
 * Upstate Restaurant 2026 — main.css
 * Palette: Terroir (cream/ink/brick/olive/gold)
 * Type: Fraunces (display, variable opsz 9-144) + Inter (body, variable opsz 14-32)
 * ============================================================= */

/* ---- Tokens ---- */
:root {
    /* Terroir palette */
    --ur-bg:        #F7F1E6;   /* cream */
    --ur-bg-warm:   #EFE6D3;   /* deeper cream for section shifts */
    --ur-ink:       #231C15;   /* warm off-black body */
    --ur-ink-soft:  #4A3F32;
    --ur-ink-mute:  #6E6252;   /* darkened for AA on both bg cream + bg warm */
    --ur-brick:     #A83221;   /* primary accent */
    --ur-brick-dk:  #7E2214;
    --ur-olive:     #6B7A3C;
    --ur-gold:      #D9B26A;
    --ur-line:      rgba(35, 28, 21, 0.15);
    --ur-line-soft: rgba(35, 28, 21, 0.08);

    /* Type */
    --ur-font-display: "Fraunces", Georgia, "Times New Roman", serif;
    --ur-font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Type scale */
    --ur-fs-body:   1.0625rem;   /* 17px */
    --ur-fs-small:  0.9375rem;   /* 15px */
    --ur-fs-xsmall: 0.8125rem;   /* 13px */
    --ur-fs-h1:     clamp(3rem, 6.5vw + 1rem, 6.5rem);
    --ur-fs-h2:     clamp(2rem, 3.2vw + 1rem, 3.75rem);
    --ur-fs-h3:     clamp(1.25rem, 1vw + 0.9rem, 1.5rem);

    /* Layout */
    --ur-max:       min(1240px, 92vw);
    --ur-max-prose: min(680px, 90vw);
    --ur-header-h:  72px;

    /* Motion */
    --ur-ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
    --ur-dur-fast:  180ms;
    --ur-dur-med:   360ms;
    --ur-dur-slow:  700ms;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html {
    color-scheme: light;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--ur-header-h);
}

body {
    margin: 0;
    background: var(--ur-bg);
    color: var(--ur-ink);
    font-family: var(--ur-font-body);
    font-size: var(--ur-fs-body);
    line-height: 1.65;
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--ur-brick); text-decoration: none; }
a:hover { color: var(--ur-brick-dk); }

:focus-visible {
    outline: 2px solid var(--ur-brick);
    outline-offset: 3px;
    border-radius: 2px;
}

/* On dark backgrounds (reservation section), swap focus ring to gold */
.ur2026-reserve :focus-visible,
.ur2026-site-header .ur2026-cta:focus-visible {
    outline-color: var(--ur-gold);
}

/* CTAs get a slightly stronger focus treatment */
.ur2026-cta:focus-visible {
    outline-offset: 4px;
}

.ur2026-skip-link {
    position: absolute; left: -9999px; top: -9999px;
    padding: 12px 16px; background: var(--ur-ink); color: var(--ur-bg);
    z-index: 999;
}
.ur2026-skip-link:focus {
    left: 12px; top: 12px;
}

/* ---- Site header ---- */
.ur2026-site-header {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in oklab, var(--ur-bg) 92%, transparent);
    backdrop-filter: saturate(1.2) blur(10px);
    -webkit-backdrop-filter: saturate(1.2) blur(10px);
    border-bottom: 1px solid var(--ur-line-soft);
}
.ur2026-site-header__inner {
    max-width: var(--ur-max);
    margin: 0 auto;
    height: var(--ur-header-h);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 0 8px;
}

.ur2026-brand {
    font-family: var(--ur-font-display);
    font-weight: 500;
    font-variation-settings: "opsz" 28;
    color: var(--ur-ink);
    letter-spacing: -0.005em;
}
.ur2026-brand__mark {
    font-size: 1.4rem;
}
.ur2026-brand__mark--large {
    font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
    font-variation-settings: "opsz" 60;
    display: block;
    line-height: 1.05;
}

.ur2026-primary-nav__list {
    display: flex;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    font-size: var(--ur-fs-small);
}
.ur2026-primary-nav__list a {
    color: var(--ur-ink);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    padding: 6px 2px;
    position: relative;
    display: inline-block;
}
.ur2026-primary-nav__list a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 1px;
    background: var(--ur-brick);
    transition: right var(--ur-dur-med) var(--ur-ease);
}
.ur2026-primary-nav__list a:hover { color: var(--ur-brick); }
.ur2026-primary-nav__list a:hover::after { right: 0; }
.ur2026-primary-nav__list a[aria-current="page"] { color: var(--ur-brick); }
.ur2026-primary-nav__list a[aria-current="page"]::after { right: 0; }

/* v0.6.1 fix: at <640px the 3-col header (brand + nav + CTA) overflows.
   Hide the nav and CTA, center the brand. Hamburger deferred (too much scope). */
@media (max-width: 639px) {
    .ur2026-site-header__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 0 16px;
    }
    .ur2026-site-header .ur2026-primary-nav,
    .ur2026-site-header .ur2026-cta {
        display: none;
    }
}

/* ---- CTAs ---- */
.ur2026-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--ur-font-body);
    font-size: var(--ur-fs-small);
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 12px 22px;
    border-radius: 999px;
    min-height: 44px;
    cursor: pointer;
    transition: background var(--ur-dur-fast) var(--ur-ease),
                color      var(--ur-dur-fast) var(--ur-ease),
                border     var(--ur-dur-fast) var(--ur-ease);
    text-decoration: none;
    white-space: nowrap;
}
.ur2026-cta--solid {
    background: var(--ur-brick);
    color: #fff8ee;
    border: 1px solid var(--ur-brick);
}
.ur2026-cta--solid:hover {
    background: var(--ur-brick-dk);
    border-color: var(--ur-brick-dk);
    color: #fff8ee;
}
.ur2026-cta--ghost {
    background: transparent;
    color: var(--ur-ink);
    border: 1px solid var(--ur-line);
}
.ur2026-cta--ghost:hover {
    border-color: var(--ur-ink);
    color: var(--ur-ink);
}
.ur2026-cta--text {
    background: transparent;
    color: var(--ur-ink);
    padding: 12px 8px;
    border: none;
}
.ur2026-cta--text:hover { color: var(--ur-brick); }
.ur2026-cta--onDark { color: var(--ur-bg); }

/* ---- Eyebrow / kicker ---- */
.ur2026-eyebrow {
    font-family: var(--ur-font-body);
    font-size: var(--ur-fs-xsmall);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ur-ink-mute);
    margin: 0 0 12px;
    font-weight: 500;
}
.ur2026-eyebrow--onDark { color: var(--ur-gold); }

/* ---- Headings ---- */
.ur2026-h2 {
    font-family: var(--ur-font-display);
    font-weight: 400;
    font-variation-settings: "opsz" 96;
    font-size: var(--ur-fs-h2);
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--ur-ink);
    margin: 0 0 24px;
    max-width: 22ch;
}
.ur2026-h2--sm {
    font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
    font-variation-settings: "opsz" 60;
}
.ur2026-h2--onDark { color: var(--ur-bg); }

/* ==== HERO ==== */
.ur2026-hero {
    position: relative;
    min-height: min(90vh, 800px);
    display: grid;
    align-items: end;
    overflow: hidden;
    isolation: isolate;
    background: var(--ur-ink);
}
/* v0.6.1: mobile hero stays tall enough to hold the headline stack. */
@media (max-width: 640px) {
    .ur2026-hero { min-height: 70vh; }
}
.ur2026-hero__media {
    position: absolute; inset: 0;
    z-index: 0;
}
.ur2026-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}
.ur2026-hero__scrim {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(35, 28, 21, 0.25) 0%,
        rgba(35, 28, 21, 0.15) 40%,
        rgba(35, 28, 21, 0.75) 100%);
    pointer-events: none;
}
.ur2026-hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--ur-max);
    margin: 0 auto;
    width: 100%;
    padding: 0 8px 72px;
    color: #fff8ee;
}
.ur2026-hero__rule {
    display: block;
    width: 44px;
    height: 2px;
    background: var(--ur-gold);
    margin-bottom: 18px;
}
.ur2026-hero__kicker {
    font-size: var(--ur-fs-small);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin: 0 0 12px;
    color: rgba(255, 248, 238, 0.85);
}
.ur2026-hero__headline {
    font-family: var(--ur-font-display);
    font-weight: 400;
    font-variation-settings: "opsz" 144;
    font-size: var(--ur-fs-h1);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin: 0 0 36px;
    color: #fff8ee;
    max-width: 14ch;
}
.ur2026-hero__headline-line {
    display: block;
}
.ur2026-hero__actions {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

/* ==== ABOUT ==== */
.ur2026-about {
    padding: clamp(72px, 10vw, 140px) 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
}
.ur2026-about__inner {
    max-width: var(--ur-max);
    margin: 0 auto;
    padding: 0 8px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 900px) {
    .ur2026-about__inner {
        grid-template-columns: 4fr 7fr;
        gap: 96px;
    }
}
.ur2026-about__figure {
    margin: 0;
    aspect-ratio: 3 / 4;
    background: var(--ur-bg-warm);
    overflow: hidden;
}
.ur2026-about__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* v0.6.1 fix: base state must be visible.
       If the @supports (animation-timeline: scroll()) block below never fires
       (or fires but the reveal keyframe never runs), the figure stays visible.
       The reveal animation still overrides this from within @supports. */
    clip-path: inset(0 0 0% 0);
}
.ur2026-about__prose {
    max-width: 52ch;
}
.ur2026-about__lede {
    font-family: var(--ur-font-display);
    font-weight: 300;
    font-variation-settings: "opsz" 32;
    font-size: clamp(1.25rem, 1.4vw + 0.8rem, 1.65rem);
    line-height: 1.4;
    color: var(--ur-ink);
    margin: 0 0 24px;
}
.ur2026-about__pull {
    font-family: var(--ur-font-display);
    font-weight: 300;
    font-variation-settings: "opsz" 60, "wght" 320;
    font-style: italic;
    font-size: clamp(1.25rem, 1.4vw + 0.8rem, 1.75rem);
    line-height: 1.35;
    color: var(--ur-brick);
    border-left: 2px solid var(--ur-brick);
    margin: 32px 0;
    padding: 4px 0 4px 22px;
    max-width: 40ch;
}
.ur2026-about__more {
    color: var(--ur-ink-soft);
    margin: 0;
}

/* ==== MENU ==== */
.ur2026-menu {
    padding: clamp(72px, 10vw, 140px) 0;
    background: var(--ur-bg-warm);
    content-visibility: auto;
    contain-intrinsic-size: 1px 1400px;
}
.ur2026-menu__header {
    max-width: var(--ur-max);
    margin: 0 auto 56px;
    padding: 0 8px;
    text-align: center;
}
.ur2026-menu__header .ur2026-h2 { margin-left: auto; margin-right: auto; }
.ur2026-menu__note {
    color: var(--ur-ink-soft);
    margin: 8px auto 0;
    max-width: 42ch;
}
.ur2026-menu__grid {
    max-width: var(--ur-max);
    margin: 0 auto;
    padding: 0 8px;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 700px) {
    .ur2026-menu__grid { grid-template-columns: 1fr 1fr; gap: 48px 40px; }
}
@media (min-width: 1100px) {
    /* 6-col grid: feature dish spans 3, others span 1 each */
    .ur2026-menu__grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 56px 28px;
    }
    .ur2026-dish-card               { grid-column: span 2; }
    .ur2026-dish-card--feature      { grid-column: span 3; grid-row: span 2; }
    .ur2026-dish-card--feature .ur2026-dish-card__figure { aspect-ratio: 4 / 5; }
    .ur2026-dish-card--feature .ur2026-dish-card__name   { font-size: clamp(1.5rem, 1.4vw + 0.9rem, 2rem); }
}
.ur2026-dish-card--feature .ur2026-dish-card__figure { aspect-ratio: 16 / 11; }
.ur2026-dish-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.ur2026-dish-card__figure {
    margin: 0;
    aspect-ratio: 4 / 5;
    background: var(--ur-bg);
    overflow: hidden;
    position: relative;
}
.ur2026-dish-card__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ur-dur-slow) var(--ur-ease);
    will-change: transform;
}
.ur2026-dish-card:hover .ur2026-dish-card__figure img,
.ur2026-dish-card:focus-within .ur2026-dish-card__figure img {
    transform: scale(1.035);
}
.ur2026-dish-card__name {
    transition: color var(--ur-dur-fast) var(--ur-ease);
}
.ur2026-dish-card:hover .ur2026-dish-card__name,
.ur2026-dish-card:focus-within .ur2026-dish-card__name {
    color: var(--ur-brick);
}
.ur2026-dish-card__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    border-bottom: 1px solid var(--ur-line-soft);
    padding-bottom: 8px;
}
.ur2026-dish-card__name {
    font-family: var(--ur-font-display);
    font-weight: 500;
    font-variation-settings: "opsz" 24;
    font-size: var(--ur-fs-h3);
    line-height: 1.2;
    margin: 0;
    color: var(--ur-ink);
}
.ur2026-dish-card__price {
    font-family: var(--ur-font-body);
    font-size: var(--ur-fs-small);
    color: var(--ur-ink-mute);
    font-variant-numeric: tabular-nums;
}
.ur2026-dish-card__desc {
    margin: 0;
    color: var(--ur-ink-soft);
    font-size: var(--ur-fs-small);
    line-height: 1.55;
}
.ur2026-dish-card__chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: -4px;
}
.ur2026-chip {
    display: inline-block;
    font-family: var(--ur-font-body);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--ur-bg);
    color: var(--ur-ink-soft);
    border: 1px solid var(--ur-line);
    font-weight: 500;
}
.ur2026-dish-card--feature .ur2026-chip {
    background: var(--ur-brick);
    color: #fff8ee;
    border-color: var(--ur-brick);
}

/* ==== VISIT (hours + contact) ==== */
.ur2026-visit {
    padding: clamp(72px, 10vw, 140px) 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
}
.ur2026-visit__inner {
    max-width: var(--ur-max);
    margin: 0 auto;
    padding: 0 8px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
}
@media (min-width: 800px) {
    .ur2026-visit__inner { grid-template-columns: 1fr 1fr; gap: 88px; }
}
/* v0.6.1 fix: at 640-1023 the hours column can squish (labels+times cramped);
   loosen row padding + line-height so the day/time pairs breathe. */
@media (min-width: 640px) and (max-width: 1023px) {
    .ur2026-hours__row {
        padding: 12px 0;
        gap: 24px;
        line-height: 1.6;
    }
    .ur2026-hours--large { font-size: 1rem; }
}
.ur2026-hours {
    margin: 0;
    padding: 0;
    font-size: var(--ur-fs-body);
}
.ur2026-hours__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px dashed var(--ur-line-soft);
}
.ur2026-hours__row dt {
    font-weight: 500;
    color: var(--ur-ink);
}
.ur2026-hours__row dd {
    margin: 0;
    color: var(--ur-ink-soft);
    font-variant-numeric: tabular-nums;
}
.ur2026-hours__row--closed dd {
    color: var(--ur-brick);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: var(--ur-fs-xsmall);
}
.ur2026-hours--large { font-size: 1.125rem; }

.ur2026-address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--ur-ink);
    font-size: var(--ur-fs-body);
    margin: 0 0 12px;
}
.ur2026-address--large { font-size: 1.125rem; }
.ur2026-address a { color: var(--ur-brick); }
.ur2026-visit__phone { margin: 0 0 12px; }
.ur2026-visit__phone a {
    font-family: var(--ur-font-display);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--ur-brick);
    font-variation-settings: "opsz" 32;
}
.ur2026-visit__note {
    margin: 8px 0 0;
    color: var(--ur-ink-mute);
    font-size: var(--ur-fs-small);
}

/* ==== RESERVE (dark section) ==== */
.ur2026-reserve {
    padding: clamp(80px, 10vw, 160px) 0;
    background: var(--ur-ink);
    color: var(--ur-bg);
    position: relative;
}
.ur2026-reserve::before {
    content: "";
    display: block;
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 44px; height: 2px;
    background: var(--ur-gold);
}
.ur2026-reserve__inner {
    max-width: var(--ur-max);
    margin: 0 auto;
    padding: 0 8px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: start;
}
@media (min-width: 900px) {
    .ur2026-reserve__inner {
        grid-template-columns: 5fr 6fr;
        gap: 88px;
    }
}
.ur2026-reserve__intro { max-width: 40ch; }
.ur2026-reserve__lede {
    font-family: var(--ur-font-display);
    font-weight: 300;
    font-variation-settings: "opsz" 32, "wght" 320;
    font-size: clamp(1.15rem, 1.2vw + 0.8rem, 1.5rem);
    color: rgba(247, 241, 230, 0.9);
    margin: 12px 0 20px;
    max-width: 44ch;
    line-height: 1.4;
}
.ur2026-reserve__policy {
    color: rgba(247, 241, 230, 0.55);
    font-size: var(--ur-fs-small);
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 248, 238, 0.12);
    max-width: 40ch;
}

/* ==== FORM ==== */
.ur2026-form {
    display: grid;
    gap: 20px;
}
.ur2026-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 500px) {
    .ur2026-form__row { grid-template-columns: 1fr; }
}
.ur2026-form__field {
    display: block;
}
.ur2026-form__label {
    display: block;
    font-size: var(--ur-fs-xsmall);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ur-gold);
    margin-bottom: 8px;
    font-weight: 500;
}
.ur2026-form__optional {
    text-transform: none;
    letter-spacing: 0;
    color: rgba(247, 241, 230, 0.5);
    font-weight: 400;
    margin-left: 6px;
}
.ur2026-form input,
.ur2026-form select,
.ur2026-form textarea {
    width: 100%;
    background: transparent;
    color: #fff8ee;
    font-family: var(--ur-font-body);
    font-size: var(--ur-fs-body);
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 248, 238, 0.28);
    border-radius: 0;
    outline: none;
    transition: border-color var(--ur-dur-fast) var(--ur-ease);
    -webkit-appearance: none;
    appearance: none;
    line-height: 1.4;
}
.ur2026-form textarea {
    resize: vertical;
    min-height: 3.4em;
}
.ur2026-form input::placeholder,
.ur2026-form textarea::placeholder {
    color: rgba(247, 241, 230, 0.4);
}
.ur2026-form input:hover,
.ur2026-form select:hover,
.ur2026-form textarea:hover {
    border-bottom-color: rgba(255, 248, 238, 0.5);
}
.ur2026-form input:focus-visible,
.ur2026-form select:focus-visible,
.ur2026-form textarea:focus-visible {
    outline: none;
    border-bottom-color: var(--ur-gold);
    box-shadow: 0 1px 0 var(--ur-gold);
}
.ur2026-form input:invalid:not(:placeholder-shown) {
    border-bottom-color: var(--ur-brick);
}
.ur2026-form select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23D9B26A' stroke-width='1.5' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 10px;
    padding-right: 24px;
}
.ur2026-form select option {
    background: var(--ur-ink);
    color: #fff8ee;
}
.ur2026-form__actions {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 12px;
}

/* Focused label highlight — visually pairs label with field */
.ur2026-form__field:focus-within .ur2026-form__label {
    color: #fff8ee;
}

/* ==== FOOTER ==== */
.ur2026-site-footer {
    background: var(--ur-bg-warm);
    padding: 88px 0 28px;
    border-top: 1px solid var(--ur-line-soft);
}
.ur2026-site-footer__inner {
    max-width: var(--ur-max);
    margin: 0 auto 56px;
    padding: 0 8px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 800px) {
    .ur2026-site-footer__inner {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 72px;
    }
}
.ur2026-site-footer__col--brand { max-width: 36ch; }
.ur2026-site-footer__heading {
    font-family: var(--ur-font-body);
    font-size: var(--ur-fs-xsmall);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ur-ink-mute);
    font-weight: 600;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ur-line-soft);
}
.ur2026-site-footer__tag {
    font-family: var(--ur-font-display);
    font-weight: 300;
    font-variation-settings: "opsz" 32, "wght" 320;
    font-style: italic;
    color: var(--ur-ink-soft);
    max-width: 32ch;
    margin: 14px 0 0;
    font-size: 1.0625rem;
    line-height: 1.5;
}
.ur2026-site-footer__note {
    margin: 0 0 16px;
    color: var(--ur-ink-soft);
    font-size: var(--ur-fs-small);
    line-height: 1.55;
}
.ur2026-site-footer__legal {
    max-width: var(--ur-max);
    margin: 0 auto;
    padding: 28px 8px 0;
    border-top: 1px solid var(--ur-line-soft);
    display: flex;
    gap: 12px;
    color: var(--ur-ink-mute);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    flex-wrap: wrap;
}
.ur2026-site-footer__sep { color: var(--ur-line); }
.ur2026-site-footer__legal a {
    color: var(--ur-ink-mute);
    transition: color var(--ur-dur-fast) var(--ur-ease);
}
.ur2026-site-footer__legal a:hover { color: var(--ur-brick); }

/* ==== 404 ==== */
.ur2026-404 {
    min-height: 60vh;
    display: grid;
    place-items: center;
    padding: clamp(72px, 12vw, 160px) 8px;
}
.ur2026-404__inner {
    max-width: 44ch;
    text-align: center;
}
.ur2026-404__lede {
    color: var(--ur-ink-soft);
    font-size: 1.125rem;
    margin: 4px auto 32px;
}
.ur2026-404__actions {
    display: flex;
    justify-content: center;
}

/* ==== Mobile menu grid override — preserve hierarchy ==== */
@media (min-width: 500px) and (max-width: 1099px) {
    .ur2026-menu__grid {
        grid-template-columns: 1fr 1fr;
    }
    .ur2026-dish-card--feature {
        grid-column: 1 / -1;
    }
    .ur2026-dish-card--feature .ur2026-dish-card__figure {
        aspect-ratio: 16 / 9;
    }
}
@media (max-width: 499px) {
    .ur2026-dish-card--feature .ur2026-dish-card__figure {
        aspect-ratio: 4 / 5;
    }
    .ur2026-dish-card--feature .ur2026-chip {
        /* keep the signature chip red-solid even in single-col */
    }
}

/* ==== Article (single/page) ==== */
.ur2026-article {
    max-width: var(--ur-max-prose);
    margin: 96px auto;
    padding: 0 8px;
}
.ur2026-article__title {
    font-family: var(--ur-font-display);
    font-weight: 400;
    font-variation-settings: "opsz" 96;
    font-size: var(--ur-fs-h2);
    line-height: 1.05;
    margin: 0 0 24px;
    color: var(--ur-ink);
}
.ur2026-article__meta {
    font-size: var(--ur-fs-xsmall);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ur-ink-mute);
    margin: 0 0 12px;
}
.ur2026-article__body {
    color: var(--ur-ink);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* =============================================================
 * MOTION LAYER — Round 2
 * CSS scroll-driven animations (animation-timeline: scroll() / view())
 * All wrapped in @supports so browsers without support get static.
 * All disabled by @media (prefers-reduced-motion: reduce).
 * ============================================================= */

@supports (animation-timeline: scroll()) {
    /* Hero image: subtle drift + fade as user scrolls past hero.
       animation-range: exit — from when the hero begins to leave the viewport
       to when it's fully gone. */
    .ur2026-hero {
        view-timeline-name: --hero-view;
        view-timeline-axis: block;
    }
    .ur2026-hero__image {
        animation: ur-hero-drift linear both;
        animation-timeline: --hero-view;
        animation-range: exit 0% exit 100%;
        will-change: transform, opacity;
    }
    @keyframes ur-hero-drift {
        from { transform: scale(1)    translate3d(0, 0,     0); opacity: 1; }
        to   { transform: scale(1.14) translate3d(0, -12vh, 0); opacity: 0.28; }
    }

    .ur2026-hero__scrim {
        animation: ur-hero-scrim linear both;
        animation-timeline: --hero-view;
        animation-range: exit 0% exit 100%;
    }
    @keyframes ur-hero-scrim {
        from { opacity: 1;   }
        to   { opacity: 1.4; }
    }

    /* Hero headline: gentle line-by-line rise on load.
       Uses an entry-timeline so it also plays if navigated to mid-page. */
    .ur2026-hero__headline-line {
        display: block;
        animation: ur-line-rise 700ms var(--ur-ease) both;
        opacity: 0;
        transform: translateY(24px);
    }
    .ur2026-hero__headline-line:nth-child(1) { animation-delay: 200ms; }
    .ur2026-hero__headline-line:nth-child(2) { animation-delay: 380ms; }
    .ur2026-hero__headline-line:nth-child(3) { animation-delay: 560ms; }
    .ur2026-hero__kicker {
        animation: ur-line-rise 700ms var(--ur-ease) both;
        opacity: 0; transform: translateY(16px);
        animation-delay: 80ms;
    }
    .ur2026-hero__rule {
        transform: scaleX(0); transform-origin: left center;
        animation: ur-rule-in 900ms var(--ur-ease) both;
        animation-delay: 40ms;
    }
    .ur2026-hero__actions {
        animation: ur-line-rise 700ms var(--ur-ease) both;
        opacity: 0; transform: translateY(16px);
        animation-delay: 740ms;
    }
    @keyframes ur-line-rise {
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes ur-rule-in {
        to { transform: scaleX(1); }
    }

    /* Dish cards: stagger fade + rise as they enter viewport.
       2026-08-09 v0.6.2 fix: same class of bug as the about-section clip-path.
       Initial `opacity: 0` outside keyframes meant cards were invisible until
       the scroll-timeline animation fired — and in Playwright's initial
       screenshot capture (or any environment where the animation never fires)
       the entire menu section rendered as empty cream space. Moved the initial
       state INTO the @keyframes `from` block + changed `both` → `forwards`
       so cards default to visible and only get pre-cleared when the animation
       is actively driving them. */
    .ur2026-dish-card {
        view-timeline-name: --dish-view;
        view-timeline-axis: block;
        animation: ur-card-in linear forwards;
        animation-timeline: --dish-view;
        animation-range: entry 0% entry 90%;
        will-change: transform, opacity;
    }
    @keyframes ur-card-in {
        from { opacity: 0; transform: translateY(28px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* About section: figure reveals as viewport crosses it.
       2026-08-09 v0.6.1 fix: animation-fill-mode changed from `both` to `forwards`
       + clip-path pre-set to inset(0) on base rule (outside @supports) so if the
       animation-timeline never fires the content is still visible. Belt+suspenders. */
    .ur2026-about {
        view-timeline-name: --about-view;
        view-timeline-axis: block;
    }
    .ur2026-about__figure img {
        animation: ur-clip-reveal linear forwards;
        animation-timeline: --about-view;
        animation-range: entry 10% cover 40%;
        transform: scale(1.05);
        will-change: clip-path, transform;
    }
    @keyframes ur-clip-reveal {
        from { clip-path: inset(0 0 100% 0); }
        to   { clip-path: inset(0 0 0% 0); transform: scale(1); }
    }
    /* v0.6.1: same belt+suspenders as figure — `forwards` + explicit `from`
       so if the animation-timeline never fires, prose stays fully visible
       (not the 0-opacity starting state that axe just flagged as a serious
       color-contrast violation). */
    .ur2026-about__prose {
        animation: ur-prose-in linear forwards;
        animation-timeline: --about-view;
        animation-range: entry 5% cover 35%;
    }
    @keyframes ur-prose-in {
        from { opacity: 0; transform: translateY(24px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* Section h2s only — subtle lift as they enter. Eyebrow stays put. */
    .ur2026-menu__header .ur2026-h2,
    .ur2026-visit__col .ur2026-h2,
    .ur2026-reserve__inner .ur2026-h2 {
        view-timeline-name: --sec-view;
        view-timeline-axis: block;
        animation: ur-sec-in linear both;
        animation-timeline: --sec-view;
        animation-range: entry 5% cover 25%;
        opacity: 0.6;
        transform: translateY(12px);
    }
    @keyframes ur-sec-in {
        to { opacity: 1; transform: translateY(0); }
    }
}

/* Fallback for no-support browsers: everything visible immediately. */
@supports not (animation-timeline: scroll()) {
    .ur2026-dish-card,
    .ur2026-about__figure img,
    .ur2026-about__prose,
    .ur2026-menu__header .ur2026-h2,
    .ur2026-visit__col .ur2026-h2,
    .ur2026-reserve__inner .ur2026-h2,
    .ur2026-hero__image,
    .ur2026-hero__scrim {
        opacity: 1;
        transform: none;
        clip-path: none;
    }
}

/* ==== Type refinement — Round 2 ==== */
.ur2026-hero__headline {
    font-weight: 300;
    font-variation-settings: "opsz" 144, "wght" 320;
    letter-spacing: -0.015em;
}
.ur2026-h2 {
    font-weight: 350;
    font-variation-settings: "opsz" 96, "wght" 380;
}

/* ==== Reduced motion — HARD gate ==== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-delay: 0ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .ur2026-hero__headline-line,
    .ur2026-hero__kicker,
    .ur2026-hero__actions,
    .ur2026-dish-card,
    .ur2026-about__prose,
    .ur2026-menu__header .ur2026-h2,
    .ur2026-visit__col .ur2026-h2,
    .ur2026-reserve__inner .ur2026-h2 {
        opacity: 1 !important;
        transform: none !important;
    }
    .ur2026-hero__rule {
        transform: scaleX(1) !important;
    }
    .ur2026-about__figure img {
        clip-path: none !important;
        transform: none !important;
    }
    .ur2026-hero__image {
        transform: none !important;
        opacity: 1 !important;
    }
}
