/* =========================================================================
   A1 — Isa Bhai's Kebab & Tandoor  |  style.css
   "Modern Palace" — warm charcoal, brown, amber & gold
   ========================================================================= */

/* ---------- Custom properties ---------- */
:root {
  --charcoal:    #1C1C1C;
  --charcoal-2:  #232020;
  --brown:       #4A2C2A;
  --brown-2:     #5e3a36;
  --amber:       #D4A24C;
  --gold:        #C89B3C;
  --beige:       #F5E6D3;
  --ivory:       #FFF8F0;

  --ink:         #2a201c;          /* body text on light */
  --muted:       #6c5b4f;          /* secondary text on light */
  --muted-light: #d8c4ad;          /* secondary text on dark */
  --line:        rgba(200,155,60,.28);

  --shadow-sm: 0 4px 14px rgba(28,28,28,.10);
  --shadow-md: 0 14px 40px rgba(28,28,28,.18);
  --shadow-lg: 0 28px 70px rgba(28,28,28,.30);

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(1.1rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 92px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.12; color: var(--charcoal); }

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

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; position: relative; }
.section--beige { background: var(--beige); }
.section--brown { background: var(--brown); color: var(--ivory); }
.section--charcoal { background: var(--charcoal); color: var(--ivory); }
.section--brown h2, .section--charcoal h2,
.section--brown h3, .section--charcoal h3 { color: var(--ivory); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.2rem,4vw,3.2rem); }
.section-head.left { text-align: left; margin-inline: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.section--brown .eyebrow, .section--charcoal .eyebrow { color: var(--amber); }

.title {
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  letter-spacing: .5px;
}
.lead {
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
}
.section--brown .lead, .section--charcoal .lead { color: var(--muted-light); }

/* ---------- Skewer divider (signature motif) ---------- */
.skewer { display: flex; align-items: center; justify-content: center; gap: .55rem; margin: .9rem auto 0; }
.skewer.left { justify-content: flex-start; }
.skewer .rod { height: 2px; width: 56px; background: linear-gradient(90deg, transparent, var(--gold)); }
.skewer .rod:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.skewer .bead { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 2px rgba(200,155,60,.25); }
.skewer .bead.sm { width: 6px; height: 6px; background: var(--brown); box-shadow: 0 0 0 2px var(--gold); }

.divider-gold { height: 1px; border: 0; background: linear-gradient(90deg, transparent, var(--line), transparent); margin: 2.4rem 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .82rem 1.6rem;
  font-family: var(--sans); font-weight: 600; font-size: .94rem; letter-spacing: .02em;
  border-radius: 50px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; flex: 0 0 auto; }
.btn--primary { background: var(--amber); color: var(--charcoal); box-shadow: 0 10px 26px rgba(212,162,76,.34); }
.btn--primary:hover { background: var(--gold); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(200,155,60,.42); }
.btn--ghost { background: transparent; color: var(--ivory); border: 1.5px solid rgba(255,248,240,.6); }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-3px); }
.btn--dark { background: var(--charcoal); color: var(--ivory); }
.btn--dark:hover { background: var(--brown); transform: translateY(-3px); }
.btn--wa { background: #1faa52; color: #fff; box-shadow: 0 10px 26px rgba(31,170,82,.32); }
.btn--wa:hover { background: #17943f; transform: translateY(-3px); }
.btn--sm { min-height: 42px; padding: .6rem 1.2rem; font-size: .86rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn-row.center { justify-content: center; }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
  background: linear-gradient(180deg, rgba(20,18,17,.55), rgba(20,18,17,0));
}
.site-header.scrolled {
  background: rgba(24,21,20,.96);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
  height: 76px;
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled .brand img { height: 60px; }
.nav { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
       display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 82px; width: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,.4)); }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-text b { font-family: var(--display); color: var(--ivory); font-size: 1.18rem; letter-spacing: .5px; }
.brand .brand-text b .num1 { font-size: 1.22em; font-weight: 700; color: inherit; letter-spacing: inherit; text-transform: none; }
.brand .brand-text span { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--amber); margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  position: relative; color: var(--ivory); font-weight: 500; font-size: .95rem;
  padding: .55rem .85rem; border-radius: 8px; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .32rem; height: 2px;
  background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--amber); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--amber); }
