/* ---------- Theme tokens ---------- */
:root {
    --bg: #f7f1e8;
    --bg-elev: #fffaf2;
    --bg-sunk: #efe6d6;
    --ink: #2a1d14;
    --ink-soft: #6b5a4d;
    --ink-muted: #8d7c6d;
    --line: rgba(42, 29, 20, 0.12);
    --line-strong: rgba(42, 29, 20, 0.22);
    --accent: #a65d2b;
    --accent-ink: #ffffff;
    --accent-soft: #f3d9c0;
    --gold: #c89860;
    --success: #3f9b5e;

    --shadow-sm: 0 1px 2px rgba(42, 29, 20, 0.06), 0 2px 6px rgba(42, 29, 20, 0.04);
    --shadow-md: 0 8px 24px rgba(42, 29, 20, 0.08), 0 2px 6px rgba(42, 29, 20, 0.05);
    --shadow-lg: 0 24px 60px rgba(42, 29, 20, 0.16), 0 6px 18px rgba(42, 29, 20, 0.08);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;

    --font-display: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    --container: 1160px;
    --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

html[data-theme="dark"] {
    --bg: #14100c;
    --bg-elev: #1d1712;
    --bg-sunk: #0f0c08;
    --ink: #f3ead9;
    --ink-soft: #c9bba4;
    --ink-muted: #8f806c;
    --line: rgba(243, 234, 217, 0.10);
    --line-strong: rgba(243, 234, 217, 0.22);
    --accent: #e89456;
    --accent-ink: #1b120a;
    --accent-soft: #3a2414;
    --gold: #d8ad72;
    --success: #6dcc8b;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.6), 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}

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

[hidden] { display: none !important; }

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

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0;
}

h2 { font-size: clamp(1.75rem, 3.2vw, 2.6rem); }

em { font-style: italic; font-variation-settings: "ital" 1; color: var(--accent); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--ink);
    color: var(--bg);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

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

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}

