/* =============================================================
   Authentic Cuisine of India — style.css  (2026 redesign)
   One typeface: Poppins. Warm ivory base, saffron + spice
   accents, deep espresso feature bands. Editorial / bento layout.
   ============================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* palette — light premium */
  --bg:        #FBF8F2;   /* warm ivory page              */
  --surface:   #FFFFFF;   /* cards                        */
  --sand:      #F3EADB;   /* soft sand panels             */
  --ink:       #20180F;   /* espresso text                */
  --ink-2:     #4A3D31;   /* secondary text               */
  --muted:     #8A7B6B;   /* captions / muted             */
  --line:      #EADFCD;   /* warm hairline                */
  --accent:    #C8862E;   /* saffron — primary accent     */
  --accent-2:  #B14A24;   /* terracotta — emphasis/hover  */
  --green:     #2F5E4E;   /* herb green — veg / fresh     */
  --dark:      #1B130C;   /* espresso feature band        */
  --dark-2:    #241910;   /* card on dark band            */
  --cream:     #F6ECDB;   /* text on dark                 */
  --cream-dim: #C7B69E;

  /* type */
  --font: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --fs-hero: clamp(2.6rem, 6.2vw, 5.4rem);
  --fs-h2:   clamp(1.9rem, 3.8vw, 3.1rem);
  --fs-h3:   clamp(1.15rem, 1.7vw, 1.4rem);
  --fs-lede: clamp(1.02rem, 1.5vw, 1.2rem);

  /* layout */
  --container: 1240px;
  --gutter: clamp(1.1rem, 4vw, 2.6rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);

  /* radius + shadow */
  --r-sm: 12px; --r: 18px; --r-lg: 28px; --r-xl: 40px;
  --shadow:   0 18px 50px -28px rgba(60,40,20,.35);
  --shadow-lg:0 40px 90px -45px rgba(60,40,20,.55);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- 2. Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: var(--font);
  font-size: 1rem; line-height: 1.65; font-weight: 400;
  color: var(--ink-2); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg,iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input,textarea,select { font: inherit; color: inherit; }
h1,h2,h3,h4 { font-family: var(--font); color: var(--ink); line-height: 1.1; font-weight: 600; letter-spacing: -.02em; }
strong { color: var(--ink); font-weight: 600; }
::selection { background: var(--accent); color: #fff; }

.container { width: min(100% - calc(var(--gutter)*2), var(--container)); margin-inline: auto; }

.skip-link { position: fixed; top: -60px; left: 14px; z-index: 1000; background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 0 0 10px 10px; font-weight: 600; transition: top .25s var(--ease); }
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.img--failed { opacity: 0 !important; }

/* ---------- 3. Shared primitives ---------- */
.section { position: relative; padding-block: var(--section-y); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--dark); color: var(--cream-dim); }
.section--dark h1,.section--dark h2,.section--dark h3 { color: var(--cream); }

.eyebrow { display: inline-flex; align-items: center; gap: .65rem; font-size: .76rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.1rem; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }

.section__head { margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section__head.center { text-align: center; max-width: 680px; margin-inline: auto; }
.section__title { font-size: var(--fs-h2); }
.section__title .hl { color: var(--accent); }
.section__sub { color: var(--muted); margin-top: 1rem; font-size: var(--fs-lede); }

/* buttons */
.btn { --p: .9rem 1.7rem; display: inline-flex; align-items: center; justify-content: center; gap: .55rem; padding: var(--p); border-radius: 100px; font-weight: 600; font-size: .95rem; letter-spacing: .01em; transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); will-change: transform; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--solid { background: var(--ink); color: #fff; box-shadow: 0 14px 30px -16px rgba(32,24,15,.8); }
.btn--solid:hover { background: var(--accent-2); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 14px 30px -14px rgba(200,134,46,.7); }
.btn--accent:hover { background: var(--accent-2); }
.btn--outline { border: 1.5px solid var(--line); color: var(--ink); background: var(--surface); }
.btn--outline:hover { border-color: var(--ink); }
.btn--ghost-light { border: 1.5px solid rgba(246,236,219,.3); color: var(--cream); }
.btn--ghost-light:hover { border-color: var(--accent); color: var(--accent); }

.link-arrow { display: inline-flex; align-items: center; gap: .5rem; color: var(--accent-2); font-weight: 600; transition: gap .3s var(--ease); }
.link-arrow:hover { gap: .85rem; }
.section--dark .link-arrow { color: var(--accent); }

.tag { display: inline-block; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; padding: .2em .55em; border-radius: 6px; border: 1px solid var(--line); color: var(--muted); vertical-align: middle; margin-left: .4rem; }
.tag--veg { color: var(--green); border-color: rgba(47,94,78,.4); background: rgba(47,94,78,.06); }

/* reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal[data-reveal="left"] { transform: translateX(-40px); }
.reveal[data-reveal="right"] { transform: translateX(40px); }
.reveal[data-reveal="zoom"] { transform: scale(.94); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 4. Preloader ---------- */
.preloader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; background: var(--bg); transition: opacity .6s var(--ease), visibility .6s; }
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__ring { width: 54px; height: 54px; border-radius: 50%; border: 3px solid var(--line); border-top-color: var(--accent); animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 5. Topbar + header ---------- */
.topbar { background: var(--ink); color: var(--cream-dim); font-size: .8rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px; }
.topbar__contact { display: flex; gap: 1.4rem; }
.topbar__link { display: inline-flex; align-items: center; gap: .4rem; transition: color .3s var(--ease); }
.topbar__link:hover { color: var(--accent); }
.topbar__note { color: var(--accent); letter-spacing: .03em; }

.header { position: sticky; top: 0; z-index: 70; padding-block: .85rem; transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease); }
.header.is-stuck, .header.is-solid { background: rgba(251,248,242,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 10px 30px -22px rgba(60,40,20,.5); border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; }

/* logo only */
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 54px; width: auto; }
.header.is-stuck .brand__logo, .header.is-solid .brand__logo { height: 46px; transition: height .4s var(--ease); }

.nav__list { display: flex; gap: 1.9rem; }
.nav__link { position: relative; font-size: .94rem; font-weight: 500; color: var(--ink); padding-block: .3rem; transition: color .3s var(--ease); }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--accent); border-radius: 2px; transition: width .35s var(--ease); }
.nav__link:hover, .nav__link.is-active { color: var(--accent-2); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__close, .nav__cta-mobile { display: none; }

.header__actions { display: flex; align-items: center; gap: .8rem; }
.header__order { padding: .68rem 1.3rem; }
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 6. Hero (full-width vertical slider) ---------- */
.hero { position: relative; padding-block: 0 clamp(2.4rem, 5vw, 4rem); }
.hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1rem,3vw,2.4rem); }
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust .n { font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1; }
.hero__trust .l { font-size: .8rem; color: var(--muted); margin-top: .25rem; }
.hero__stars { color: var(--accent); letter-spacing: .1em; }
.hero__trust--bar { margin-top: clamp(1.6rem,3.5vw,2.4rem); padding-top: clamp(1.6rem,3.5vw,2.4rem); border-top: 1px solid var(--line); justify-content: space-between; }