.nav-cta { margin-left: .5rem; }

.hamburger {
  display: none; width: 46px; height: 46px; border-radius: 10px;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  background: rgba(255,248,240,.08); border: 1px solid rgba(255,248,240,.18);
}
.hamburger span { width: 22px; height: 2px; background: var(--ivory); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.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); }

.nav-overlay {
  position: fixed; inset: 0; z-index: 99; background: rgba(12,10,9,.6);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; backdrop-filter: blur(2px);
}
.nav-overlay.show { opacity: 1; visibility: visible; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; min-height: 100svh; min-height: 100vh; display: flex; align-items: center;
        color: var(--ivory); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media img { animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1) translate(0,0); } to { transform: scale(1.12) translate(-1.5%, -1%); } }
.hero__overlay { position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 75%, rgba(28,28,28,.18), rgba(28,28,28,.78)),
    linear-gradient(180deg, rgba(20,16,14,.55) 0%, rgba(20,16,14,.30) 40%, rgba(16,12,10,.86) 100%); }
.hero .container { position: relative; z-index: 2; padding-top: var(--header-h); width: 100%; }
.hero__inner { max-width: 760px; }
.hero__pre { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem,3vw,1.7rem); color: var(--amber); margin-bottom: .4rem; }
.hero h1 { font-size: clamp(2.6rem, 7.5vw, 5rem); letter-spacing: .5px; color: var(--ivory);
           text-shadow: 0 12px 40px rgba(0,0,0,.5); }
.hero__line { font-family: var(--serif); font-size: clamp(1.1rem, 2.6vw, 1.5rem); color: var(--beige);
              margin: 1.1rem 0 0; max-width: 34ch; }
.hero .btn-row { margin-top: 2rem; }
.hero__scroll { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 2;
  color: var(--beige); font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; text-align: center; }
.hero__scroll .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,248,240,.55); border-radius: 14px;
  margin: 0 auto .5rem; position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 7px;
  background: var(--amber); border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,12px)} 100%{opacity:0} }

/* =========================================================================
   INTRO / STORY
   ========================================================================= */
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.story-figure, .story-media { position: relative; }
.story-figure img, .story-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.story-figure .badge, .story-media .badge {
  position: absolute; right: -10px; bottom: -22px; background: var(--amber); color: var(--charcoal);
  border-radius: var(--radius); padding: 1rem 1.3rem; box-shadow: var(--shadow-md); text-align: center; max-width: 200px;
}
.story-figure .badge b, .story-media .badge b { font-family: var(--display); font-size: 1.5rem; display: block; }
.story-figure .badge span, .story-media .badge span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.story-body p + p { margin-top: 1rem; }
.story-body .lead-line { font-family: var(--serif); font-size: clamp(1.25rem,2.6vw,1.6rem); color: var(--brown); font-style: italic; }

/* =========================================================================
   CATEGORY CARDS
   ========================================================================= */
.cards-grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.8rem); grid-template-columns: repeat(3, 1fr); }
.cat-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--charcoal);
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  min-height: 320px; display: flex; align-items: flex-end; isolation: isolate;
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
                transition: transform .6s var(--ease); }
.cat-card::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(28,28,28,0) 30%, rgba(28,28,28,.45) 60%, rgba(20,14,12,.92) 100%); }
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.cat-card:hover img { transform: scale(1.08); }
.cat-card__body { padding: 1.4rem 1.5rem 1.5rem; color: var(--ivory); width: 100%; }
.cat-card__body h3 { color: var(--ivory); font-size: 1.5rem; }
.cat-card__body p { color: var(--beige); font-size: .9rem; margin-top: .25rem; }
.cat-card__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: .8rem;
  color: var(--amber); font-weight: 600; font-size: .85rem; letter-spacing: .04em; }
