/* =========================================================================
   Blend & Boost — public website
   Forest / mint / clay, matching the KDS. Built to feel calm and premium:
   generous whitespace, a warm off-white base, one display face for headings.
   ========================================================================= */

:root {
    --w-forest: #1B352F;
    --w-forest-600: #24463d;
    --w-mint: #EEFAE6;
    --w-mint-deep: #dcefd0;
    --w-clay: #dda18b;
    --w-clay-deep: #cc8a70;
    --w-cream: #fbfaf6;
    --w-ink: #22302b;
    --w-muted: #6a7b74;
    --w-line: #e6e9e4;

    --w-display: 'Bricolage Grotesque', Georgia, serif;
    --w-body: 'Inter', system-ui, sans-serif;

    --w-max: 1160px;
    --w-radius: 20px;
    --w-radius-sm: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--w-body);
    color: var(--w-ink);
    background: var(--w-cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--w-forest); }

h1, h2, h3, h4 { font-family: var(--w-display); font-weight: 700; line-height: 1.1; color: var(--w-forest); margin: 0 0 .5em; }

.w-wrap { max-width: var(--w-max); margin: 0 auto; padding: 0 24px; }
.w-section { padding: 30px 0; }
.w-section--tight { padding: 56px 0; }

.w-eyebrow {
    font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    color: var(--w-clay-deep); margin: 0 0 12px;
}
.w-center { text-align: center; }
.w-center .w-eyebrow { }

.w-lead { font-size: 1.15rem; color: var(--w-muted); max-width: 60ch; }
.w-center .w-lead { margin-left: auto; margin-right: auto; }

/* Buttons */
.w-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--w-forest); color: #fff; text-decoration: none;
    font-weight: 600; font-size: .98rem;
    padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
    transition: transform .15s ease, background .15s ease;
}
.w-btn:hover { background: var(--w-forest-600); transform: translateY(-1px); color: #fff; }
.w-btn--clay { background: var(--w-clay); color: var(--w-forest); }
.w-btn--clay:hover { background: var(--w-clay-deep); color: var(--w-forest); }
.w-btn--ghost { background: transparent; color: var(--w-forest); border: 1.5px solid var(--w-forest); }
.w-btn--ghost:hover { background: var(--w-forest); color: #fff; }
.w-btn--lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------------------------------------------------------------- Header */
.w-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(251, 250, 246, .88); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--w-line);
}
.w-header__inner { display: flex; align-items: center; gap: 20px; height: 74px; }
.w-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.w-brand__mark { width: 42px; height: 42px; border-radius: 11px; object-fit: cover; }
.w-brand__mark--ph { background: var(--w-forest); color: var(--w-mint); display: grid; place-items: center; font-family: var(--w-display); font-weight: 700; font-size: 1.1rem; }
.w-brand__name { font-family: var(--w-display); font-weight: 700; font-size: 1.2rem; color: var(--w-forest); line-height: 1; }
.w-brand__sub { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--w-muted); }

.w-nav { display: flex; align-items: center; gap: 4px; }
.w-nav a { text-decoration: none; color: var(--w-ink); font-weight: 500; font-size: .96rem; padding: 8px 14px; border-radius: 9px; transition: background .15s, color .15s; }
.w-nav a:hover { background: var(--w-mint); color: var(--w-forest); }
.w-nav a.is-active { color: var(--w-forest); font-weight: 600; }
.w-nav__cta { margin-left: 8px; }

.w-burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--w-forest); }

/* Mobile nav */
@media (max-width: 860px) {
    .w-nav {
        position: fixed; inset: 74px 0 auto 0;
        flex-direction: column; align-items: stretch; gap: 2px;
        background: var(--w-cream); border-bottom: 1px solid var(--w-line);
        padding: 12px 24px 20px; transform: translateY(-120%); transition: transform .25s ease;
    }
    .w-nav.is-open { transform: none; }
    .w-nav a { padding: 12px 14px; }
    .w-nav__cta { margin: 8px 0 0; text-align: center; justify-content: center; }
    .w-burger { display: block; }
}