.brand-mark { color: var(--accent); flex-shrink: 0; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
}
.brand-tag {
    font-size: 0.72rem;
    color: var(--ink-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.93rem;
    font-weight: 500;
}
.site-nav a {
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--ink-soft);
    transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.site-nav a:hover { color: var(--ink); background: var(--line); }

.site-nav .nav-cta {
    background: var(--ink);
    color: var(--bg);
    padding: 9px 18px;
    margin-left: 6px;
}
.site-nav .nav-cta:hover { background: var(--accent); color: var(--accent-ink); }

.header-actions { display: flex; align-items: center; gap: 8px; }

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: var(--bg-elev);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.theme-toggle:hover { transform: translateY(-1px); border-color: var(--accent); }
.theme-toggle svg {
    position: absolute;
    inset: 0;
    margin: auto;
    transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}
.theme-toggle .icon-sun { opacity: 1; transform: rotate(0) scale(1); }
.theme-toggle .icon-moon { opacity: 0; transform: rotate(-45deg) scale(0.6); }
html[data-theme="dark"] .theme-toggle .icon-sun { opacity: 0; transform: rotate(45deg) scale(0.6); }
html[data-theme="dark"] .theme-toggle .icon-moon { opacity: 1; transform: rotate(0) scale(1); }

/* ---------- Buttons & eyebrows ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.97rem;
    letter-spacing: -0.005em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--ink);
    color: var(--bg);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-md); }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-elev); }
.btn-lg { padding: 18px 30px; font-size: 1.02rem; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink-soft);
    letter-spacing: 0.01em;
}
.eyebrow-plain {
    background: transparent;
    border: none;
    padding: 0;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--success) 20%, transparent);
    animation: pulse 2.2s ease-in-out infinite;
}
.status-dot.closed {
    background: #c34e4e;
    box-shadow: 0 0 0 4px color-mix(in srgb, #c34e4e 20%, transparent);
    animation: none;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--success) 20%, transparent); }
    50% { box-shadow: 0 0 0 7px color-mix(in srgb, var(--success) 8%, transparent); }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 120px);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
}
.hero-blob-1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: -140px; right: -140px;
    opacity: 0.35;
}
.hero-blob-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    bottom: -120px; left: -80px;
    opacity: 0.25;
}
html[data-theme="dark"] .hero-blob-1 { opacity: 0.28; }
html[data-theme="dark"] .hero-blob-2 { opacity: 0.18; }

.hero-grain {
    position: absolute; inset: 0;
    background-image: radial-gradient(var(--line-strong) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
    mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}

.hero-content { max-width: 620px; }

.hero-title {
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 600;
    margin: 20px 0 22px;
}

.hero-lede {
    font-size: clamp(1.05rem, 1.5vw, 1.18rem);
    color: var(--ink-soft);
    max-width: 52ch;
    margin: 0 0 32px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    margin: 0;
}
.hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats dt {
    font-size: 0.78rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}
.hero-stats dd {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--ink);
}

/* Hero cup card */
.hero-card {
    margin: 0;
    justify-self: center;
    width: min(100%, 420px);
    aspect-ratio: 4 / 5;
    background: linear-gradient(165deg, var(--bg-elev), var(--bg-sunk));
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.hero-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius-xl) - 1px);
    background: radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--gold) 18%, transparent), transparent 60%);
    pointer-events: none;
}
.hero-card-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cup {
    position: relative;
    width: 180px;
    height: 200px;
    margin: 20px auto 0;
}
.cup-body {
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 140px;
    background: linear-gradient(180deg, #f1ece3 0%, #ded4c3 100%);
    border-radius: 6px 6px 24px 24px / 6px 6px 30px 30px;
    box-shadow: inset -14px 0 28px rgba(0, 0, 0, 0.08), inset 14px 0 22px rgba(255, 255, 255, 0.5);
}
html[data-theme="dark"] .cup-body {
    background: linear-gradient(180deg, #3a2f26 0%, #1f1812 100%);
    box-shadow: inset -14px 0 28px rgba(0, 0, 0, 0.35), inset 14px 0 22px rgba(255, 255, 255, 0.04);
}
.cup-handle {
    position: absolute;
    right: -22px;
    top: 70px;
    width: 38px;
    height: 52px;
    border: 8px solid #ded4c3;
    border-left: none;
    border-radius: 0 40px 40px 0;
}
html[data-theme="dark"] .cup-handle { border-color: #3a2f26; }
.cup-foam {
    position: absolute;
    top: 50px;
    left: 14px;
    right: 14px;
    height: 18px;
    background: radial-gradient(ellipse at 30% 40%, #fff 0%, #f4e3cb 70%);
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}
.cup-steam {
    position: absolute;
    top: 0;
    left: 50%;
    width: 80px;
    height: 60px;
    transform: translateX(-50%);
}
.cup-steam span {
    position: absolute;
    bottom: 0;
    width: 6px;
    height: 50px;
    background: linear-gradient(to top, transparent, color-mix(in srgb, var(--ink) 20%, transparent));
    border-radius: 4px;
    animation: steam 3s ease-in-out infinite;
}
.cup-steam span:nth-child(1) { left: 20%; animation-delay: 0s; }
.cup-steam span:nth-child(2) { left: 50%; animation-delay: 0.6s; height: 60px; }
.cup-steam span:nth-child(3) { left: 75%; animation-delay: 1.2s; }
@keyframes steam {
    0% { transform: translateY(10px) scaleY(0.9); opacity: 0; }
    30% { opacity: 0.7; }
    100% { transform: translateY(-20px) scaleY(1.2); opacity: 0; }
}

.hero-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 1px dashed var(--line-strong);
}
.meta-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 600;
}
.meta-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink);
}
.meta-notes { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Story section ---------- */
.story { padding: clamp(64px, 9vw, 120px) 0; }

.story-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}