.cat-card__link svg { width: 1em; height: 1em; transition: transform .3s; }
.cat-card:hover .cat-card__link svg { transform: translateX(5px); }

/* =========================================================================
   WHY CHOOSE US
   ========================================================================= */
.feature-grid { display: grid; gap: clamp(1.1rem,2.5vw,1.7rem); grid-template-columns: repeat(4, 1fr); }
.feature {
  text-align: center; padding: 2rem 1.4rem; border-radius: var(--radius-lg);
  background: rgba(255,248,240,.04); border: 1px solid rgba(255,248,240,.10);
  transition: transform .35s var(--ease), border-color .35s;
}
.feature:hover { transform: translateY(-6px); border-color: var(--amber); }
.feature .ic { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; background: rgba(212,162,76,.14); color: var(--amber); }
.feature .ic svg { width: 30px; height: 30px; }
.feature h3 { font-size: 1.18rem; margin-bottom: .4rem; }
.feature p { color: var(--muted-light); font-size: .92rem; }

/* =========================================================================
   MENU HIGHLIGHTS (home)
   ========================================================================= */
.highlight-grid { display: grid; gap: clamp(1.1rem,2.5vw,1.8rem); grid-template-columns: repeat(3,1fr); }
.dish {
  background: var(--ivory); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74,44,42,.08); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dish img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.dish__body { padding: 1.2rem 1.3rem 1.4rem; }
.dish__top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.dish__top h3 { font-size: 1.28rem; }
.dish__price { font-family: var(--display); font-weight: 700; color: var(--brown); font-size: 1.25rem; white-space: nowrap; }
.dish p { color: var(--muted); font-size: .9rem; margin-top: .35rem; }
.dish .tag { display: inline-block; margin-top: .7rem; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line); border-radius: 50px; padding: .25rem .7rem; }

/* =========================================================================
   MENU PAGE
   ========================================================================= */
.menu-hero { padding-top: calc(var(--header-h) + clamp(2.5rem,6vw,5rem)); padding-bottom: clamp(2.5rem,6vw,4rem);
  text-align: center; background: var(--charcoal); color: var(--ivory); }
.menu-hero h1 { color: var(--ivory); font-size: clamp(2.2rem,6vw,3.6rem); }
.menu-note { color: var(--amber); font-style: italic; font-family: var(--serif); font-size: 1.1rem; margin-top: .8rem; }

.menu-nav {
  position: sticky; top: 76px; z-index: 40; background: rgba(245,230,211,.96); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.menu-nav__track { display: flex; gap: .4rem; overflow-x: auto; padding: .7rem var(--gutter); scrollbar-width: thin;
  -webkit-overflow-scrolling: touch; }
.menu-nav__track::-webkit-scrollbar { height: 6px; }
.menu-nav__track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 6px; }
.menu-nav a {
  flex: 0 0 auto; padding: .5rem 1rem; border-radius: 50px; font-size: .86rem; font-weight: 600;
  color: var(--brown); background: rgba(74,44,42,.07); white-space: nowrap; transition: background .25s, color .25s;
}
.menu-nav a:hover { background: var(--brown); color: var(--ivory); }
.menu-nav a.current { background: var(--amber); color: var(--charcoal); }