/* ------------------------------------------------------------------ Hero */
.w-hero { position: relative; overflow: hidden; background: var(--w-forest); color: #fff; }
.w-hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding: 96px 0; }
.w-hero__kicker { color: var(--w-clay); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; font-size: .82rem; margin-bottom: 18px; }
.w-hero h1 { color: #fff; font-size: clamp(2.6rem, 5vw, 4.2rem); margin-bottom: 20px; }
.w-hero p { color: rgba(255,255,255,.82); font-size: 1.2rem; max-width: 46ch; margin-bottom: 32px; }
.w-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.w-hero__art { position: relative; }
.w-hero__art img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--w-radius); box-shadow: 0 30px 60px rgba(0,0,0,.3); }
.w-hero__art--ph { aspect-ratio: 4/5; border-radius: var(--w-radius); background: linear-gradient(150deg, var(--w-forest-600), var(--w-forest)); display: grid; place-items: center; }
.w-hero__blob { position: absolute; width: 340px; height: 340px; border-radius: 50%; background: var(--w-clay); opacity: .16; filter: blur(30px); top: -60px; right: -60px; }

@media (max-width: 860px) {
    .w-hero__inner { grid-template-columns: 1fr; padding: 60px 0; gap: 36px; }
    .w-hero__art { order: -1; }
    .w-hero__art img, .w-hero__art--ph { aspect-ratio: 16/10; }
}

/* -------------------------------------------------------------- Featured */
.w-featured { background: var(--w-cream); }
.w-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.w-card {
    background: #fff; border: 1px solid var(--w-line); border-radius: var(--w-radius);
    overflow: hidden; transition: transform .18s ease, box-shadow .18s ease;
}
.w-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(27,53,47,.1); }
.w-card__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--w-mint); }
.w-card__img--ph { display: grid; place-items: center; color: var(--w-forest); font-family: var(--w-display); font-size: 2.4rem; opacity: .3; }
.w-card__body { padding: 20px 22px 24px; }
.w-card__body h3 { font-size: 1.3rem; margin-bottom: 6px; }
.w-card__desc { color: var(--w-muted); font-size: .92rem; margin-bottom: 14px; min-height: 2.6em; }
.w-card__foot { display: flex; align-items: center; justify-content: space-between; }
.w-card__price { font-family: var(--w-display); font-weight: 700; font-size: 1.3rem; color: var(--w-forest); }
.w-card__from { color: var(--w-muted); font-size: .78rem; font-weight: 500; }

.w-diet { width: 15px; height: 15px; border: 2px solid currentColor; border-radius: 3px; display: inline-grid; place-items: center; }
.w-diet::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.w-diet--veg { color: #4c9a51; } .w-diet--non_veg { color: #c0503f; } .w-diet--egg { color: #d19a2e; }

@media (max-width: 860px) { .w-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 540px) { .w-cards { grid-template-columns: 1fr; } }

/* --------------------------------------------------------- About strip */
.w-about { background: var(--w-mint); }
.w-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.w-about__art img { border-radius: var(--w-radius); aspect-ratio: 5/4; object-fit: cover; width: 100%; }
.w-about__art--ph { border-radius: var(--w-radius); aspect-ratio: 5/4; background: var(--w-mint-deep); display: grid; place-items: center; }
@media (max-width: 860px) { .w-about__grid { grid-template-columns: 1fr; gap: 32px; } }

/* -------------------------------------------------------------- Gallery */
.w-gallery { columns: 4; column-gap: 14px; margin-top: 40px; }
.w-gallery img { width: 100%; border-radius: var(--w-radius-sm); margin-bottom: 14px; break-inside: avoid; }
.w-gallery figure { margin: 0 0 14px; break-inside: avoid; position: relative; }
.w-gallery figure img { margin: 0; }
.w-gallery figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 14px 10px;
    color: #fff; font-size: .82rem; font-weight: 500;
    background: linear-gradient(transparent, rgba(0,0,0,.6)); border-radius: 0 0 var(--w-radius-sm) var(--w-radius-sm);
    opacity: 0; transition: opacity .2s;
}
.w-gallery figure:hover figcaption { opacity: 1; }
@media (max-width: 900px) { .w-gallery { columns: 3; } }
@media (max-width: 640px) { .w-gallery { columns: 2; column-gap: 10px; } }