/* slider shell — full bleed, edge to edge */
.vslider { position: relative; width: 100%; border-radius: 0; overflow: hidden; background: var(--dark); box-shadow: 0 26px 60px -42px rgba(20,14,8,.5); }
.vslider__stage { position: relative; height: clamp(520px, 82vh, 760px); }

/* slides stack vertically */
.vslide { position: absolute; inset: 0; transform: translateY(100%); transition: transform .9s var(--ease-out); will-change: transform; }
.vslide.is-active { transform: translateY(0); z-index: 2; }
.vslide.is-prev { transform: translateY(-100%); }
.vslide__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vslide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg,#3a2613,#1a120b); z-index: -1; }
.vslide__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,9,5,.92) 0%, rgba(13,9,5,.72) 34%, rgba(13,9,5,.32) 64%, rgba(13,9,5,.5) 100%), linear-gradient(0deg, rgba(13,9,5,.72), transparent 52%); }

/* slide content — centered to page width, copy on the left */
.vslide__content { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out) .25s, transform .7s var(--ease-out) .25s; }
.vslide.is-active .vslide__content { opacity: 1; transform: none; }
.vslide__inner { width: min(100% - calc(var(--gutter)*2), var(--container)); margin-inline: auto; padding-right: clamp(3rem, 6vw, 5rem); }
.vslide__content .eyebrow { color: var(--accent); margin-bottom: 1rem; }
.vslide__title { color: #fff; font-size: clamp(2.4rem, 5vw, 4.6rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.04; max-width: 18ch; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.vslide__title .hl { color: var(--accent); }
.vslide__lede { color: rgba(246,236,219,.95); font-size: clamp(1.05rem, 1.5vw, 1.28rem); max-width: 52ch; margin-top: 1.2rem; }
.vslide__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

/* vertical control rail */
.vslider__rail { position: absolute; right: clamp(.9rem,2.2vw,2rem); top: 50%; transform: translateY(-50%); z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.vslider__arrow { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: rgba(251,248,242,.14); border: 1px solid rgba(246,236,219,.32); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); }
.vslider__arrow:hover { background: var(--accent); border-color: var(--accent); transform: scale(1.06); }
.vslider__dots { display: flex; flex-direction: column; gap: .55rem; }
.vslider__dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(246,236,219,.4); transition: all .4s var(--ease); }
.vslider__dots button:hover { background: rgba(246,236,219,.7); }
.vslider__dots button.is-active { background: var(--accent); height: 28px; border-radius: 6px; }
.vslider__count { color: #fff; font-size: .76rem; letter-spacing: .12em; font-weight: 600; }
.vslider__count b { color: var(--accent); }

/* vertical autoplay progress */
.vslider__progress { position: absolute; top: 0; right: 0; bottom: 0; width: 3px; background: rgba(246,236,219,.16); z-index: 4; }
.vslider__progress span { display: block; width: 100%; height: 0; background: var(--accent); }

/* ---------- 7. Values strip ---------- */
.values { background: var(--ink); color: var(--cream); overflow: hidden; }
.values__track { display: flex; align-items: center; gap: 3rem; width: max-content; padding-block: 1.05rem; animation: marquee 34s linear infinite; }
.values__track span { display: inline-flex; align-items: center; gap: .8rem; font-weight: 500; letter-spacing: .04em; white-space: nowrap; color: var(--cream); }
.values__track .star { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }
.values:hover .values__track { animation-play-state: paused; }

/* ---------- 8. Story ---------- */
.story__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem,6vw,5rem); align-items: center; }
.story__media { position: relative; }
.story__media .m1 { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(150deg,#e9d7bb,#cda06f); box-shadow: var(--shadow); }
.story__media .m1 img { width: 100%; height: 100%; object-fit: cover; }
.story__media .m2 { position: absolute; right: -6%; bottom: -8%; width: 46%; border-radius: var(--r); overflow: hidden; aspect-ratio: 1/1; border: 6px solid var(--bg); box-shadow: var(--shadow); background: linear-gradient(150deg,#d9b98c,#b8814a); }
.story__media .m2 img { width: 100%; height: 100%; object-fit: cover; }
.story__chip { position: absolute; left: -4%; top: 8%; background: var(--accent); color: #fff; border-radius: 16px; padding: .9rem 1.1rem; box-shadow: var(--shadow); text-align: center; }
.story__chip b { font-size: 1.6rem; font-weight: 700; display: block; line-height: 1; }
.story__chip span { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.story__body p { color: var(--ink-2); margin-top: 1rem; max-width: 56ch; }
.story__sign { font-weight: 600; color: var(--accent-2); margin-top: 1.4rem; }
.story__body .link-arrow { margin-top: 1.4rem; }

/* ---------- 8b. About (redesigned story) ---------- */
.about__head { max-width: 640px; margin-bottom: clamp(2rem,4vw,3rem); }
.about__panel { display: grid; grid-template-columns: 1.18fr .82fr; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow); }
.about__portrait { position: relative; min-height: 360px; background: linear-gradient(150deg,#e9d7bb,#cda06f); }
.about__portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about__portrait figcaption { position: absolute; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; gap: .1rem; padding: 2.4rem 1.4rem 1.2rem; color: #fff; background: linear-gradient(0deg, rgba(20,14,8,.85), transparent); }
.about__portrait figcaption b { font-size: 1.05rem; font-weight: 600; }
.about__portrait figcaption span { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.about__badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; background: var(--accent); color: #fff; border-radius: 16px; padding: .7rem 1rem; box-shadow: var(--shadow); }
.about__badge b { font-size: 1.7rem; font-weight: 700; line-height: 1; }
.about__badge span { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; opacity: .95; margin-top: .2rem; }
.about__text { padding: clamp(1.8rem,4vw,3rem); }
.about__text p { color: var(--ink-2); margin-top: 1rem; max-width: 60ch; }
.about__text p:first-child { margin-top: 0; }
.about__quote { color: var(--ink); font-weight: 500; font-style: italic; font-size: 1.12rem; line-height: 1.5; border-left: 3px solid var(--accent); padding-left: 1.1rem; margin-top: 1.5rem !important; }
.about__text .link-arrow { margin-top: 1.5rem; }

/* career journey strip */
.journey { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: clamp(2.2rem,5vw,3.4rem); }
.journey__step { position: relative; padding-top: 2rem; }
.journey__step::before { content: ""; position: absolute; top: 6px; left: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--surface); border: 3px solid var(--accent); z-index: 1; }
.journey__step::after { content: ""; position: absolute; top: 12px; left: 14px; right: -1.4rem; height: 2px; background: var(--line); }
.journey__step:last-child::after { display: none; }
.journey__step--now::before { background: var(--accent); box-shadow: 0 0 0 4px rgba(200,134,46,.2); }
.journey__year { display: block; font-size: 1.35rem; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.journey__place { display: block; font-weight: 600; color: var(--accent-2); font-size: .92rem; margin-top: .25rem; }
.journey__note { display: block; color: var(--muted); font-size: .85rem; margin-top: .35rem; max-width: 24ch; }

/* ---------- 9. Bento features ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(180px, auto); gap: 1.1rem; }
.bcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease); position: relative; overflow: hidden; }
.bcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.bcard__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: rgba(200,134,46,.12); color: var(--accent); margin-bottom: 1rem; }
.bcard h3 { font-size: var(--fs-h3); margin-bottom: .5rem; }
.bcard p { color: var(--muted); font-size: .92rem; }
.bcard--feature { grid-column: span 2; grid-row: span 2; color: var(--cream); border: 0; background: linear-gradient(160deg, #2a1c10, #18110a); display: flex; flex-direction: column; justify-content: flex-end; min-height: 320px; }
.bcard--feature::before { content: ""; position: absolute; inset: 0; background-image: var(--img); background-size: cover; background-position: center; opacity: .42; transition: transform 1.1s var(--ease-out), opacity .5s; }
.bcard--feature:hover::before { transform: scale(1.06); }
.bcard--feature > * { position: relative; }
.bcard--feature h3 { color: #fff; font-size: clamp(1.4rem,2.4vw,2rem); }
.bcard--feature p { color: var(--cream-dim); }
.bcard--wide { grid-column: span 2; }
.bcard--accent { background: var(--accent); color: #fff; border: 0; }
.bcard--accent .bcard__icon { background: rgba(255,255,255,.18); color: #fff; }
.bcard--accent h3 { color: #fff; } .bcard--accent p { color: rgba(255,255,255,.85); }

/* services row */
.services { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 1.1rem; }
.service { display: flex; gap: .9rem; align-items: center; padding: 1.2rem 1.3rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service__num { font-size: 1.4rem; font-weight: 700; color: var(--accent); }
.service strong { display: block; color: var(--ink); font-size: .98rem; }
.service span { font-size: .82rem; color: var(--muted); }

/* ---------- 10. Signature (dark band) ---------- */
.signature__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,6vw,5rem); align-items: center; }
.signature__lede { color: var(--cream-dim); font-size: var(--fs-lede); max-width: 46ch; margin-bottom: 1.8rem; }
.dish-list { display: flex; flex-direction: column; }
.dish { padding: 1.05rem 0; border-bottom: 1px solid rgba(246,236,219,.12); }
.dish:first-child { border-top: 1px solid rgba(246,236,219,.12); }
.dish__head { display: flex; align-items: baseline; gap: .8rem; }
.dish__head h3 { color: var(--cream); font-size: 1.15rem; font-weight: 500; flex: 1; transition: color .3s var(--ease); }
.dish:hover .dish__head h3 { color: var(--accent); }
.dish__price { color: var(--accent); font-weight: 600; font-size: 1.15rem; }
.dish p { color: var(--cream-dim); font-size: .88rem; margin-top: .25rem; }
.signature__media { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/4.4; background: linear-gradient(150deg,#3a2613,#1a120b); box-shadow: var(--shadow-lg); }
.signature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out), opacity .35s var(--ease); }
.signature__media:hover img { transform: scale(1.05); }
.signature__seal { position: absolute; right: 1.2rem; top: 1.2rem; background: var(--accent); color: #fff; font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; padding: .55rem .9rem; border-radius: 100px; transition: opacity .35s var(--ease); }

/* Chef's Choice tabs */
.sigtabs { display: flex; flex-direction: column; margin-top: .4rem; }
.sigtab { display: flex; align-items: baseline; gap: .8rem; width: 100%; text-align: left; padding: 1.05rem .9rem 1.05rem .2rem; border-bottom: 1px solid rgba(246,236,219,.12); position: relative; transition: padding-left .35s var(--ease); }
.sigtab:first-child { border-top: 1px solid rgba(246,236,219,.12); }
.sigtab::before { content: ""; position: absolute; left: -2px; top: 50%; transform: translateY(-50%) scaleY(0); transform-origin: center; width: 3px; height: 62%; background: var(--accent); border-radius: 3px; transition: transform .35s var(--ease); }
.sigtab__name { flex: 1; color: var(--cream); font-size: 1.15rem; font-weight: 500; transition: color .3s var(--ease); }
.sigtab__price { color: var(--accent); font-weight: 600; font-size: 1.15rem; }
.sigtab:hover .sigtab__name { color: var(--accent); }
.sigtab.is-active { padding-left: 1rem; }
.sigtab.is-active::before { transform: translateY(-50%) scaleY(1); }
.sigtab.is-active .sigtab__name { color: var(--accent); font-weight: 600; }
.sig__desc { color: var(--cream-dim); font-size: .92rem; margin-top: 1.2rem; min-height: 2.6em; }
.signature__media img.is-swapping { opacity: 0; }

/* ---------- 11. Menu highlights ---------- */
.mtabs { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; margin-bottom: clamp(2rem,4vw,3rem); }
.mtab { padding: .6rem 1.4rem; border-radius: 100px; border: 1px solid var(--line); background: var(--surface); color: var(--ink-2); font-weight: 600; font-size: .9rem; transition: all .3s var(--ease); }
.mtab:hover { border-color: var(--accent); color: var(--ink); }
.mtab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.mpanel { display: none; animation: fadeUp .5s var(--ease-out); }
.mpanel.is-active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.mlist { display: grid; grid-template-columns: 1fr 1fr; gap: .2rem 3rem; max-width: 980px; margin-inline: auto; }
.mitem { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.mitem__row { display: flex; align-items: baseline; gap: .6rem; }
.mitem__row h3 { font-size: 1.06rem; font-weight: 600; color: var(--ink); }
.mitem__dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.mitem__price { font-weight: 700; color: var(--accent); }
.mitem p { color: var(--muted); font-size: .85rem; margin-top: .3rem; }
.menu__foot { text-align: center; margin-top: clamp(2.2rem,4vw,3rem); }

/* ---------- 12. Gallery (bento) ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 200px; gap: 1rem; }
.gtile { position: relative; overflow: hidden; border-radius: var(--r); cursor: pointer; background: linear-gradient(150deg,#e9d7bb,#cda06f); box-shadow: var(--shadow); }
.gtile--lg { grid-column: span 2; grid-row: span 2; }
.gtile--wide { grid-column: span 2; }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.gtile:hover img, .gtile:focus-visible img { transform: scale(1.08); }
.gtile figcaption { position: absolute; inset: auto 0 0 0; padding: 1.4rem 1.1rem .9rem; display: flex; justify-content: space-between; align-items: center; gap: .5rem; color: #fff; font-weight: 600; background: linear-gradient(0deg, rgba(20,14,8,.86), transparent); transform: translateY(10px); opacity: 0; transition: transform .5s var(--ease), opacity .5s var(--ease); }
.gtile:hover figcaption, .gtile:focus-visible figcaption { transform: none; opacity: 1; }
.gtile__price { color: var(--accent); }

/* ---------- 13. Happy hour banner ---------- */
.happy__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border-radius: var(--r-xl); padding: clamp(2.2rem,5vw,3.8rem); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.happy__inner::before { content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.12); }
.happy__inner h2 { color: #fff; } .happy__inner .eyebrow { color: rgba(255,255,255,.9); } .happy__inner .eyebrow::before,.happy__inner .eyebrow::after { background: rgba(255,255,255,.9); }
.happy__left p { color: rgba(255,255,255,.9); margin-top: 1rem; }
.happy__list { display: grid; gap: .3rem; position: relative; }
.happy__list li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.25); font-weight: 500; }
.happy__price { font-weight: 700; font-size: 1.3rem; }

/* ---------- 14. Events ---------- */
.events__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.2rem,3vw,2rem); }
.event { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.event:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.event__img { height: 210px; background-image: var(--img); background-size: cover; background-position: center; position: relative; }
.event__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(20,14,8,.4)); }
.event__body { padding: 1.5rem 1.5rem 1.7rem; }
.event__body h3 { font-size: var(--fs-h3); margin-bottom: .5rem; }
.event__body p { color: var(--muted); font-size: .9rem; }
.event .link-arrow { margin-top: 1rem; font-size: .9rem; }

/* ---------- 15. Testimonials (editorial) ---------- */
.tm { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.tm__aside .eyebrow { margin-bottom: 1rem; }
.tm__score { display: flex; align-items: center; gap: 1rem; margin-top: 1.6rem; }
.tm__score-num { font-size: clamp(2.6rem,5vw,3.6rem); font-weight: 700; color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.tm__score-meta { display: flex; flex-direction: column; gap: .2rem; }
.tm__score-stars { color: var(--accent); letter-spacing: .14em; font-size: 1.1rem; }
.tm__score-sub { color: var(--muted); font-size: .84rem; }
.tm__controls { display: flex; align-items: center; gap: .7rem; margin-top: 2rem; flex-wrap: wrap; }
.tm__nav { width: 48px; height: 48px; flex: none; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); color: var(--ink); display: grid; place-items: center; transition: all .3s var(--ease); }
.tm__nav:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.tm__dots { margin: 0 0 0 .4rem; }

/* carousel mechanics (kept) */
.tcarousel__viewport { overflow: hidden; flex: 1; }
.tcarousel__track { display: flex; transition: transform .6s var(--ease-out); }

/* stage card */
.tm__stage { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow); padding: clamp(1.8rem,4vw,3rem); overflow: hidden; }
.tm__stage::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(var(--accent), var(--accent-2)); }
.tm__quotemark { position: absolute; top: -.35em; right: .25em; font-size: 11rem; line-height: 1; color: var(--accent); opacity: .12; font-weight: 700; pointer-events: none; }

.tcard { flex: 0 0 100%; text-align: left; }
.tcard__stars { color: var(--accent); letter-spacing: .15em; font-size: 1.05rem; }
.tcard__quote { font-size: clamp(1.2rem,2.1vw,1.6rem); line-height: 1.5; color: var(--ink); font-weight: 500; margin: 1rem 0 1.8rem; max-width: 40ch; }
.tcard__who { display: inline-flex; align-items: center; gap: .85rem; }
.tcard__avatar { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(150deg, var(--accent), var(--accent-2)); color: #fff; font-weight: 700; font-size: 1.1rem; flex: none; }
.tcard__meta { display: flex; flex-direction: column; }
.tcard__name { font-weight: 600; color: var(--ink); }
.tcard__src { font-size: .78rem; color: var(--muted); }

/* dots (shared) */
.tcarousel__dots { display: flex; gap: .5rem; }
.tcarousel__dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: all .3s var(--ease); }
.tcarousel__dots button.is-active { background: var(--accent); width: 24px; border-radius: 5px; }

/* ---------- 16. Reserve / CTA ---------- */
.reserve__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.reserve__info .eyebrow { color: var(--accent); }
.reserve__lede { color: var(--cream-dim); margin: 1rem 0 1.6rem; max-width: 44ch; }
.reserve__details { display: grid; gap: .9rem; }
.reserve__details li { display: flex; gap: .8rem; align-items: flex-start; color: var(--cream-dim); }
.reserve__details a:hover { color: var(--accent); }
.reserve__details .ic { color: var(--accent); flex: none; }
.rform { background: var(--surface); border-radius: var(--r-lg); padding: clamp(1.6rem,4vw,2.6rem); box-shadow: var(--shadow-lg); }
.rform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; margin-bottom: 1.05rem; }
.field label { font-size: .82rem; font-weight: 500; color: var(--ink-2); margin-bottom: .4rem; }
.field__opt { color: var(--muted); font-weight: 400; }
.field input,.field select,.field textarea { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: .8rem .9rem; color: var(--ink); transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.field input:focus,.field select:focus,.field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,134,46,.16); }
.field textarea { resize: vertical; }
.field.has-error input,.field.has-error select,.field.has-error textarea { border-color: var(--accent-2); }
.field__error { color: var(--accent-2); font-size: .76rem; margin-top: .35rem; min-height: 1em; }
.rform__submit { width: 100%; margin-top: .3rem; }
.rform__status { margin-top: 1rem; text-align: center; font-size: .9rem; min-height: 1.2em; }
.rform__status.ok { color: var(--green); }

/* ---------- 17. Map ---------- */
.map { line-height: 0; }
.map iframe { width: 100%; height: clamp(300px,45vh,460px); border: 0; filter: grayscale(.2) contrast(1.02); transition: filter .6s var(--ease); }
.map:hover iframe { filter: none; }

/* ---------- 18. Footer ---------- */
.footer { background: var(--dark); color: var(--cream-dim); padding-top: clamp(3rem,6vw,5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: clamp(2rem,5vw,3.5rem); padding-bottom: 3rem; }
.footer__brand .brand__logo { height: 60px; margin-bottom: 1.1rem; }
.footer__brand p { font-size: .9rem; max-width: 38ch; }
.footer__social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer__social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(246,236,219,.2); border-radius: 50%; color: var(--cream); transition: all .3s var(--ease); }
.footer__social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.footer__col h4 { color: var(--cream); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 600; }
.footer__col ul { display: grid; gap: .6rem; }
.footer__col a { font-size: .92rem; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: .88rem; padding: .25rem 0; }
.footer__happy { color: var(--accent); }
.footer__subscribe p { font-size: .88rem; margin-bottom: .9rem; }
.subscribe { display: flex; gap: .5rem; }
.subscribe input { flex: 1; background: var(--dark-2); border: 1px solid rgba(246,236,219,.18); border-radius: 100px; padding: .7rem 1rem; color: var(--cream); }
.subscribe input:focus { outline: none; border-color: var(--accent); }
.subscribe .btn { flex: none; padding: .7rem 1.1rem; }
.subscribe__status { font-size: .8rem; margin-top: .5rem; color: var(--accent); min-height: 1em; }
.footer__reserve { margin-top: 1.4rem; font-size: .9rem; }
.footer__reserve a { color: var(--accent); }
.footer__bar { border-top: 1px solid rgba(246,236,219,.14); padding-block: 1.4rem; }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem; }
.footer__credit { color: var(--accent); }

/* ---------- 19. Back-to-top + lightbox ---------- */
.to-top { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 80; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(14px); transition: all .35s var(--ease); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--accent); }
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 5vh 4vw; background: rgba(20,14,8,.92); backdrop-filter: blur(8px); }
.lightbox.is-open { display: flex; animation: fadeUp .35s var(--ease-out); }
.lightbox__figure { max-width: min(900px,90vw); text-align: center; }
.lightbox__figure img { max-height: 78vh; width: auto; border-radius: var(--r); margin-inline: auto; box-shadow: var(--shadow-lg); }
.lightbox__figure figcaption { color: var(--cream); font-weight: 600; margin-top: 1rem; }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.4rem; font-size: 2.4rem; color: #fff; line-height: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); color: #fff; font-size: 2rem; display: grid; place-items: center; transition: all .3s var(--ease); }
.lightbox__nav:hover { background: var(--accent); border-color: var(--accent); }
.lightbox__nav--prev { left: 2vw; } .lightbox__nav--next { right: 2vw; }