.menu-section { scroll-margin-top: 130px; padding: clamp(2.4rem,5vw,3.6rem) 0; }
.menu-section:nth-of-type(even) { background: var(--beige); }
.menu-section__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem; }
.menu-section__head h2 { font-size: clamp(1.5rem,3.5vw,2.2rem); white-space: nowrap; }
.menu-section__head .rule { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
.menu-section__head .ic { color: var(--gold); }
.menu-section__head .ic svg { width: 28px; height: 28px; }

.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .35rem 3rem; }
.menu-item {
  display: flex; align-items: baseline; gap: .6rem; padding: .7rem 0; border-bottom: 1px dashed rgba(74,44,42,.16);
}
.menu-item__name { font-weight: 600; color: var(--ink); }
.menu-item__name .sub { display: block; font-weight: 400; font-size: .8rem; color: var(--muted); }
.menu-item__dots { flex: 1; border-bottom: 2px dotted rgba(74,44,42,.32); transform: translateY(-4px); min-width: 18px; }
.menu-item__price { font-family: var(--display); font-weight: 700; color: var(--brown); font-size: 1.1rem; white-space: nowrap; }
.menu-item.special .menu-item__name::after {
  content: "★ Special"; margin-left: .5rem; font-family: var(--sans); font-size: .62rem; font-weight: 700;
  letter-spacing: .08em; color: var(--gold); vertical-align: middle;
}

/* =========================================================================
   GALLERY
   ========================================================================= */
.gallery-grid { columns: 3; column-gap: 1rem; }
.gallery-grid .g-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: zoom-in; box-shadow: var(--shadow-sm); }
.gallery-grid .g-item img { width: 100%; transition: transform .55s var(--ease); }
.gallery-grid .g-item::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20,14,12,.78)); opacity: .9; transition: opacity .35s; }
.gallery-grid .g-item .cap { position: absolute; left: 1rem; bottom: .9rem; z-index: 2; color: var(--ivory);
  font-family: var(--display); font-size: 1.1rem; opacity: 1; transform: translateY(0); transition: opacity .35s, transform .35s; }
.gallery-grid .g-item .zoom { position: absolute; top: .8rem; right: .8rem; z-index: 2; width: 36px; height: 36px;
  border-radius: 50%; background: rgba(212,162,76,.92); color: var(--charcoal); display: grid; place-items: center;
  opacity: .85; transform: scale(1); transition: opacity .35s, transform .35s; }
.gallery-grid .g-item:hover img { transform: scale(1.07); }
.gallery-grid .g-item:hover::after { opacity: 1; }
.gallery-grid .g-item:hover .zoom { opacity: 1; transform: scale(1.08); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(12,9,8,.94); display: none;
  align-items: center; justify-content: center; padding: clamp(1rem,4vw,3rem); }
.lightbox.open { display: flex; }
.lightbox__img { max-width: min(92vw, 1100px); max-height: 82vh; border-radius: 10px; box-shadow: var(--shadow-lg);
  object-fit: contain; }
.lightbox__cap { position: absolute; bottom: 1.4rem; left: 0; right: 0; text-align: center; color: var(--beige);
  font-family: var(--serif); font-size: 1.05rem; }
.lb-btn { position: absolute; background: rgba(255,248,240,.10); color: var(--ivory); width: 52px; height: 52px;
  border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,248,240,.2);
  transition: background .25s, transform .25s; }
.lb-btn:hover { background: var(--amber); color: var(--charcoal); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: clamp(.6rem,3vw,2rem); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(.6rem,3vw,2rem); top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.08); }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.review-grid { display: grid; gap: clamp(1.1rem,2.5vw,1.7rem); grid-template-columns: repeat(3,1fr); }
.review { background: rgba(255,248,240,.05); border: 1px solid rgba(255,248,240,.12); border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem; }
.review .stars { color: var(--amber); letter-spacing: 3px; margin-bottom: .8rem; }
.review p { font-family: var(--serif); font-size: 1.12rem; font-style: italic; color: var(--beige); }
.review .who { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.review .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--amber); color: var(--charcoal);
  display: grid; place-items: center; font-family: var(--display); font-weight: 700; }
.review .who b { color: var(--ivory); display: block; font-family: var(--sans); font-size: .95rem; }
.review .who span { color: var(--muted-light); font-size: .8rem; }

/* =========================================================================
   SOCIAL / QR
   ========================================================================= */