/* --------------------------------------------------------- Testimonials */
.w-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.w-quote { background: #fff; border: 1px solid var(--w-line); border-radius: var(--w-radius); padding: 28px; }
.w-quote__mark { font-family: var(--w-display); font-size: 3rem; line-height: .6; color: var(--w-clay); }
.w-quote p { font-size: 1.02rem; color: var(--w-ink); margin: 8px 0 16px; }
.w-quote__name { font-weight: 700; color: var(--w-forest); font-size: .92rem; }
@media (max-width: 860px) { .w-quotes { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------- Hours/CTA */
.w-strip { background: var(--w-forest); color: #fff; }
.w-strip h2 { color: #fff; }
.w-hours { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 32px; }
.w-hours__item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--w-radius-sm); padding: 22px; }
.w-hours__item .k { color: var(--w-clay); font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.w-hours__item .v { font-size: 1.08rem; }

/* -------------------------------------------------------------- Menu page */
.w-menu-cat { margin-bottom: 56px; }
.w-menu-cat__head { display: flex; align-items: baseline; gap: 16px; border-bottom: 2px solid var(--w-forest); padding-bottom: 12px; margin-bottom: 24px; }
.w-menu-cat__head h2 { margin: 0; }
.w-menu-cat__count { color: var(--w-muted); font-size: .9rem; }
.w-menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 48px; }
.w-menu-row { display: flex; align-items: baseline; gap: 12px; padding: 14px 0; border-bottom: 1px dotted var(--w-line); }
.w-menu-row__img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex: none; align-self: center; background: var(--w-mint); }
.w-menu-row__main { flex: 1; min-width: 0; }
.w-menu-row__name { font-family: var(--w-display); font-weight: 600; font-size: 1.12rem; color: var(--w-forest); display: flex; align-items: center; gap: 8px; }
.w-menu-row__desc { color: var(--w-muted); font-size: .88rem; }
.w-menu-row__dots { flex: 1; border-bottom: 1px dotted var(--w-line); transform: translateY(-4px); min-width: 20px; }
.w-menu-row__price { font-family: var(--w-display); font-weight: 700; color: var(--w-forest); white-space: nowrap; }
.w-tag { font-size: .68rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
@media (max-width: 860px) { .w-menu-list { grid-template-columns: 1fr; gap: 0 0; } }

/* -------------------------------------------------------------- Contact */
.w-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.w-form label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.w-form .row { margin-bottom: 18px; }
.w-form input, .w-form textarea {
    width: 100%; border: 1.5px solid var(--w-line); border-radius: var(--w-radius-sm);
    padding: 13px 15px; font: inherit; font-size: .96rem; background: #fff; color: var(--w-ink);
}
.w-form input:focus, .w-form textarea:focus { outline: 0; border-color: var(--w-clay); box-shadow: 0 0 0 4px rgba(221,161,139,.22); }
.w-form .w-hp { position: absolute; left: -9999px; }
.w-info__item { display: flex; gap: 14px; margin-bottom: 22px; }
.w-info__ico { width: 44px; height: 44px; border-radius: 12px; background: var(--w-mint); color: var(--w-forest); display: grid; place-items: center; flex: none; }
.w-info__item .k { font-weight: 700; color: var(--w-forest); margin-bottom: 2px; }
.w-info__item .v { color: var(--w-muted); }
.w-info__item .v a { color: var(--w-muted); }
.w-map { margin-top: 12px; border-radius: var(--w-radius); overflow: hidden; border: 1px solid var(--w-line); }
.w-map iframe { width: 100%; height: 320px; border: 0; display: block; }
.w-flash { background: var(--w-mint); border: 1px solid var(--w-mint-deep); color: var(--w-forest); border-radius: var(--w-radius-sm); padding: 16px 18px; margin-bottom: 22px; font-weight: 500; }
.w-error { color: #b5442c; font-size: .84rem; margin-top: 5px; }
@media (max-width: 860px) { .w-contact { grid-template-columns: 1fr; gap: 32px; } }

/* -------------------------------------------------------------- Footer */
.w-footer { background: var(--w-forest-600); color: rgba(255,255,255,.72); padding: 56px 0 28px; }
.w-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.w-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.w-footer a { color: rgba(255,255,255,.72); text-decoration: none; display: block; padding: 4px 0; }
.w-footer a:hover { color: var(--w-clay); }
.w-footer__brand .w-brand__name { color: #fff; }
.w-footer__social { display: flex; gap: 10px; margin-top: 14px; }
.w-footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; padding: 0; }
.w-footer__social a:hover { background: var(--w-clay); color: var(--w-forest); }
.w-footer__bar { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; font-size: .85rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
@media (max-width: 860px) { .w-footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* Page hero (About/Gallery/Contact/Menu) */
.w-pagehero { background: var(--w-mint); padding: 64px 0; text-align: center; }
.w-pagehero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.w-pagehero p { color: var(--w-muted); font-size: 1.1rem; max-width: 56ch; margin: 0 auto; }

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto; transition: none !important; } }

/* ==================================================== Reviews (Maps style) */
.w-reviews { background: var(--w-cream); overflow: hidden; }

.w-rating {
    display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
    justify-content: center; margin-top: 14px;
}
.w-rating__score { font-family: var(--w-display); font-weight: 700; font-size: 2.4rem; color: var(--w-forest); line-height: 1; }
.w-rating__count { color: var(--w-muted); font-size: .95rem; }

.w-stars { display: inline-flex; gap: 2px; color: #f0a92b; font-size: .9rem; line-height: 1; }
.w-stars--lg { font-size: 1.2rem; }

/*
   Full width by design: the track sits outside the centred wrapper and scrolls
   sideways, the way Google Maps shows reviews. Three fixed columns clipped the
   longer ones, which is what made the old section look cramped.
*/
.w-reviews__track {
    display: flex; gap: 18px;
    margin-top: 40px;
    padding: 4px 24px 20px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
/* Centre the row when there are too few cards to fill the width. */
.w-reviews__track::before, .w-reviews__track::after { content: ""; margin: auto; }

.w-review {
    flex: 0 0 clamp(260px, 78vw, 360px);
    scroll-snap-align: center;
    background: #fff; border: 1px solid var(--w-line);
    border-radius: var(--w-radius); padding: 22px;
    display: flex; flex-direction: column; gap: 12px;
}
.w-review__head { display: flex; align-items: center; gap: 12px; }
.w-review__avatar {
    width: 42px; height: 42px; border-radius: 50%; flex: none;
    display: grid; place-items: center;
    color: #fff; font-family: var(--w-display); font-weight: 700; font-size: 1.15rem;
}
.w-review__who { display: flex; flex-direction: column; min-width: 0; }
.w-review__name { font-weight: 700; color: var(--w-forest); font-size: .96rem; }
.w-review__when { color: var(--w-muted); font-size: .82rem; }
.w-review__text { margin: 0; color: var(--w-ink); font-size: .98rem; line-height: 1.6; }

/* ============================================================== FAQ page */
.w-faq { max-width: 820px; margin: 0 auto; }
.w-faq__item { border-bottom: 1px solid var(--w-line); }
.w-faq__item:first-child { border-top: 1px solid var(--w-line); }
.w-faq__q {
    width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
    display: flex; align-items: center; gap: 16px;
    padding: 22px 4px; font: inherit; font-family: var(--w-display);
    font-weight: 600; font-size: 1.12rem; color: var(--w-forest);
    /* 44px+ tap target and no double-tap-zoom delay on a phone. */
    min-height: 56px; touch-action: manipulation;
}
.w-faq__q:hover { color: var(--w-clay-deep); }
.w-faq__ico { margin-left: auto; flex: none; transition: transform .2s ease; color: var(--w-clay-deep); }
.w-faq__item.is-open .w-faq__ico { transform: rotate(45deg); }
.w-faq__a { padding: 0 4px 24px; color: var(--w-muted); font-size: 1rem; line-height: 1.7; }
/* Closed by default, and closed for anyone without JavaScript too — the button
   toggles [hidden], which needs no stylesheet support to work. */
.w-faq__a[hidden] { display: none; }

@media (prefers-reduced-motion: reduce) { .w-faq__ico { transition: none; } }

/* ============================================== Hero slider (token screen) */
/*
   Crossfade rather than a horizontal track: the slides are different shapes
   (phone photos and 16:9 clips both end up here), and fading avoids a layout
   jump between them.
*/
.w-heroslider {
    position: relative;
    width: 100%; aspect-ratio: 4/5;
    border-radius: var(--w-radius); overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.3);
    background: var(--w-forest-600);
}
.w-heroslide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity .7s ease;
    pointer-events: none;
}
.w-heroslide.is-active { opacity: 1; }
.w-heroslide img, .w-heroslide video {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

.w-heroslider__dots {
    position: absolute; left: 0; right: 0; bottom: 14px;
    display: flex; justify-content: center; gap: 8px; z-index: 2;
}
.w-heroslider__dot {
    /* 26px of tappable area around a 7px dot — a 7px target is unusable on a phone. */
    width: 26px; height: 26px; padding: 0; border: 0; cursor: pointer;
    background: none; position: relative;
    touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.w-heroslider__dot::after {
    content: ""; position: absolute; inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 7px; height: 7px; border-radius: 999px;
    background: rgba(255,255,255,.5); transition: background .2s, width .2s;
}
.w-heroslider__dot.is-active::after { background: var(--w-clay); width: 20px; }

@media (max-width: 860px) {
    .w-heroslider { aspect-ratio: 16/10; }
}
@media (prefers-reduced-motion: reduce) {
    .w-heroslide { transition: none; }
}