.portrait { position: relative; }
.portrait-frame {
    aspect-ratio: 5 / 6;
    max-width: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: rotate(-1.5deg);
    transition: transform 0.5s var(--ease);
}
.portrait:hover .portrait-frame { transform: rotate(0); }
.portrait-badge {
    position: absolute;
    bottom: -14px;
    left: 24px;
    background: var(--ink);
    color: var(--bg);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.story-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 14px 0 22px; max-width: 16ch; }
.story-text p {
    color: var(--ink-soft);
    font-size: 1.04rem;
    margin: 0 0 16px;
    max-width: 56ch;
}

.story-quote {
    margin: 32px 0 0;
    padding: 20px 26px;
    border-left: 3px solid var(--accent);
    background: var(--bg-elev);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--ink);
}
.story-quote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.88rem;
    font-style: normal;
    color: var(--ink-muted);
}

/* ---------- Info grid (hours + map) ---------- */
.info-grid { padding: clamp(32px, 5vw, 60px) 0; }

.info-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 28px;
}

.info-card {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.info-card:hover { box-shadow: var(--shadow-md); border-color: var(--line-strong); }

.info-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    margin-bottom: 20px;
}
.info-card-head h2 {
    font-size: 1.5rem;
    color: var(--ink);
    margin: 0;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 0.97rem;
    color: var(--ink-soft);
    transition: color 0.2s var(--ease), padding 0.2s var(--ease);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { font-weight: 500; color: var(--ink); }
.hours-list li.today {
    color: var(--ink);
    font-weight: 600;
    padding-left: 14px;
    border-left: 3px solid var(--accent);
    border-bottom-color: transparent;
    background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent);
    border-radius: 0 8px 8px 0;
    margin: 2px -14px 2px 0;
    padding-right: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.hours-note {
    margin: 0;
    color: var(--ink-muted);
    font-size: 0.85rem;
}

.visit-address {
    font-style: normal;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 18px;
}
.visit-address strong { color: var(--ink); font-weight: 600; }

.map-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--bg-sunk);
    margin-bottom: 16px;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.9);
}
html[data-theme="dark"] .map-wrap iframe {
    filter: saturate(0.8) brightness(0.75) hue-rotate(180deg) invert(0.92);
}

.visit-links { display: flex; flex-wrap: wrap; gap: 18px; font-size: 0.95rem; }
.link-inline {
    color: var(--accent);
    font-weight: 500;
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
    padding-bottom: 1px;
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.link-inline:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- Menu ---------- */
.menu {
    padding: clamp(56px, 8vw, 104px) 0 clamp(40px, 6vw, 72px);
    position: relative;
}

.menu-head {
    max-width: 620px;
    margin: 0 auto clamp(32px, 4vw, 48px);
    text-align: center;
}
.menu-head h2 {
    font-size: clamp(2rem, 4.2vw, 3rem);
    margin: 12px 0 16px;
}
.menu-lede {
    color: var(--ink-soft);
    font-size: 1.04rem;
    margin: 0;
}

.menu-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    margin: 0 auto clamp(32px, 4vw, 48px);
    max-width: 100%;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    width: fit-content;
}

.menu-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: none;
    background: transparent;
    color: var(--ink-soft);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
    white-space: nowrap;
}
.menu-filter:hover { color: var(--ink); background: color-mix(in srgb, var(--ink) 6%, transparent); }
.menu-filter.is-active {
    background: var(--ink);
    color: var(--bg);
    box-shadow: var(--shadow-sm);
}
html[data-theme="dark"] .menu-filter.is-active {
    background: var(--accent);
    color: var(--accent-ink);
}

