/* ═══════════════════════════════════════════════════════════
   STOŁOWNIA — bistro & kuchnia sezonowa
   Jasna, ciepła paleta: papier / atrament / glina (terakota)
   Fonty: Instrument Serif (display) + Instrument Sans (body)
   ═══════════════════════════════════════════════════════════ */

:root {
    --paper:    #FAF6F0;
    --paper-2:  #F2EBE1;
    --card:     #FFFFFF;
    --ink:      #26221C;
    --ink-2:    #59524A;
    --muted:    #93897C;
    --line:     #E7DDCF;
    --clay:     #B5714E;
    --clay-2:   #9C5F41;
    --clay-soft:#F3E4D9;
    --sage:     #7E9077;
    --sage-soft:#E6EBE0;
    --red:      #C25B4E;
    --red-soft: #F6E3DF;
    --accent-gold: #B5714E; /* alias — używany przez tooltip planu sali */

    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'Instrument Sans', -apple-system, sans-serif;

    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 10px 40px -18px rgba(60, 42, 24, 0.25);
    --shadow-sm: 0 4px 18px -8px rgba(60, 42, 24, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; } /* atrybut hidden wygrywa z display:flex */
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { color: inherit; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    font: inherit;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.22s ease;
}
.btn-primary { background: var(--clay); color: #fff; }
.btn-primary:hover { background: var(--clay-2); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--clay); color: var(--clay); }
.btn-lg { padding: 15px 34px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(250, 246, 240, 0.86);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-row { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--clay);
    box-shadow: 0 0 0 4px var(--clay-soft);
}
.brand-name {
    font-family: var(--font-display);
    font-size: 1.55rem;
    letter-spacing: 0.01em;
}
.menu { display: flex; gap: 26px; margin-left: auto; }
.menu a {
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--ink-2);
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}
.menu a:hover { color: var(--ink); border-bottom-color: var(--clay); }
.hamburger { display: none; }
.mobile-nav { display: none; }

@media (max-width: 860px) {
    .menu, .nav-row > .btn { display: none; }
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-left: auto;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }
    .hamburger span { width: 24px; height: 2px; background: var(--ink); transition: all 0.25s ease; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
        position: fixed;
        inset: 72px 0 0 0;
        background: var(--paper);
        padding: 28px 24px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 55;
    }
    .mobile-nav.open { transform: translateX(0); }
    .mobile-nav a {
        text-decoration: none;
        font-family: var(--font-display);
        font-size: 1.7rem;
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
    }
    .mobile-nav .mobile-cta { color: var(--clay); border-bottom: none; margin-top: 12px; }
}

/* ── HERO (split) ────────────────────────────────────────── */
.hero { padding: 60px 0 40px; overflow: hidden; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    background: var(--sage-soft);
    color: #4C6046;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 26px;
}
.hero-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--sage);
    animation: pulse 2s infinite;
}
@keyframes pulse { 50% { opacity: 0.4; } }
.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.6rem, 5.4vw, 4.1rem);
    line-height: 1.06;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
}
.hero-title em { font-style: italic; color: var(--clay); }
.hero-sub {
    font-size: 1.08rem;
    color: var(--ink-2);
    max-width: 46ch;
    margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-proof { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--ink-2); }
.hero-proof-stars { color: var(--clay); letter-spacing: 2px; }

.hero-visual { position: relative; min-height: 460px; }
.hero-photo {
    position: absolute;
    inset: 0 40px 40px 0;
    border-radius: var(--radius);
    background:
        radial-gradient(120% 90% at 20% 10%, #F0DDC8 0%, transparent 55%),
        radial-gradient(120% 100% at 90% 90%, #C9A183 0%, transparent 60%),
        linear-gradient(150deg, #E9D7C2, #B98F6E 90%);
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-end;
    padding: 22px;
}
.hero-photo-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}
.hero-card {
    position: absolute;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    padding: 16px 18px;
}
.hero-card-hours { right: 0; top: 34px; width: 230px; display: flex; flex-direction: column; gap: 7px; }
.hero-card-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
.hero-card-row { display: flex; justify-content: space-between; font-size: 0.86rem; color: var(--ink-2); }
.hero-card-row strong { color: var(--ink); font-weight: 600; }
.hero-card-dish {
    left: -14px; bottom: 10px;
    display: flex; align-items: center; gap: 12px;
    max-width: 270px;
}
.hero-card-emoji { font-size: 1.6rem; }
.hero-card-sub { display: block; font-size: 0.88rem; font-weight: 600; }

@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { min-height: 380px; }
}

/* ── USP BAR ─────────────────────────────────────────────── */
.usp { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--card); }
.usp-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    padding: 34px 24px;
}
.usp-item { display: flex; gap: 16px; align-items: flex-start; }
.usp-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--clay);
    line-height: 1.2;
}
.usp-item strong { display: block; font-size: 0.98rem; margin-bottom: 3px; }
.usp-item span { font-size: 0.87rem; color: var(--ink-2); }
@media (max-width: 860px) { .usp-row { grid-template-columns: 1fr; gap: 20px; } }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 90px 0; }
.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    line-height: 1.12;
}
.section-title-center { text-align: center; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}
.section-lead { color: var(--ink-2); margin-top: 14px; }