/* ---------- 20. Interior pages ---------- */
.subpage { }
.page-hero { position: relative; isolation: isolate; overflow: hidden; padding: clamp(6.5rem,15vh,10rem) 0 clamp(3rem,7vw,5rem); text-align: center; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; background: linear-gradient(150deg,#2a1c10,#16100a); }
.page-hero__bg img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(90% 80% at 50% 0%, rgba(200,134,46,.22), transparent 60%), linear-gradient(180deg, rgba(20,14,8,.7), rgba(20,14,8,.92)); }
.page-hero h1 { color: var(--cream); font-size: clamp(2.3rem,5.5vw,4rem); font-weight: 700; }
.page-hero h1 .hl { color: var(--accent); }
.breadcrumb { display: flex; gap: .5rem; justify-content: center; align-items: center; font-size: .82rem; color: var(--cream-dim); margin-top: 1rem; }
.breadcrumb a { color: var(--accent); } .breadcrumb a:hover { color: var(--cream); }
.breadcrumb__sep { opacity: .5; }

/* legend */
.legend { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 1.6rem; margin: 0 auto clamp(2rem,4vw,3rem); max-width: 760px; }
.legend__item { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--muted); }
.legend__dot { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: .6rem; font-weight: 800; flex: none; }
.legend__dot--vegan { background: rgba(47,94,78,.12); color: var(--green); }
.legend__dot--gf { background: rgba(200,134,46,.14); color: var(--accent); }
.legend__dot--df { background: rgba(70,120,170,.14); color: #3f74a8; }
.legend__dot--nut { background: rgba(177,74,36,.12); color: var(--accent-2); }
.legend__dot--pn { background: rgba(120,80,40,.14); color: #8a5a28; }
.diet { display: inline-flex; gap: .3rem; margin-left: .45rem; vertical-align: middle; }
.diet b { width: 17px; height: 17px; border-radius: 50%; font-size: .55rem; font-weight: 800; display: grid; place-items: center; line-height: 1; }
.diet b.v { background: rgba(47,94,78,.14); color: var(--green); }
.diet b.g { background: rgba(200,134,46,.16); color: var(--accent); }
.diet b.d { background: rgba(70,120,170,.16); color: #3f74a8; }
.diet b.n { background: rgba(177,74,36,.14); color: var(--accent-2); }
.diet b.p { background: rgba(120,80,40,.16); color: #8a5a28; }

/* menu page */
.menu-cat-nav { position: sticky; top: 70px; z-index: 40; display: flex; gap: .5rem; overflow-x: auto; padding: .8rem 0; margin-bottom: 2.5rem; background: rgba(251,248,242,.92); backdrop-filter: blur(10px); border-block: 1px solid var(--line); scrollbar-width: thin; }
.menu-cat-nav::-webkit-scrollbar { height: 5px; }
.menu-cat-nav::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.menu-cat-nav a { white-space: nowrap; padding: .5rem 1.05rem; border-radius: 100px; font-size: .85rem; font-weight: 600; color: var(--muted); border: 1px solid var(--line); background: var(--surface); transition: all .3s var(--ease); flex: none; }
.menu-cat-nav a:hover { color: var(--ink); border-color: var(--accent); }
.menu-cat-nav a.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.menu-section { margin-bottom: clamp(2.5rem,5vw,4rem); scroll-margin-top: 150px; }
.menu-section__head { margin-bottom: 1.4rem; }
.menu-section__title { font-size: clamp(1.5rem,3vw,2.1rem); display: flex; align-items: baseline; gap: 1rem; }
.menu-section__title::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.menu-section__note { color: var(--muted); font-size: .85rem; margin-top: .5rem; max-width: 72ch; font-style: italic; }
.menu-cols { columns: 2; column-gap: 3.5rem; }
.menu-cols .mitem { break-inside: avoid; }
.price-variant { font-size: .78rem; color: var(--muted); font-weight: 500; }

/* blog grid */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.4rem,3vw,2.2rem); }
.blog-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card__img { aspect-ratio: 16/10; overflow: hidden; position: relative; background: linear-gradient(150deg,#e9d7bb,#cda06f); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.blog-card:hover .blog-card__img img { transform: scale(1.07); }
.blog-card__date { position: absolute; top: 12px; left: 12px; background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700; padding: .3rem .7rem; border-radius: 100px; }
.blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__tag { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: .6rem; }
.blog-card__title { font-size: 1.25rem; margin-bottom: .6rem; }
.blog-card__excerpt { color: var(--muted); font-size: .9rem; flex: 1; }
.blog-card .link-arrow { margin-top: 1.1rem; }

/* contact */
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-bottom: clamp(2.5rem,5vw,3.5rem); }
.ccard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem 1.6rem; text-align: center; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.ccard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.ccard__ico { width: 56px; height: 56px; margin: 0 auto 1rem; display: grid; place-items: center; border-radius: 50%; background: rgba(200,134,46,.12); color: var(--accent); }
.ccard h3 { font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: .6rem; }
.ccard a,.ccard p { color: var(--ink); font-size: 1rem; transition: color .3s var(--ease); }
.ccard a:hover { color: var(--accent-2); }
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.hours-list li:last-child { border-bottom: 0; color: var(--accent-2); font-weight: 600; }

/* ---------- 20b. Menu page: dish thumbnails + category slider ---------- */
.cat-slider { position: sticky; top: 68px; z-index: 40; display: flex; align-items: center; gap: .6rem; background: rgba(251,248,242,.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-block: 1px solid var(--line); padding: .7rem 0; margin-bottom: clamp(2rem,4vw,3rem); }
.cat-slider__arrow { flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); color: var(--ink); transition: all .3s var(--ease); }
.cat-slider__arrow:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.cat-slider__arrow[disabled] { opacity: .3; pointer-events: none; }
.cat-slider .menu-cat-nav { position: static; top: auto; margin: 0; padding: 0; border: 0; background: none; backdrop-filter: none; flex: 1; scroll-behavior: smooth; scrollbar-width: none; }
.cat-slider .menu-cat-nav::-webkit-scrollbar { display: none; height: 0; }

.menu-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: .3rem 2.4rem; columns: auto; max-width: 1020px; margin-inline: auto; }
.menu-cols .mitem { display: flex; gap: 1rem; align-items: flex-start; padding: .85rem 0; border-bottom: 1px solid var(--line); break-inside: avoid; }
.mitem__thumb { flex: none; width: 76px; height: 76px; border-radius: 14px; overflow: hidden; background: linear-gradient(150deg,#e9d7bb,#cda06f); box-shadow: var(--shadow); }
.mitem__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.menu-cols .mitem:hover .mitem__thumb img { transform: scale(1.08); }
.mitem__thumb--drink { display: grid; place-items: center; background: linear-gradient(150deg,#2a1c10,#16100a); color: var(--accent); }
.mitem__info { flex: 1; min-width: 0; }

/* ---------- 20c. Blog detail page ---------- */
.article { padding-block: clamp(3rem,6vw,5rem); }
.article__layout { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: clamp(2rem,5vw,4rem); align-items: start; }
.post__cat { display: inline-block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: #fff; background: var(--accent); padding: .35rem .8rem; border-radius: 100px; }
.post__title { font-size: clamp(1.9rem,3.8vw,3rem); margin: 1.1rem 0 1rem; letter-spacing: -.02em; }
.post__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.3rem; color: var(--muted); font-size: .9rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--line); }
.post__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }
.post__hero { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/9; background: linear-gradient(150deg,#e9d7bb,#cda06f); box-shadow: var(--shadow); margin: 1.8rem 0; }
.post__hero img { width: 100%; height: 100%; object-fit: cover; }
.prose { color: var(--ink-2); font-size: 1.05rem; }
.prose > * + * { margin-top: 1.2rem; }
.prose h2 { color: var(--ink); font-size: clamp(1.4rem,2.4vw,1.9rem); margin-top: 2.2rem; }
.prose strong { color: var(--ink); }
.prose ul { display: grid; gap: .6rem; padding-left: 1.2rem; list-style: disc; }
.prose blockquote { border-left: 3px solid var(--accent); background: var(--sand); padding: 1.2rem 1.4rem; border-radius: 0 12px 12px 0; font-style: italic; color: var(--ink); font-size: 1.15rem; }
.prose figure { margin: 1.8rem 0; }
.prose figure img { width: 100%; border-radius: var(--r); }
.prose figcaption { color: var(--muted); font-size: .84rem; margin-top: .6rem; text-align: center; }
.post__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.post__tags a { font-size: .8rem; color: var(--ink-2); border: 1px solid var(--line); border-radius: 100px; padding: .35rem .8rem; transition: all .3s var(--ease); }
.post__tags a:hover { border-color: var(--accent); color: var(--accent); }
.share { display: flex; align-items: center; gap: .7rem; margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.share span { font-size: .82rem; color: var(--muted); font-weight: 600; }
.share a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); color: var(--ink); transition: all .3s var(--ease); }
.share a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.author-box { display: flex; gap: 1.1rem; align-items: center; margin-top: 2rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem 1.6rem; }
.author-box__avatar { width: 64px; height: 64px; border-radius: 50%; flex: none; display: grid; place-items: center; background: linear-gradient(150deg,var(--accent),var(--accent-2)); color: #fff; font-weight: 700; font-size: 1.4rem; }
.author-box h4 { font-size: 1.05rem; }
.author-box p { color: var(--muted); font-size: .88rem; margin-top: .2rem; }
.sidebar { position: sticky; top: 90px; display: grid; gap: 1.4rem; }
.widget { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; }
.widget h4 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.widget__search { display: flex; gap: .5rem; }
.widget__search input { flex: 1; background: var(--bg); border: 1px solid var(--line); border-radius: 100px; padding: .6rem .9rem; }
.widget__search input:focus { outline: none; border-color: var(--accent); }
.recent { display: grid; gap: 1rem; }
.recent a { display: flex; gap: .8rem; align-items: center; }
.recent__thumb { width: 60px; height: 60px; border-radius: 12px; overflow: hidden; flex: none; background: linear-gradient(150deg,#e9d7bb,#cda06f); }
.recent__thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent b { font-size: .92rem; color: var(--ink); font-weight: 600; line-height: 1.3; transition: color .3s var(--ease); }
.recent a:hover b { color: var(--accent); }
.recent span { display: block; font-size: .76rem; color: var(--muted); margin-top: .2rem; }
.taglist { display: flex; flex-wrap: wrap; gap: .5rem; }
.taglist a { font-size: .8rem; color: var(--ink-2); border: 1px solid var(--line); border-radius: 100px; padding: .3rem .75rem; transition: all .3s var(--ease); }
.taglist a:hover { border-color: var(--accent); color: var(--accent); }
.widget--cta { background: linear-gradient(150deg, var(--accent), var(--accent-2)); color: #fff; text-align: center; }
.widget--cta h4 { color: rgba(255,255,255,.9); }
.widget--cta p { font-size: .9rem; margin-bottom: 1rem; color: rgba(255,255,255,.92); }
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--accent); width: 0; z-index: 200; transition: width .1s linear; }

/* ---------- 21. Responsive ---------- */
@media (max-width: 1000px) {
  .story__grid, .signature__grid, .reserve__grid, .contact-split, .happy__inner { grid-template-columns: 1fr; }
  .story__media { max-width: 460px; margin-inline: auto; }
  .signature__media { max-width: 460px; margin-inline: auto; }
  .about__panel { grid-template-columns: 1fr; }
  .about__portrait { min-height: 300px; aspect-ratio: 16/10; order: -1; }
  .journey { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1.4rem; }
  .journey__step:nth-child(2)::after { display: none; }
  .tm { grid-template-columns: 1fr; }
  .tm__quotemark { font-size: 8rem; }
  .vslider__stage { height: clamp(460px, 72vh, 620px); }
  .vslide__inner { padding-right: clamp(3.5rem,7vw,5rem); }
  .bento { grid-template-columns: repeat(2,1fr); }
  .bcard--feature { grid-column: span 2; }
  .services { grid-template-columns: repeat(2,1fr); }
  .events__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .gallery__grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 170px; }
  .gtile--lg { grid-column: span 2; grid-row: span 1; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .menu-cols { grid-template-columns: 1fr; }
  .article__layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 720px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(82vw,330px); z-index: 90; background: var(--surface); border-left: 1px solid var(--line); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.8rem; padding: 2rem 2.2rem; transform: translateX(110%); transition: transform .45s var(--ease-out); box-shadow: -30px 0 80px -30px rgba(60,40,20,.4); }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 1.3rem; }
  .nav__link { font-size: 1.3rem; }
  .nav__close { display: block; position: absolute; top: 1rem; right: 1.3rem; font-size: 2.2rem; color: var(--ink); }
  .nav__cta-mobile { display: inline-flex; }
  .nav-toggle { display: flex; }
  .header__order { display: none; }
  .topbar__link--hide-sm { display: none; }
  .mlist { grid-template-columns: 1fr; gap: 0; }
  .mitem__row h3 { white-space: normal; }
  .menu-cat-nav { top: 62px; }
  .cat-slider { top: 58px; }
  .footer__grid { grid-template-columns: 1fr; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 520px) {
  .services, .bento { grid-template-columns: 1fr; }
  .bcard--feature { grid-column: span 1; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gtile--lg, .gtile--wide { grid-column: span 1; }
  .blog-grid { grid-template-columns: 1fr; }
  .vslide__cta { flex-direction: column; align-items: stretch; }
  .vslide__inner { padding-right: 3.2rem; }
  .vslider__stage { height: clamp(440px, 80vh, 580px); }
  .vslider__rail { right: .6rem; gap: .7rem; }
  .vslider__arrow { width: 34px; height: 34px; }
  .vslider__count { display: none; }
  .tm__quotemark { font-size: 6rem; }
  .journey { grid-template-columns: 1fr; gap: 0; margin-left: 6px; }
  .journey__step { padding: 0 0 1.7rem 1.8rem; border-left: 2px solid var(--line); }
  .journey__step:last-child { border-left-color: transparent; padding-bottom: 0; }
  .journey__step::before { top: 2px; left: -8px; }
  .journey__step::after { display: none; }
  .journey__note { max-width: none; }
}

/* ---------- 22. Reduced motion / print ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .values__track { animation: none; }
}
@media print {
  .topbar,.header,.to-top,.map,.values,.nav-toggle,.vslide__cta,.vslider__rail { display: none !important; }
  body { color: #000; background: #fff; }
}