.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1;
    border-radius: 999px;
    background: color-mix(in srgb, var(--ink) 10%, transparent);
    color: var(--ink-soft);
    transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.menu-filter.is-active .filter-count {
    background: color-mix(in srgb, var(--bg) 25%, transparent);
    color: var(--bg);
}
html[data-theme="dark"] .menu-filter.is-active .filter-count {
    background: color-mix(in srgb, var(--accent-ink) 18%, transparent);
    color: var(--accent-ink);
}

.menu-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 14px 28px;
}

.menu-item {
    padding: 22px 24px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), opacity 0.3s var(--ease);
    position: relative;
}
.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-strong);
}
.menu-item.is-hidden {
    display: none;
}
.menu-item.is-entering {
    animation: menu-fade-in 0.4s var(--ease) both;
}
@keyframes menu-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-item-head {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.menu-badge {
    display: inline-block;
    padding: 2px 9px;
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    border-radius: 999px;
    vertical-align: middle;
}

.menu-item-dots {
    flex: 1;
    height: 1px;
    align-self: center;
    background-image: radial-gradient(circle, var(--line-strong) 1px, transparent 1.2px);
    background-size: 6px 2px;
    background-repeat: repeat-x;
    background-position: 0 center;
    min-width: 20px;
    opacity: 0.8;
}

.menu-item-price {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

.menu-item-notes {
    margin: 0;
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.5;
}

.menu-empty {
    text-align: center;
    color: var(--ink-muted);
    font-size: 0.95rem;
    margin: 32px 0 0;
    padding: 28px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius-md);
}

.menu-note {
    text-align: center;
    color: var(--ink-muted);
    font-size: 0.88rem;
    margin: clamp(28px, 4vw, 40px) 0 0;
}
.menu-note-em { color: var(--ink-soft); font-weight: 500; }

/* ---------- CTA band ---------- */
.cta-band {
    margin: clamp(48px, 7vw, 96px) 0;
}
.cta-inner {
    background: linear-gradient(135deg, var(--ink) 0%, #3d2a1c 100%);
    color: var(--bg);
    border-radius: var(--radius-xl);
    padding: clamp(36px, 6vw, 64px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
html[data-theme="dark"] .cta-inner {
    background: linear-gradient(135deg, #2a1d14 0%, #1a110a 100%);
    border: 1px solid var(--line-strong);
}
.cta-inner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 55%, transparent) 0%, transparent 60%);
    pointer-events: none;
}
.cta-inner > div { position: relative; }
.cta-inner h2 {
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    color: var(--bg);
    margin-bottom: 8px;
}
.cta-inner p { margin: 0; color: color-mix(in srgb, var(--bg) 70%, transparent); }

.cta-inner .btn-primary {
    background: var(--accent);
    color: var(--accent-ink);
    position: relative;
}
.cta-inner .btn-primary:hover { background: var(--bg); color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
    padding: 32px 0;
    border-top: 1px solid var(--line);
    color: var(--ink-muted);
    font-size: 0.88rem;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .site-nav { display: none; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card { order: -1; width: min(100%, 320px); }
    .story-inner { grid-template-columns: 1fr; }
    .portrait-frame { max-width: 320px; margin: 0 auto; }
    .portrait-badge { left: 50%; transform: translateX(-50%); white-space: nowrap; }
    .info-grid-inner { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
    .menu-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
}

@media (max-width: 620px) {
    .menu-filters {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 6px;
        border-radius: var(--radius-md);
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .menu-filters::-webkit-scrollbar { display: none; }
    .menu-filter { padding: 9px 14px; font-size: 0.88rem; }
    .menu-grid { grid-template-columns: 1fr; }
    .menu-item { padding: 18px 18px; }
    .menu-item-name { font-size: 1.05rem; }
    .menu-head { text-align: left; }
}

@media (max-width: 520px) {
    .header-inner { height: 64px; }
    .brand-tag { display: none; }
    .hero-stats { grid-template-columns: 1fr; gap: 14px; }
    .hero-stats > div { flex-direction: row; justify-content: space-between; align-items: baseline; }
    .info-card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ---------- About page ---------- */
.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-nav a.is-current {
    color: var(--ink);
    background: var(--line);
}

.section-head {
    max-width: 720px;
    margin: 0 auto clamp(36px, 5vw, 56px);
    text-align: center;
}
.section-head h2 { margin: 12px 0 14px; }
.section-head .section-lede {
    color: var(--ink-soft);
    font-size: 1.05rem;
    margin: 0;
}

/* About hero */
.about-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 8vw, 112px) 0 clamp(56px, 8vw, 104px);
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.about-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
}
.about-hero-text { max-width: 580px; }
.about-hero-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 18px 0 22px;
}
.about-hero-lede {
    font-size: clamp(1.05rem, 1.6vw, 1.18rem);
    color: var(--ink-soft);
    margin: 0 0 36px;
    line-height: 1.65;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 24px;
    margin: 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
}
.about-stats > div { display: flex; flex-direction: column; gap: 4px; }
.about-stats dt {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-muted);
    font-weight: 500;
}
.about-stats dd {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.65rem;
    color: var(--ink);
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}
.about-stats dd span { color: var(--accent); font-size: 1.2rem; }

.about-hero-gallery {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
    position: relative;
}
.gallery-tile {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: var(--bg-sunk);
    border: 1px solid var(--line);
}
.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile-lg {
    grid-row: span 2;
    aspect-ratio: 3 / 4;
}
.gallery-tile-sm { aspect-ratio: 1 / 1; }
.gallery-tile-offset { transform: translateY(12px); }
html[data-theme="dark"] .gallery-tile img { opacity: 0.92; }

/* Timeline */
.timeline {
    padding: clamp(56px, 8vw, 104px) 0;
    background: var(--bg-sunk);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.timeline-list::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 96px;
    width: 2px;
    background: linear-gradient(to bottom, var(--line) 0%, var(--line-strong) 20%, var(--line-strong) 80%, var(--line) 100%);
}
.timeline-entry {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 28px;
    margin-bottom: 28px;
    position: relative;
    align-items: start;
}
.timeline-entry:last-child { margin-bottom: 0; }
.timeline-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--bg-elev);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--ink);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.timeline-entry.is-current .timeline-marker {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
html[data-theme="dark"] .timeline-entry.is-current .timeline-marker {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: var(--accent);
}
.timeline-card {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 22px 26px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
    position: relative;
}
.timeline-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-strong);
}
.timeline-card::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 38px;
    width: 18px;
    height: 18px;
    background: var(--bg-elev);
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transform: rotate(45deg);
}
.timeline-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
}
.timeline-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.65;
    font-size: 0.97rem;
}