/* ── KARTA (menu) ────────────────────────────────────────── */
.karta-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}
.karta-side { position: sticky; top: 96px; }
.karta-nav { display: flex; flex-direction: column; gap: 2px; margin: 26px 0; }
.karta-nav a {
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    border-left: 2px solid var(--line);
    color: var(--ink-2);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.18s ease;
}
.karta-nav a:hover, .karta-nav a.active {
    border-left-color: var(--clay);
    color: var(--ink);
    background: var(--clay-soft);
}
.karta-note { font-size: 0.85rem; color: var(--muted); max-width: 30ch; }

.karta-cat { margin-bottom: 46px; scroll-margin-top: 100px; }
.karta-cat-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.5rem;
    padding-bottom: 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line);
}
.dish { padding: 16px 0; }
.dish + .dish { border-top: 1px dashed var(--line); }
.dish-head { display: flex; align-items: baseline; gap: 10px; }
.dish-name { font-size: 1.02rem; font-weight: 600; }
.dish-dots { flex: 1; border-bottom: 1.5px dotted var(--line); transform: translateY(-4px); }
.dish-price { font-weight: 600; color: var(--clay-2); white-space: nowrap; }
.dish-desc { font-size: 0.88rem; color: var(--ink-2); margin-top: 5px; max-width: 60ch; }
.dish-badge {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 2.5px 9px;
    border-radius: 999px;
    background: var(--sage-soft);
    color: #4C6046;
    vertical-align: 2px;
}
.dish-badge-star { background: var(--clay-soft); color: var(--clay-2); }

@media (max-width: 900px) {
    .karta-grid { grid-template-columns: 1fr; gap: 30px; }
    .karta-side { position: static; }
    .karta-nav { flex-direction: row; flex-wrap: wrap; }
    .karta-nav a { border-left: none; border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; }
}

/* ── WNĘTRZE (taśma scroll-snap) ─────────────────────────── */
.section-strip { padding-bottom: 60px; background: var(--paper-2); }
.strip-hint { font-size: 0.85rem; color: var(--muted); }
.strip {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px max(24px, calc((100vw - 1160px) / 2 + 24px)) 22px;
    scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }
.strip-item {
    flex: 0 0 320px;
    height: 380px;
    border-radius: var(--radius);
    scroll-snap-align: start;
    background:
        radial-gradient(100% 80% at 30% 15%, rgba(255,255,255,0.55), transparent 60%),
        linear-gradient(160deg, var(--tint), color-mix(in srgb, var(--tint) 60%, #8A6A4E));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}
.strip-item span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(50, 36, 22, 0.75);
    background: rgba(255,255,255,0.65);
    padding: 6px 12px;
    border-radius: 999px;
}

/* ── OPINIE ──────────────────────────────────────────────── */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
}
.review blockquote {
    font-family: var(--font-display);
    font-size: 1.18rem;
    line-height: 1.45;
    margin-bottom: 20px;
}
.review figcaption { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.85rem; }
.review figcaption span { color: var(--clay); }
@media (max-width: 860px) { .reviews { grid-template-columns: 1fr; } }

/* ── REZERWACJA ──────────────────────────────────────────── */
.section-reserve { background: var(--paper-2); }
.reserve-shell { max-width: 880px; margin: 0 auto; }
.rstep {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    padding: 28px;
    margin-bottom: 20px;
}
.rstep-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.rstep-num {
    flex-shrink: 0;
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--clay);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}
.rstep-title { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; }
.rstep-sub { font-size: 0.86rem; color: var(--ink-2); }