.social-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(1.6rem,4vw,3rem); align-items: center; }
.social-links { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.3rem; }
.social-links a { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1rem; border-radius: 50px;
  background: rgba(255,248,240,.06); border: 1px solid rgba(255,248,240,.14); color: var(--beige);
  font-size: .85rem; font-weight: 600; transition: background .25s, color .25s, transform .25s; }
.social-links a:hover { background: var(--amber); color: var(--charcoal); transform: translateY(-3px); }
.social-links a svg { width: 18px; height: 18px; }
.qr-card { text-align: center; background: var(--ivory); color: var(--ink); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow-md); }
.qr-card .qr { width: 150px; height: 150px; margin: .8rem auto; border-radius: 12px; background: #fff; padding: 10px;
  border: 2px solid var(--line); }
.qr-card h3 { font-size: 1.3rem; }
.qr-card span { color: var(--muted); font-size: .85rem; }

/* =========================================================================
   MAP & CONTACT PREVIEW
   ========================================================================= */
.map-embed { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 16/7; background: var(--charcoal); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-embed img { width: 100%; height: 100%; object-fit: cover; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem,4vw,3rem); align-items: start; }
.info-list { display: grid; gap: 1.1rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .ic { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px; background: rgba(212,162,76,.16);
  color: var(--amber); display: grid; place-items: center; }
.info-item .ic svg { width: 22px; height: 22px; }
.info-item h4 { font-size: 1rem; margin-bottom: .15rem; }
.info-item a, .info-item p { color: var(--muted); font-size: .95rem; }
.section--brown .info-item a, .section--brown .info-item p,
.section--charcoal .info-item a, .section--charcoal .info-item p { color: var(--muted-light); }
.info-item a:hover { color: var(--amber); }

/* =========================================================================
   FORMS
   ========================================================================= */
.form-card { background: var(--ivory); border-radius: var(--radius-lg); padding: clamp(1.6rem,4vw,2.6rem);
  box-shadow: var(--shadow-md); border: 1px solid rgba(74,44,42,.08); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: .4rem; color: var(--brown); }
.field input, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid rgba(74,44,42,.22); border-radius: 12px;
  background: #fff; color: var(--ink); transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 4px rgba(212,162,76,.18); }
.field.invalid input, .field.invalid textarea { border-color: #c0392b; box-shadow: 0 0 0 4px rgba(192,57,43,.12); }
.field .err { display: none; color: #c0392b; font-size: .78rem; margin-top: .35rem; }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-success {
  display: none; align-items: center; gap: .7rem; margin-bottom: 1.2rem; padding: .9rem 1.1rem;
  background: rgba(31,170,82,.12); border: 1px solid rgba(31,170,82,.4); border-radius: 12px; color: #157a39; font-weight: 600;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex: 0 0 auto; }
.form-success.error {
  background: rgba(214,58,58,.12); border-color: rgba(214,58,58,.4); color: #b02a2a;
}
.form-success__wa {
  display: block; width: 100%; margin-top: .4rem; font-weight: 700; text-decoration: underline;
}
.field--hp {
  position: absolute !important; left: -9999px !important; top: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta-band { position: relative; text-align: center; color: var(--ivory); overflow: hidden;
  background: linear-gradient(135deg, var(--brown), var(--charcoal)); }
.cta-band::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 50% 0%, rgba(212,162,76,.22), transparent 60%); }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--ivory); font-size: clamp(1.9rem,4.5vw,3rem); }
.cta-band p { color: var(--beige); max-width: 54ch; margin: 1rem auto 0; }
.cta-band .btn-row { margin-top: 2rem; }

/* =========================================================================
   ABOUT PAGE
   ========================================================================= */
.page-hero { padding-top: calc(var(--header-h) + clamp(2.6rem,6vw,5rem)); padding-bottom: clamp(2.6rem,6vw,4.2rem);
  text-align: center; color: var(--ivory); position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--brown), var(--charcoal)); }