/* Team */
.team { padding: clamp(72px, 10vw, 128px) 0; }
.team-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.team-card {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
    display: flex;
    flex-direction: column;
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--line-strong);
}
.team-photo {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--bg-sunk);
    position: relative;
}
.team-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, color-mix(in srgb, var(--ink) 25%, transparent) 100%);
    pointer-events: none;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.team-card:hover .team-photo img { transform: scale(1.05); }
html[data-theme="dark"] .team-photo img { opacity: 0.92; }
.team-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.team-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0;
}
.team-role {
    margin: 0;
    font-size: 0.82rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
}
.team-bio {
    margin: 8px 0 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}
.team-pour {
    margin: auto 0 0;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
    color: var(--ink-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}
.team-pour span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-soft);
    font-weight: 600;
    margin-bottom: 2px;
}

/* Achievements */
.achievements {
    padding: clamp(72px, 10vw, 128px) 0;
    background: var(--bg-sunk);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.award-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.award-card {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}
.award-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.award-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.35s var(--ease);
}
.award-card:hover::before { opacity: 1; }
.award-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
}
.award-year {
    margin: 0 0 4px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-muted);
    font-weight: 600;
    position: relative;
}
.award-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    position: relative;
}
.award-body {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.93rem;
    line-height: 1.55;
    position: relative;
}