.reserve-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.reserve-row-3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 720px) { .reserve-row, .reserve-row-3 { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 0.83rem; font-weight: 600; color: var(--ink-2); }
.field-opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
    font: inherit;
    font-size: 0.95rem;
    padding: 12px 14px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper);
    color: var(--ink);
    transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--clay);
}
.field textarea { resize: vertical; }

.people-picker {
    display: flex;
    align-items: stretch;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--paper);
}
.people-picker button {
    width: 46px;
    border: none;
    background: transparent;
    font-size: 1.25rem;
    color: var(--clay);
    cursor: pointer;
}
.people-picker button:hover { background: var(--clay-soft); }
.people-picker input {
    flex: 1;
    text-align: center;
    border: none;
    background: transparent;
    font: inherit;
    font-weight: 600;
    padding: 12px 0;
}
.people-picker input:focus { outline: none; }

/* legenda + plan sali */
.floor-legend { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 16px; }
.floor-leg { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--ink-2); }
.floor-leg-mark { width: 13px; height: 13px; border-radius: 50%; border: 1.5px solid transparent; }
.floor-leg-free  { background: var(--sage-soft); border-color: var(--sage); }
.floor-leg-busy  { background: var(--red-soft); border-color: var(--red); }
.floor-leg-small { background: #EEE9E1; border-color: #C9C0B2; }
.floor-leg-sel   { background: var(--clay); border-color: var(--clay); }

.floor-tabs { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.floor-tab {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    background: transparent;
    color: var(--ink-2);
    font: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}
.floor-tab:hover { border-color: var(--clay); color: var(--clay); }
.floor-tab.active { background: var(--clay); border-color: var(--clay); color: #fff; font-weight: 600; }

.floor-stage {
    position: relative;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    background:
        repeating-linear-gradient(0deg, transparent 0 34px, rgba(60,42,24,0.035) 34px 35px),
        repeating-linear-gradient(90deg, transparent 0 34px, rgba(60,42,24,0.035) 34px 35px),
        var(--paper);
    overflow: hidden;
}
.floor-svg { width: 100%; height: auto; display: block; }

.floor-wall { fill: rgba(255,255,255,0.6); stroke: #C9BBA6; stroke-width: 1.5; }
.floor-wall-terrace { fill: var(--sage-soft); stroke: var(--sage); stroke-width: 1.5; stroke-dasharray: 5 5; opacity: 0.75; }
.floor-window { stroke: var(--clay); stroke-width: 4; stroke-linecap: round; opacity: 0.5; }
.floor-feature { fill: #EAE0D2; stroke: #C9BBA6; stroke-width: 1; }
.floor-feature-label {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    fill: #8A7B66;
}
.floor-zone-label {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    fill: #A08F79;
}

.table-group { cursor: pointer; }
.table-chair { fill: #D8CCBA; }
.table-shape { transition: fill 0.2s ease, stroke 0.2s ease; stroke-width: 2; }
.table-label {
    font-family: var(--font-display);
    font-size: 15px;
    text-anchor: middle;
    fill: var(--ink);
    pointer-events: none;
}
.table-cap { font-size: 9.5px; text-anchor: middle; fill: var(--muted); pointer-events: none; }

.table-group[data-status="free"] .table-shape     { fill: var(--sage-soft); stroke: var(--sage); }
.table-group[data-status="free"]:hover .table-shape { fill: #D9E4D0; }
.table-group[data-status="busy"]     { cursor: not-allowed; }
.table-group[data-status="busy"] .table-shape     { fill: var(--red-soft); stroke: var(--red); opacity: 0.85; }
.table-group[data-status="busy"] .table-label     { fill: var(--red); }
.table-group[data-status="small"]    { cursor: not-allowed; }
.table-group[data-status="small"] .table-shape    { fill: #EEE9E1; stroke: #C9C0B2; }
.table-group[data-status="small"] .table-label    { fill: #A79B89; }
.table-group[data-status="selected"] .table-shape { fill: var(--clay); stroke: var(--clay-2); }
.table-group[data-status="selected"] .table-label { fill: #fff; }
.table-group[data-status="selected"] .table-cap   { fill: rgba(255,255,255,0.8); }

.floor-tip {
    position: absolute;
    transform: translate(-50%, calc(-100% - 10px));
    background: var(--ink);
    color: var(--paper);
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 0.82rem;
    pointer-events: none;
    z-index: 5;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}
.floor-tip-meta { color: #B8AC9C; margin-top: 2px; }

.floor-summary { margin-top: 16px; }
.floor-summary-empty {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border: 1.5px dashed var(--line);
    border-radius: var(--radius-sm);
    color: var(--muted);
    font-size: 0.88rem;
}
.floor-summary-picked {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 15px 18px;
    background: var(--clay-soft);
    border: 1.5px solid var(--clay);
    border-radius: var(--radius-sm);
}
.floor-pick-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clay-2);
}
.floor-pick-name { font-family: var(--font-display); font-size: 1.2rem; }
.floor-pick-meta { font-size: 0.86rem; color: var(--ink-2); }
.floor-pick-clear {
    margin-left: auto;
    border: none;
    background: transparent;
    color: var(--clay-2);
    font: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.reserve-status { display: block; text-align: center; margin-top: 16px; font-size: 0.95rem; min-height: 1.4em; }
.reserve-status.success { color: #4C6046; }
.reserve-status.error { color: var(--red); }
.reserve-fineprint { text-align: center; font-size: 0.83rem; color: var(--muted); margin-top: 18px; }
.reserve-fineprint a { color: var(--clay-2); }

/* ── VERIFY MODAL ────────────────────────────────────────── */
.verify-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.verify-modal[hidden] { display: none; }
.verify-backdrop { position: absolute; inset: 0; background: rgba(38, 30, 20, 0.45); backdrop-filter: blur(4px); }
.verify-card {
    position: relative;
    width: 100%;
    max-width: 430px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 34px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(14px) scale(0.98);
    transition: all 0.3s ease;
}
.verify-modal.open .verify-card { opacity: 1; transform: none; }
.verify-close {
    position: absolute;
    top: 14px; right: 14px;
    border: none; background: none;
    color: var(--muted);
    cursor: pointer;
    padding: 8px;
}
.verify-close:hover { color: var(--ink); }
.verify-icon { color: var(--clay); display: inline-block; margin-bottom: 14px; }
.verify-icon svg { margin: 0 auto; }
.verify-title { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; margin-bottom: 10px; }
.verify-text { font-size: 0.9rem; color: var(--ink-2); margin-bottom: 24px; }
.verify-code { display: flex; gap: 8px; justify-content: center; align-items: center; margin-bottom: 18px; }
.verify-code input {
    width: 46px; height: 56px;
    text-align: center;
    font: inherit;
    font-size: 1.5rem;
    font-weight: 600;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper);
    transition: border-color 0.15s ease;
}
.verify-code input:focus { outline: none; border-color: var(--clay); }
.verify-code input.filled { border-color: var(--clay); background: var(--clay-soft); }
.verify-code.error input { border-color: var(--red); animation: shake 0.4s; }
@keyframes shake { 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.verify-dash { color: var(--muted); }
.verify-error { color: var(--red); font-size: 0.87rem; margin-bottom: 14px; }
.verify-foot { display: flex; gap: 6px; justify-content: center; font-size: 0.85rem; color: var(--muted); margin-top: 16px; }
.verify-resend {
    border: none; background: none;
    color: var(--clay-2);
    font: inherit; font-size: 0.85rem; font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}
.verify-resend:disabled { color: var(--muted); cursor: default; text-decoration: none; }
.verify-demo {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    text-align: left;
    margin-top: 20px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: var(--paper-2);
    color: var(--ink-2);
    font-size: 0.8rem;
}
.verify-demo code {
    background: var(--card);
    border: 1px solid var(--line);
    padding: 1px 7px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--ink); color: #CFC6B8; padding: 64px 0 28px; }
.footer .brand-name { color: var(--paper); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #988D7C;
    margin-bottom: 14px;
}
.footer-col p { font-size: 0.92rem; }
.footer-col a { color: #E8DFD2; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-brandcol p { margin-top: 14px; font-size: 0.9rem; color: #A89D8C; }
.footer-link { display: inline-block; margin-top: 10px; font-size: 0.85rem; color: #D19A76 !important; }
.hours-row { display: flex; justify-content: space-between; gap: 18px; }
.social { display: flex; gap: 10px; margin-top: 14px; }
.social a {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
}
.social a:hover { border-color: #D19A76; color: #D19A76; }
.footer-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 24px;
    font-size: 0.8rem;
    color: #8A8071;
}
.footer-by a { color: #B8AC9C; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── REVEAL ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

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