.page-hero::before { content:""; position:absolute; inset:0;
  background: radial-gradient(70% 110% at 50% -10%, rgba(212,162,76,.25), transparent 60%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--ivory); font-size: clamp(2.3rem,6vw,3.8rem); }
.page-hero p { color: var(--beige); margin-top: .8rem; }
.breadcrumb { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: .6rem; }
.breadcrumb a:hover { color: var(--ivory); }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem,3vw,2rem); }
.mv-card { padding: 2rem; border-radius: var(--radius-lg); background: var(--ivory); box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--amber); }
.mv-card .ic { width: 56px; height: 56px; border-radius: 14px; background: rgba(212,162,76,.16); color: var(--brown);
  display: grid; place-items: center; margin-bottom: 1rem; }
.mv-card .ic svg { width: 28px; height: 28px; }
.mv-card h3 { font-size: 1.4rem; margin-bottom: .5rem; }

.owner-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(1.6rem,4vw,3rem); align-items: center; }
.owner-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.owner-quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem,2.8vw,1.7rem); color: var(--ivory);
  line-height: 1.5; }
.owner-sign { margin-top: 1.4rem; }
.owner-sign b { font-family: var(--display); font-size: 1.3rem; color: var(--amber); display: block; }
.owner-sign span { color: var(--muted-light); font-size: .85rem; }

.quality-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.1rem,2.5vw,1.7rem); }
.quality { padding: 1.8rem; border-radius: var(--radius-lg); background: var(--beige); }
.quality .ic { color: var(--brown); margin-bottom: .8rem; }
.quality .ic svg { width: 34px; height: 34px; }
.quality h3 { font-size: 1.2rem; margin-bottom: .4rem; color: var(--charcoal); }
.quality p { color: var(--muted); font-size: .92rem; }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.1rem,2.5vw,1.8rem); }
.team-card { text-align: center; }
.team-card img { border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-sm);
  margin-bottom: 1rem; }
.team-card h3 { font-size: 1.15rem; }
.team-card span { color: var(--gold); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }

.party-callout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center;
  background: linear-gradient(120deg, var(--amber), var(--gold)); color: var(--charcoal); border-radius: var(--radius-lg);
  padding: clamp(1.8rem,4vw,3rem); }
.party-callout .eyebrow { color: var(--charcoal); }
.party-callout h2 { color: var(--charcoal); }
.party-callout p { margin-top: .6rem; }
.party-callout .btn-row { justify-content: flex-end; }

/* =========================================================================
   FLOATING BUTTONS
   ========================================================================= */
.floats { position: fixed; right: 16px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: .7rem; }
.float-btn { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow-md); transition: transform .25s var(--ease), box-shadow .25s; position: relative; }
.float-btn svg { width: 26px; height: 26px; }
.float-btn:hover { transform: translateY(-4px) scale(1.06); }
.float-btn.wa { background: #1faa52; }
.float-btn.call { background: var(--brown); }
.float-btn.top { background: var(--charcoal); border: 1px solid var(--line); opacity: 0; visibility: hidden;
  transform: translateY(12px); }
.float-btn.top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--charcoal); color: var(--beige); padding-top: clamp(3rem,6vw,4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: clamp(1.6rem,4vw,2.6rem); }
.site-footer h4 { color: var(--ivory); font-size: 1.05rem; margin-bottom: 1.1rem; letter-spacing: .02em; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { color: var(--muted-light); font-size: .92rem; max-width: 34ch; }
.footer-brand .party { margin-top: 1rem; color: var(--amber); font-weight: 600; font-size: .9rem; }
.footer-links a { display: inline-block; color: var(--muted-light); padding: .3rem 0; transition: color .25s; font-size: .93rem; }
.footer-links a:hover { color: var(--amber); }
.footer-contact .info-item { margin-bottom: .9rem; }
.footer-contact .info-item .ic { width: 40px; height: 40px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,248,240,.07);
  border: 1px solid rgba(255,248,240,.14); display: grid; place-items: center; color: var(--beige);
  transition: background .25s, color .25s, transform .25s; }