/* Contact */
.contact { padding: clamp(72px, 10vw, 128px) 0; }
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: start;
}
.contact-intro h2 { margin: 14px 0 20px; line-height: 1.05; }
.contact-intro p { color: var(--ink-soft); margin: 0 0 28px; font-size: 1.02rem; line-height: 1.65; }

.contact-methods {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-methods li {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    font-size: 0.98rem;
}
.contact-methods li:last-child { border-bottom: 1px solid var(--line); }
.contact-label {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-muted);
    font-weight: 600;
}
.contact-methods a {
    color: var(--ink);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.contact-methods a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.contact-form {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 40px);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
}
.field input,
.field select,
.field textarea {
    font-family: inherit;
    font-size: 0.98rem;
    color: var(--ink);
    background: var(--bg);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    padding: 13px 14px;
    width: 100%;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-muted); }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
    background: var(--bg-elev);
}
.field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238d7c6d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 42px;
}
html[data-theme="dark"] .field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238f806c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: #c34e4e;
    box-shadow: 0 0 0 4px color-mix(in srgb, #c34e4e 18%, transparent);
}
.field-error {
    font-size: 0.82rem;
    color: #c34e4e;
    min-height: 0;
    display: none;
}
.field.has-error .field-error { display: block; }

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.form-note {
    margin: 0;
    font-size: 0.85rem;
    color: var(--ink-muted);
}

.form-status {
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 0.95rem;
    background: color-mix(in srgb, var(--success) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--success) 40%, transparent);
    color: var(--ink);
}
.form-status.is-error {
    background: color-mix(in srgb, #c34e4e 14%, transparent);
    border-color: color-mix(in srgb, #c34e4e 40%, transparent);
}

/* Full footer */
.site-footer-full {
    padding: clamp(48px, 6vw, 72px) 0 28px;
    background: var(--bg-sunk);
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.92rem;
}
.site-footer-full .brand { color: var(--ink); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 36px;
    align-items: start;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 22px;
}
.footer-brand { max-width: 320px; }
.footer-blurb {
    margin: 16px 0 0;
    font-size: 0.92rem;
    color: var(--ink-muted);
    line-height: 1.6;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink);
    margin: 0 0 6px;
}
.footer-col a {
    color: var(--ink-soft);
    transition: color 0.2s var(--ease);
    font-size: 0.93rem;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--ink-muted);
    font-size: 0.85rem;
}
.footer-meta { display: flex; gap: 20px; }
.footer-meta a { color: var(--ink-muted); transition: color 0.2s var(--ease); }
.footer-meta a:hover { color: var(--ink); }

/* About responsive */
@media (max-width: 900px) {
    .about-hero-inner { grid-template-columns: 1fr; }
    .about-hero-gallery { max-width: 520px; margin: 0 auto; width: 100%; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .contact-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-brand { grid-column: 1 / -1; max-width: none; }

    .timeline-list::before { left: 28px; }
    .timeline-entry { grid-template-columns: 56px 1fr; gap: 18px; }
    .timeline-marker {
        width: 56px; height: 56px;
        font-size: 0.82rem;
    }
    .timeline-card::before { top: 22px; }
}

@media (max-width: 620px) {
    .form-row { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 14px 18px; }
    .about-stats dd { font-size: 1.4rem; }
    .about-hero-title { font-size: clamp(2rem, 8vw, 2.6rem); }
    .team-grid { grid-template-columns: 1fr; }
    .award-grid { grid-template-columns: 1fr; }
    .gallery-tile-offset { transform: none; }
    .timeline-card { padding: 18px 20px; }
    .timeline-card::before { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .contact-methods li { grid-template-columns: 60px 1fr; font-size: 0.93rem; }
}

/* ---------- Contact page ---------- */
.contact-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 10vw, 120px) 0 clamp(40px, 6vw, 64px);
    text-align: center;
}
.contact-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.contact-hero-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 18px 0 22px;
}
.contact-hero-lede {
    font-size: clamp(1.05rem, 1.6vw, 1.18rem);
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.65;
}

