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

:root {
    --bg: #f4f1ea;
    --bg-warm: #efece4;
    --surface: #faf8f4;
    --bottom-bg: #edeae2;
    --line: #ddd9cf;
    --line-light: #e8e5dc;
    --text: #2c2c28;
    --text-md: #5a5850;
    --text-lt: #8a8780;
    --green: #2d7a4b;
    --green-dark: #1f5c37;
    --green-soft: rgba(45,122,75,0.07);
    --gold: #b8982e;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', -apple-system, sans-serif;
}

html, body {
    width: 100%; height: 100%;
    overflow: hidden;
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

/* ===== Surface ===== */

.surface {
    display: flex;
    flex-direction: column;
    width: 100%; height: 100vh;
    padding: 1.5vh 0 0.8vh;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(45,122,75,0.025) 0%, transparent 100%),
        linear-gradient(180deg, rgba(250,248,244,0.92) 0%, rgba(244,241,234,0.94) 100%),
        url('assets/banner.jpg');
    background-size: auto, auto, cover;
    background-position: center, center, center top;
}

/* ===== Masthead ===== */

.masthead {
    display: flex;
    align-items: center;
    gap: 1.6vw;
    margin-bottom: 1.2vh;
    flex-shrink: 0;
    padding: 0 2vw;
}

.mast-rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--line) 0%, transparent 70%);
}

.mast-rule:last-child {
    background: linear-gradient(270deg, var(--line) 0%, transparent 70%);
}

.mast-center { text-align: center; flex-shrink: 0; }

.logo-img {
    height: 3.5vw;
    width: auto;
    display: block;
    margin: 0 auto;
}

.logo-sub {
    font-family: var(--sans);
    font-size: 0.45vw;
    font-weight: 600;
    letter-spacing: 0.35vw;
    color: var(--text-lt);
    text-transform: uppercase;
    margin-top: 0.2vh;
    text-indent: 0.3vw;
}

/* ===== Menu Body ===== */

.menu-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

/* ===== TOP ZONE ===== */

.zone-main {
    display: flex;
    flex: 1;
    min-height: 0;
}

.zcol {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0 1.1vw;
    position: relative;
}

.zcol::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, var(--line) 10%, var(--line) 90%, transparent 100%);
}

.zcol:first-child::before { display: none; }
.zcol:first-child { padding-left: 2vw; }
.zcol:last-child { padding-right: 2vw; }

.zcol-head {
    margin-bottom: 0.7vh;
    padding-bottom: 0.5vh;
    border-bottom: 2px solid var(--green);
}

.zcol-title {
    font-family: var(--serif);
    font-size: 1.35vw;
    font-weight: 600;
    font-style: italic;
    color: var(--green);
    letter-spacing: 0.03vw;
}

.zcol-items { display: flex; flex-direction: column; }

.zrow {
    display: flex;
    align-items: baseline;
    padding: 0.45vh 0;
}

.zrow-name {
    font-size: 0.82vw;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    flex-shrink: 0;
}

.zrow-dots {
    flex: 1;
    margin: 0 0.5vw;
    min-width: 0.5vw;
    position: relative;
    top: -0.15vw;
    border-bottom: 1px dotted var(--line);
}

.zrow-price {
    font-size: 0.82vw;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

.zrow-desc {
    font-size: 0.55vw;
    font-weight: 400;
    font-style: italic;
    color: var(--text-lt);
    letter-spacing: 0.01vw;
    padding-bottom: 0.2vh;
    margin-bottom: 0.1vh;
}

.zrow-feat .zrow-name { color: var(--green); }
.zrow-feat .zrow-price { color: var(--green); }

.zrow-deal {
    display: inline-block;
    font-size: 0.38vw;
    font-weight: 700;
    color: var(--surface);
    background: var(--gold);
    padding: 0.05vw 0.2vw;
    border-radius: 0.12vw;
    margin-left: 0.25vw;
    text-transform: uppercase;
    letter-spacing: 0.02vw;
    vertical-align: middle;
    line-height: 1.4;
}

/* ===== PROMO TICKER ===== */

.ticker-bar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    background: var(--green-dark);
    overflow: hidden;
    height: 3.5vh;
}

.ticker-label {
    flex-shrink: 0;
    font-family: var(--serif);
    font-size: 0.85vw;
    font-weight: 600;
    font-style: italic;
    color: var(--surface);
    letter-spacing: 0.05vw;
    padding: 0 1.2vw;
    background: var(--green);
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-track {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-scroll {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: tickerMove 30s linear infinite;
}

.ticker-item {
    font-size: 0.72vw;
    font-weight: 600;
    color: var(--surface);
    padding: 0 1vw;
}

.ticker-sep {
    font-size: 0.35vw;
    color: rgba(250,248,244,0.3);
}

@keyframes tickerMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== BOTTOM ZONE ===== */

.zone-bottom {
    flex-shrink: 0;
    display: flex;
    gap: 0;
    padding: 0.8vh 2vw 0;
    background: linear-gradient(180deg, var(--bottom-bg) 0%, var(--bg) 100%);
}

.bsec {
    flex: 1;
    padding: 0 1vw;
    position: relative;
    min-width: 0;
}

.bsec::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, var(--line) 15%, var(--line) 85%, transparent 100%);
}

.bsec:first-child::before { display: none; }
.bsec:first-child { padding-left: 0.2vw; }
.bsec:last-child { padding-right: 0.2vw; }

.bsec-head {
    margin-bottom: 0.4vh;
    padding-bottom: 0.4vh;
    border-bottom: 1.5px solid var(--green);
}

.bsec-head-gap { margin-top: 0.8vh; }

.bsec-title {
    font-family: var(--serif);
    font-size: 0.9vw;
    font-weight: 600;
    font-style: italic;
    color: var(--green);
    letter-spacing: 0.02vw;
}

.bsec-items { display: flex; flex-direction: column; }

.brow {
    display: flex;
    align-items: baseline;
    padding: 0.25vh 0;
}

.brow-name {
    font-size: 0.62vw;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    flex-shrink: 0;
}

.brow-qty {
    font-size: 0.48vw;
    font-weight: 400;
    color: var(--text-lt);
    margin-left: 0.1vw;
}

.brow-dots {
    flex: 1;
    margin: 0 0.4vw;
    min-width: 0.3vw;
    position: relative;
    top: -0.1vw;
    border-bottom: 1px dotted var(--line);
}

.brow-price {
    font-size: 0.62vw;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

/* ===== Footer ===== */

.menu-foot {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1vw;
    padding: 0.6vh 2vw 0;
    margin-top: 0.5vh;
}

.foot-rule {
    flex: 1;
    height: 1px;
    background: var(--line);
}

.foot-note {
    font-family: var(--sans);
    font-size: 0.38vw;
    font-weight: 500;
    color: var(--text-lt);
    letter-spacing: 0.12vw;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.kcv-logo {
    height: 1.5vw;
    width: auto;
    flex-shrink: 0;
    opacity: 0.7;
}