.footer-social a:hover { background: var(--amber); color: var(--charcoal); transform: translateY(-3px); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,248,240,.12); margin-top: clamp(2rem,4vw,3rem);
  padding: 1.4rem 0; display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; align-items: center; justify-content: space-between; }
.footer-bottom p { color: var(--muted-light); font-size: .85rem; }
.footer-bottom .legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom .legal a { color: var(--muted-light); font-size: .85rem; transition: color .25s; }
.footer-bottom .legal a:hover { color: var(--amber); }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1023px) {
  .cards-grid, .highlight-grid, .review-grid, .quality-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .story-grid, .owner-grid, .social-row, .contact-grid, .mv-grid, .party-callout { grid-template-columns: 1fr; }
  /* Cap at 420px OR the container width, whichever is smaller. A bare
     max-width:420px is more specific than the global img{max-width:100%},
     so on phones narrower than 420px it forced the column (and the whole
     page) wider than the viewport. min(420px,100%) keeps the intended cap
     on tablets while never exceeding a narrow screen. */
  .owner-grid img { max-width: min(420px, 100%); margin-inline: auto; }
  /* Grid items default to min-width:auto, which lets a wide child expand
     the track past the viewport. Allow the stacked items to shrink. */
  .owner-grid > *, .story-grid > *, .mv-grid > *, .party-callout > * { min-width: 0; }
  .party-callout .btn-row { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-list { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 767px) {
  :root { --header-h: 76px; }
  .brand img { height: 62px; }
  .nav-links {
    position: fixed; top: 0; right: 0; z-index: 100; height: 100dvh; width: min(82vw, 340px);
    flex-direction: column; align-items: stretch; gap: .2rem; padding: calc(var(--header-h) + 1rem) 1.3rem 2rem;
    background: rgba(22,18,17,.99); box-shadow: -20px 0 60px rgba(0,0,0,.5);
    transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: .9rem 1rem; font-size: 1.05rem; border-bottom: 1px solid rgba(255,248,240,.08); }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 1rem 0 0; }
  .nav-cta .btn { width: 100%; }
  .hamburger { display: flex; }

  .cards-grid, .highlight-grid, .feature-grid, .review-grid, .quality-grid, .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .story-figure .badge, .story-media .badge { right: 50%; transform: translateX(50%); bottom: -28px; }
  .hero { min-height: 92svh; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .lb-prev { left: .6rem; } .lb-next { right: .6rem; }
  .lb-btn { width: 46px; height: 46px; }
}

@media (max-width: 380px) {
  .btn { padding: .78rem 1.2rem; font-size: .88rem; }
  .brand .brand-text b { font-size: 1.02rem; }
}

@media (min-width: 1440px) {
  .hero h1 { font-size: 5.2rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__media img { animation: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .floats, .menu-nav, .cta-band, .hero__scroll { display: none !important; }
  body { background: #fff; color: #000; }
}


/* =========================================================================
   Utility classes replacing former inline style="" attributes.
   Needed so the Content-Security-Policy can drop 'unsafe-inline' from
   style-src without breaking layout.
   ========================================================================= */
.u-mt-xs { margin-top: .4rem; }
.u-mt-sm { margin-top: 1.6rem; }
.u-mt-md { margin-top: 1.8rem; }
.u-mt-lg { margin-top: 2.2rem; }
.u-mt-xl { margin-top: 2.4rem; }
.is-hidden { display: none; }

/* Accessible skip link: off-screen until keyboard-focused, then visible.
   (Previously an inline style pushed it off-screen permanently, so keyboard
   users could focus it but never see it.) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: .7rem 1.1rem;
  background: var(--charcoal);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: .9rem;
  text-decoration: none;
  border-bottom-right-radius: var(--radius);
}
.skip-link:focus {
  left: 0;
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}