.contact-methods-band {
    padding: clamp(16px, 3vw, 32px) 0 clamp(32px, 5vw, 56px);
}
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.method-card {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.method-card:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
    box-shadow: var(--shadow-md);
}
.method-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    display: grid;
    place-items: center;
    margin-bottom: 10px;
}
.method-label {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-muted);
}
.method-value {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
    border-bottom: 1px solid transparent;
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
    align-self: flex-start;
}
a.method-value:hover { color: var(--accent); border-bottom-color: var(--accent); }
.method-meta {
    margin: 2px 0 0;
    color: var(--ink-muted);
    font-size: 0.9rem;
}

.contact-form-section {
    padding: clamp(48px, 8vw, 96px) 0 clamp(72px, 10vw, 128px);
}
.contact-form-section-inner {
    max-width: 820px;
    margin: 0 auto;
}
.contact-form-head { text-align: center; margin-bottom: 36px; }
.contact-form-head .section-lede { margin-left: auto; margin-right: auto; }

.contact-form-wrap { position: relative; }
.contact-form-wide { gap: 20px; }

.form-success {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(36px, 6vw, 56px) clamp(24px, 4vw, 40px);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.form-success::before {
    content: "";
    position: absolute;
    inset: -40% -20% auto auto;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, color-mix(in srgb, var(--success) 35%, transparent) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.form-success > * { position: relative; z-index: 1; }
.form-success-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--success) 18%, transparent);
    color: var(--success);
    border: 1px solid color-mix(in srgb, var(--success) 45%, transparent);
}
.form-success-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 4px 0 0;
}
.form-success-body {
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 52ch;
    margin: 0 0 10px;
    font-size: 1.02rem;
}

@media (max-width: 780px) {
    .contact-methods-grid { grid-template-columns: 1fr; }
}

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

.cart-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: var(--bg-elev);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.cart-toggle:hover { transform: translateY(-1px); border-color: var(--accent); }
.cart-toggle.is-bumped { animation: cart-bump 0.45s var(--ease); }
@keyframes cart-bump {
    0%, 100% { transform: scale(1); }
    30% { transform: scale(1.12); }
    60% { transform: scale(0.96); }
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 0.7rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg);
    transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.cart-count[data-count="0"] {
    opacity: 0;
    transform: scale(0.6);
    pointer-events: none;
}

/* ---------- Menu item add button ---------- */
.menu-item { padding-bottom: 60px; }
.menu-add {
    position: absolute;
    right: 16px;
    bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.menu-add span { font-size: 1rem; line-height: 1; margin-top: -1px; }
.menu-add:hover {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
html[data-theme="dark"] .menu-add:hover {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: var(--accent);
}
.menu-add.is-added {
    background: var(--success);
    color: #fff;
    border-color: var(--success);
}

/* ---------- Cart drawer ---------- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 14, 10, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 80;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.cart-overlay.is-open { opacity: 1; }
html[data-theme="dark"] .cart-overlay { background: rgba(0, 0, 0, 0.6); }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(440px, 100%);
    max-width: 100vw;
    background: var(--bg-elev);
    color: var(--ink);
    box-shadow: var(--shadow-lg);
    z-index: 90;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    border-left: 1px solid var(--line);
    overflow: hidden;
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-head {
    padding: 22px 24px 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
}
.cart-head h2 {
    font-size: 1.55rem;
    margin-top: 4px;
}
.cart-close {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), transform 0.2s var(--ease);
    flex-shrink: 0;
}
.cart-close:hover { border-color: var(--accent); color: var(--accent); transform: rotate(90deg); }

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 24px 8px;
    -webkit-overflow-scrolling: touch;
}

.cart-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-line {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 16px;
    padding: 16px 0;
    border-bottom: 1px dashed var(--line);
    align-items: start;
}
.cart-line:last-child { border-bottom: none; }
.cart-line-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
    margin: 0;
}
.cart-line-price {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
    text-align: right;
    white-space: nowrap;
}
.cart-line-controls {
    grid-column: 1 / 2;
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    overflow: hidden;
    background: var(--bg);
    width: max-content;
}
.cart-qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.cart-qty-btn:hover { background: var(--accent); color: var(--accent-ink); }
.cart-qty-btn:disabled { opacity: 0.4; cursor: not-allowed; background: transparent; color: var(--ink-muted); }
.cart-qty-value {
    min-width: 28px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0 4px;
}
.cart-line-remove {
    grid-column: 2 / 3;
    justify-self: end;
    background: none;
    border: none;
    color: var(--ink-muted);
    font-size: 0.82rem;
    cursor: pointer;
    padding: 4px 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--line-strong);
    transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}
.cart-line-remove:hover { color: #c34e4e; text-decoration-color: currentColor; }

.cart-empty {
    padding: 56px 16px 24px;
    text-align: center;
    color: var(--ink-muted);
}
.cart-empty svg { margin: 0 auto 14px; color: var(--ink-muted); opacity: 0.55; }
.cart-empty p { margin: 4px 0; }
.cart-empty strong { color: var(--ink); font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.cart-empty-sub { font-size: 0.92rem; }

.cart-foot {
    padding: 18px 24px 22px;
    border-top: 1px solid var(--line);
    background: var(--bg-sunk);
    flex-shrink: 0;
}
.cart-totals {
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cart-totals > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.92rem;
    color: var(--ink-soft);
}
.cart-totals dt, .cart-totals dd { margin: 0; }
.cart-totals dd { font-variant-numeric: tabular-nums; font-weight: 500; color: var(--ink); }
.cart-tax-label { color: var(--ink-muted); font-size: 0.84rem; }
.cart-total-row {
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.1rem !important;
    font-weight: 600;
    color: var(--ink) !important;
}
.cart-total-row dd { font-size: 1.2rem; color: var(--accent) !important; }

.cart-checkout {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1rem;
}
.cart-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
.cart-foot-note {
    text-align: center;
    color: var(--ink-muted);
    font-size: 0.8rem;
    margin: 10px 0 0;
}

/* Order confirmation overlay inside the drawer */
.cart-success {
    position: absolute;
    inset: 0;
    background: var(--bg-elev);
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    animation: cart-success-in 0.45s var(--ease) both;
    z-index: 2;
}
@keyframes cart-success-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.cart-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--success) 18%, transparent);
    color: var(--success);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: cart-success-pop 0.5s var(--ease) 0.1s both;
}
@keyframes cart-success-pop {
    0% { transform: scale(0.4); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}
.cart-success h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin: 6px 0 0;
    color: var(--ink);
}
.cart-success-lede { color: var(--ink-soft); margin: 0; max-width: 30ch; }
.cart-success-meta {
    color: var(--ink-muted);
    font-size: 0.92rem;
    margin: 0 0 18px;
}
.cart-success-meta strong { color: var(--ink); font-weight: 600; }

/* ---------- Cart toast ---------- */
.cart-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(14px);
    background: var(--ink);
    color: var(--bg);
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    z-index: 100;
    pointer-events: none;
}
.cart-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
html[data-theme="dark"] .cart-toast {
    background: var(--accent);
    color: var(--accent-ink);
}

/* ---------- Cart responsive ---------- */
@media (max-width: 520px) {
    .cart-drawer { width: 100%; border-left: none; }
    .cart-head { padding: 18px 18px 12px; }
    .cart-head h2 { font-size: 1.35rem; }
    .cart-body { padding: 8px 18px; }
    .cart-foot { padding: 16px 18px 20px; }
}
