/* ============================================
   Karachi Darbar — Redesign Prototype
   Heritage / Generous / Unpretentious
   ============================================ */

:root {
  --tandoor: #B33A1A;
  --paprika: #8A2A12;
  --gold:    #C9962B;
  --gold-deep: #A57918;
  --ghee:    #E8B647;
  --cream:   #F4ECDB;
  --cream-2: #EFE4CC;
  --paper:   #FAF5EA;
  --charcoal:#1E1A17;
  --ash:     #6B6660;
  --line:    rgba(30, 26, 23, 0.12);
  --line-strong: rgba(30, 26, 23, 0.22);
  --white:   #FFFCF6;
  --shadow:  0 8px 30px rgba(179, 58, 26, 0.08);
  --shadow-lg: 0 24px 60px rgba(30, 26, 23, 0.14);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
}
[data-density="compact"] body { font-size: 15px; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); line-height: 1.04; font-weight: 600; letter-spacing: -0.02em; }
.h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.1; }
.h3 { font-size: clamp(1.2rem, 1.6vw, 1.6rem); line-height: 1.15; }

p { margin: 0 0 1em; text-wrap: pretty; }
a { color: inherit; text-decoration: none; cursor: pointer; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; color: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

.center { text-align: center; margin-top: 32px; }
.kicker {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--tandoor);
  padding: 6px 0;
  border-top: 1px solid var(--tandoor);
  margin-bottom: 18px;
}
.kicker--gold { color: var(--gold-deep); border-top-color: var(--gold-deep); }
.kicker--cream { color: var(--ghee); border-top-color: var(--ghee); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--ash); max-width: 60ch; }
.lead--cream { color: rgba(244, 236, 219, 0.85); }

/* ─── SSL banner ─── */
.ssl-banner {
  background: var(--charcoal); color: var(--cream);
  font-size: 12px; padding: 7px 16px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  letter-spacing: 0.01em;
}
.ssl-banner__lock { color: #4ade80; }

/* ─── Nav ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 245, 234, 0);
  backdrop-filter: blur(0);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  border-bottom: 1px solid transparent;
}
.nav--solid {
  background: rgba(250, 245, 234, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.home .nav { background: rgba(30, 26, 23, 0.55); border-bottom-color: transparent; }
.home .nav.nav--solid { background: rgba(250, 245, 234, 0.94); }
.home .nav:not(.nav--solid) .nav__link,
.home .nav:not(.nav--solid) .kd-wordmark__name,
.home .nav:not(.nav--solid) .kd-wordmark__est { color: var(--cream); }
.home .nav:not(.nav--solid) .btn--ghost { color: var(--cream); border-color: rgba(244, 236, 219, 0.5); }

.nav__inner {
  max-width: 1340px; margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; gap: 32px;
}
.nav__brand { display: flex; }
.kd-wordmark { display: flex; align-items: center; gap: 12px; }
.kd-wordmark__name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.1rem; letter-spacing: -0.01em; line-height: 1.05; }
.kd-wordmark__est { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ash); margin-top: 2px; }

.nav__links { display: flex; gap: 22px; margin-left: auto; }
.nav__link { font-size: 14px; font-weight: 500; color: var(--charcoal); position: relative; padding: 6px 0; }
.nav__link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--tandoor); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav__link:hover::after, .nav__link--active::after { transform: scaleX(1); }
.nav__link--active { color: var(--tandoor); }

.nav__cta { display: flex; gap: 10px; align-items: center; }
.nav__burger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.nav__burger span { width: 22px; height: 2px; background: var(--charcoal); display: block; border-radius: 2px; }
.home .nav:not(.nav--solid) .nav__burger span { background: var(--cream); }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta .btn:nth-child(1) { display: none; }
  .nav__burger { display: flex; }
}
.nav__mobile {
  background: var(--paper); border-top: 1px solid var(--line);
  display: flex; flex-direction: column; padding: 8px 20px 16px;
}
.nav__mlink { padding: 12px 0; font-weight: 500; border-bottom: 1px solid var(--line); }
.nav__mlink.is-active { color: var(--tandoor); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 9px 14px; font-size: 13px; }
.btn--lg { padding: 16px 26px; font-size: 15px; }
.btn--primary { background: var(--tandoor); color: var(--cream); }
.btn--primary:hover { background: var(--paprika); }
.btn--gold { background: var(--gold); color: var(--charcoal); }
.btn--gold:hover { background: var(--ghee); }
.btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--cream); border-color: var(--charcoal); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }

/* ─── Hero ─── */
.hero { position: relative; min-height: clamp(620px, 92vh, 880px); display: flex; align-items: flex-end; color: var(--cream); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.82) contrast(1.05) saturate(1.05); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 15% 70%, rgba(30, 26, 23, 0.85), transparent 60%),
    linear-gradient(180deg, rgba(30, 26, 23, 0.55) 0%, rgba(30, 26, 23, 0.2) 35%, rgba(30, 26, 23, 0.75) 100%);
}
.hero__content { position: relative; padding: 56px 0 84px; max-width: 1240px; margin: 0 auto; width: 100%; padding-left: 32px; padding-right: 32px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ghee); margin-bottom: 22px;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ghee); box-shadow: 0 0 0 4px rgba(232, 182, 71, 0.18); }

.hero__h1 { font-size: clamp(3rem, 7vw, 6rem); line-height: 0.98; font-weight: 600; letter-spacing: -0.025em; max-width: 18ch; }
.hero__h1 em { font-style: italic; color: var(--ghee); font-weight: 500; }
.hero__sub { margin-top: 24px; font-size: clamp(1.1rem, 1.5vw, 1.35rem); color: rgba(244, 236, 219, 0.9); max-width: 56ch; }
.hero__sub strong { color: var(--cream); font-weight: 600; }
.hero__cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__meta { margin-top: 56px; display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.hero__div { width: 1px; height: 32px; background: rgba(244, 236, 219, 0.25); }
.stat__n { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 600; color: var(--cream); letter-spacing: -0.01em; }
.stat__l { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244, 236, 219, 0.7); margin-top: 2px; }

/* ─── Section primitives ─── */
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section--cream { background: var(--cream); }
.sec-head { max-width: 60ch; margin-bottom: 48px; }
.sec-head__sub { color: var(--ash); margin-top: 12px; }

/* ─── Signature cards ─── */
.sig-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.sig-grid--menu { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .sig-grid, .sig-grid--menu { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sig-grid, .sig-grid--menu { grid-template-columns: 1fr; } }

.sig {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.sig:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.sig__img { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.sig__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.sig:hover .sig__img img { transform: scale(1.04); }
.sig__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.sig__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.sig__name { font-size: 1.15rem; font-weight: 600; }
.sig__price { font-variant-numeric: tabular-nums; font-size: 12.5px; letter-spacing: 0.04em; color: var(--ash); white-space: nowrap; }
.sig__price b { color: var(--tandoor); font-size: 1.05rem; font-weight: 700; letter-spacing: 0; }
.sig__desc { color: var(--ash); font-size: 14px; margin-top: 10px; margin-bottom: 0; line-height: 1.45; }
.dish-tag {
  display: inline-block; margin-top: 12px; align-self: flex-start;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid var(--gold); color: var(--gold-deep); border-radius: 999px;
}

/* ─── Central kitchen story ─── */
.kitchen { background: var(--charcoal); color: var(--cream); padding: clamp(72px, 10vw, 128px) 0; position: relative; overflow: hidden; }
.kitchen::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.kitchen__grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
}
@media (max-width: 900px) { .kitchen__grid { grid-template-columns: 1fr; gap: 48px; } }
.kitchen__num { font-family: 'Fraunces', serif; font-size: clamp(5rem, 11vw, 9rem); font-weight: 600; line-height: 0.9; color: var(--gold); letter-spacing: -0.04em; }
.kitchen__label { font-family: 'Fraunces', serif; font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin-top: 8px; }
.kitchen__copy { color: rgba(244, 236, 219, 0.78); margin-top: 24px; max-width: 50ch; }
.kitchen__copy strong { color: var(--ghee); font-weight: 600; }
.kitchen__pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: rgba(232, 182, 71, 0.1); color: var(--ghee); font-size: 12px; letter-spacing: 0.06em; }
.kitchen__pill .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2); animation: pulse 1.4s ease-in-out infinite; }
.kitchen__counter { margin-top: 24px; }
.counter { border: 1px solid rgba(244, 236, 219, 0.18); border-radius: 16px; padding: 28px; background: rgba(244, 236, 219, 0.04); }
.counter__digits { font-family: 'Fraunces', serif; font-variant-numeric: tabular-nums; font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 600; color: var(--cream); letter-spacing: -0.02em; }
.counter__label { font-size: 13px; letter-spacing: 0.06em; color: rgba(244, 236, 219, 0.6); margin-top: 4px; }
.kitchen__legend { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; margin-top: 28px; }
.kitchen__legend > div { font-size: 13px; color: rgba(244, 236, 219, 0.7); padding-top: 10px; border-top: 1px solid rgba(244, 236, 219, 0.14); }
.kitchen__legend b { display: block; font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--cream); font-weight: 600; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ─── Founder block ─── */
.founder, .founder--story { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .founder, .founder--story { grid-template-columns: 1fr; gap: 32px; } }
.founder__photo { aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; }
.founder__placeholder {
  width: 100%; height: 100%; background: var(--cream); border: 1px solid var(--line-strong);
  display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; gap: 12px;
  background-image: repeating-linear-gradient(45deg, transparent 0 12px, rgba(30,26,23,0.04) 12px 13px);
  border-radius: 18px;
}
.founder__placeholder--lg { min-height: 540px; }
.ph__label { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--charcoal); }
.ph__note { font-size: 12px; letter-spacing: 0.06em; color: var(--ash); text-align: center; max-width: 26ch; }
.pullquote { font-family: 'Fraunces', serif; font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.25; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 24px; quotes: none; padding-left: 24px; border-left: 2px solid var(--gold); }
.pullquote--lg { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.pullquote em { font-style: italic; color: var(--tandoor); }
.pullquote strong { font-weight: 600; }
.founder__rest { color: var(--ash); max-width: 60ch; margin-bottom: 24px; }
.founder__rest--lg { font-size: 1.1rem; }

/* ─── Karachi Grill bridge (home) ─── */
.grill-bridge {
  background: var(--charcoal); color: var(--cream);
  padding: clamp(72px, 10vw, 128px) 0;
  position: relative; overflow: hidden;
}
.grill-bridge::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.grill-bridge::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.grill-bridge__grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 900px) { .grill-bridge__grid { grid-template-columns: 1fr; gap: 40px; } }
.grill-bridge__photo {
  position: relative; border-radius: 18px; overflow: hidden;
  aspect-ratio: 5/4; box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.grill-bridge__photo img { width: 100%; height: 100%; object-fit: cover; }
.grill-bridge__photo-cap {
  position: absolute; left: 14px; bottom: 14px;
  font-size: 12px; letter-spacing: 0.06em;
  padding: 7px 12px; background: rgba(30,26,23,0.78); color: var(--cream);
  border-radius: 999px; backdrop-filter: blur(6px);
  display: inline-flex; align-items: center; gap: 8px;
}
.grill-bridge__photo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ghee); box-shadow: 0 0 0 3px rgba(232, 182, 71, 0.2); }

.grill-bridge__h {
  color: var(--cream);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 20px;
}
.grill-bridge__h em { color: var(--ghee); font-style: italic; font-weight: 500; }
.grill-bridge__lead {
  color: rgba(244, 236, 219, 0.78);
  font-size: 1.05rem;
  max-width: 50ch;
}
.grill-bridge__list {
  list-style: none; padding: 0; margin: 28px 0;
  display: flex; flex-direction: column; gap: 10px;
}
.grill-bridge__list li {
  font-size: 14px;
  color: rgba(244, 236, 219, 0.85);
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(244, 236, 219, 0.12);
}
.grill-bridge__list li:last-child { border-bottom: 1px solid rgba(244, 236, 219, 0.12); }
.grill-bridge__list .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.grill-bridge__list a { color: var(--ghee); border-bottom: 1px solid rgba(232, 182, 71, 0.4); }
.grill-bridge__list a:hover { color: var(--cream); }
.grill-bridge__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.grill-bridge .btn--ghost { color: var(--cream); border-color: rgba(244, 236, 219, 0.4); }
.grill-bridge .btn--ghost:hover { background: rgba(244, 236, 219, 0.08); border-color: var(--cream); }

/* ─── Day-part rhythm strip ─── */
.daypart { padding: clamp(72px, 10vw, 128px) 0; }
.dp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .dp-grid { grid-template-columns: 1fr; } }
.dp {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.dp:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.dp__img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.dp__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dp:hover .dp__img img { transform: scale(1.05); }
.dp__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,26,23,0) 50%, rgba(30,26,23,0.65) 100%); }
.dp__tag {
  position: absolute; left: 14px; bottom: 14px;
  font-family: 'Fraunces', serif; font-variant-numeric: tabular-nums;
  font-size: 12px; letter-spacing: 0.16em; color: var(--cream);
  padding: 5px 10px; background: rgba(30,26,23,0.55); border-radius: 999px;
  backdrop-filter: blur(6px);
}
.dp__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.dp__kicker { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tandoor); font-weight: 600; }
.dp__h { font-family: 'Fraunces', serif; font-size: 1.35rem; font-weight: 600; line-height: 1.2; }
.dp__list { list-style: none; padding: 0; margin: 6px 0 0; }
.dp__list li { display: flex; align-items: baseline; gap: 8px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.dp__list li:last-child { border-bottom: none; }
.dp__name { font-weight: 500; }
.dp__dots { flex: 1; height: 1px; border-bottom: 1px dotted var(--line-strong); transform: translateY(-3px); }
.dp__price { font-variant-numeric: tabular-nums; font-size: 12.5px; color: var(--ash); white-space: nowrap; }
.dp__price b { color: var(--tandoor); font-weight: 700; font-size: 14px; }
.dp__note { font-size: 13px; color: var(--ash); margin: 12px 0 0; padding-top: 14px; border-top: 1px solid var(--line); font-style: italic; line-height: 1.45; }

/* ─── UGC / dining-room grid ─── */
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
@media (max-width: 900px) { .ugc-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }
.ugc { margin: 0; position: relative; border-radius: 16px; overflow: hidden; background: var(--charcoal); }
.ugc img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s ease; }
.ugc:hover img { transform: scale(1.06); filter: brightness(1.05); }
.ugc--tall { grid-row: span 2; }
.ugc--wide { grid-column: span 2; }
@media (max-width: 900px) { .ugc--wide { grid-column: span 2; } .ugc--tall { grid-row: span 1; } }
.ugc figcaption { position: absolute; left: 12px; bottom: 12px; right: 12px; pointer-events: none; }
.ugc__pill {
  display: inline-block; font-size: 11px; letter-spacing: 0.08em;
  padding: 5px 10px; background: rgba(255,252,246,0.92); color: var(--charcoal);
  border-radius: 999px; backdrop-filter: blur(6px); font-weight: 500;
}
.ugc__note {
  font-size: 13px; color: var(--ash); margin-top: 24px;
  text-align: center; max-width: 70ch; margin-left: auto; margin-right: auto;
  font-style: italic;
}

/* Founder photo \u2014 real photo variant */
.founder__photo--real { position: relative; }
.founder__photo--real img { width: 100%; height: 100%; object-fit: cover; }
.founder__photo-cap {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  font-size: 12px; letter-spacing: 0.06em;
  padding: 8px 12px; background: rgba(255,252,246,0.92); color: var(--charcoal);
  border-radius: 8px; backdrop-filter: blur(6px); display: inline-flex; align-items: center; gap: 8px;
  width: max-content; max-width: 100%;
}
.founder__photo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--tandoor); }

/* ─── Branch finder teaser ─── */
.branch-teaser { padding: clamp(72px, 10vw, 128px) 0; background: var(--paper); }
.branch-teaser__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .branch-teaser__grid { grid-template-columns: 1fr; gap: 40px; } }

.branch-prev {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 22px; box-shadow: var(--shadow);
}
.branch-prev__head { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.dot--live { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.18); }
.branch-prev__row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line); cursor: pointer;
}
.branch-prev__row:hover .branch-prev__name { color: var(--tandoor); }
.branch-prev__name { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600; transition: color .2s; }
.branch-prev__addr { font-size: 13px; color: var(--ash); margin-top: 2px; }
.branch-prev__more { width: 100%; margin-top: 14px; padding: 14px; background: var(--cream); border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; color: var(--tandoor); }
.badge { display: inline-flex; align-items: center; padding: 4px 9px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 999px; background: var(--cream); color: var(--ash); }
.badge--24 { background: var(--charcoal); color: var(--ghee); }
.badge--gold { background: var(--gold); color: var(--charcoal); }

/* ─── Press strip ─── */
.press-strip { background: var(--cream); padding: 56px 0; }
.press-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 980px) { .press-strip__inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .press-strip__inner { grid-template-columns: 1fr; } }
.press-quote { margin: 0; padding-top: 18px; border-top: 1px solid var(--gold); }
.press-quote blockquote { font-family: 'Fraunces', serif; font-size: 1.05rem; line-height: 1.35; margin: 0 0 12px; }
.press-quote figcaption { font-size: 12px; letter-spacing: 0.06em; color: var(--ash); }

/* ─── Footer CTA ─── */
.footer-cta { background: var(--tandoor); color: var(--cream); padding: clamp(60px, 8vw, 100px) 0; position: relative; overflow: hidden; }
.footer-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 24px, rgba(255,255,255,0.02) 24px 25px);
}
.footer-cta__inner { position: relative; text-align: center; }
.footer-cta__h { color: var(--cream); margin-bottom: 28px; }
.footer-cta__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.footer-cta .btn--ghost { color: var(--cream); border-color: rgba(244, 236, 219, 0.5); }
.footer-cta .btn--ghost:hover { background: rgba(244, 236, 219, 0.1); border-color: var(--cream); }

/* ─── Footer ─── */
.footer { background: var(--charcoal); color: rgba(244, 236, 219, 0.7); padding: 64px 0 28px; }
.footer__top { max-width: 1240px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1.3fr 2fr; gap: 64px; }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr; gap: 40px; } }
.footer .kd-wordmark__name { color: var(--cream); }
.footer .kd-wordmark__est { color: rgba(244, 236, 219, 0.55); }
.footer__tag { margin-top: 18px; font-size: 14px; max-width: 40ch; line-height: 1.5; color: rgba(244, 236, 219, 0.6); }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 720px) { .footer__cols { grid-template-columns: repeat(2, 1fr); } }
.footer__cols h6 { font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.footer__cols a { display: block; padding: 6px 0; font-size: 14px; color: rgba(244, 236, 219, 0.7); }
.footer__cols a:hover { color: var(--cream); }
.footer__bottom { max-width: 1240px; margin: 48px auto 0; padding: 24px 32px 0; border-top: 1px solid rgba(244, 236, 219, 0.12); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; }
.footer__certs { display: flex; gap: 8px; }
.cert { font-size: 10.5px; padding: 4px 8px; border: 1px solid rgba(244, 236, 219, 0.25); border-radius: 999px; color: rgba(244, 236, 219, 0.7); letter-spacing: 0.08em; }
.cert--lg { padding: 8px 14px; font-size: 12px; }

/* ─── WhatsApp FAB ─── */
.wa-fab {
  position: fixed; right: 28px; bottom: 28px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 999px;
  background: #25D366; color: white;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0,0,0,0.1);
}
.wa-fab:hover { background: #1eb453; }
.wa-fab span { line-height: 1; }
@media (max-width: 560px) { .wa-fab span { display: none; } .wa-fab { padding: 14px; } }

/* ─── STORY page ─── */
.story__hero {
  background:
    linear-gradient(180deg, rgba(30, 26, 23, 0.78), rgba(30, 26, 23, 0.55)),
    url('assets/karahi-tikka.webp') center/cover;
  color: var(--cream); padding: clamp(96px, 14vw, 180px) 0 clamp(64px, 9vw, 120px);
}
.story__h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 1.05; max-width: 20ch; }

.timeline-section { padding: clamp(72px, 10vw, 128px) 0; background: var(--paper); }
.timeline { list-style: none; margin: 48px 0 0; padding: 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 132px; top: 6px; bottom: 6px; width: 1px; background: var(--line-strong); }
@media (max-width: 720px) { .timeline::before { left: 64px; } }
.tl { display: grid; grid-template-columns: 120px 24px 1fr; gap: 0 24px; padding: 24px 0; align-items: start; }
@media (max-width: 720px) { .tl { grid-template-columns: 56px 16px 1fr; } }
.tl__year { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 600; color: var(--tandoor); letter-spacing: -0.01em; }
@media (max-width: 720px) { .tl__year { font-size: 1.2rem; } }
.tl__dot { display: flex; justify-content: center; position: relative; padding-top: 10px; }
.tl__dot span { width: 12px; height: 12px; border-radius: 50%; background: var(--paper); border: 2px solid var(--gold); }
.tl--big .tl__dot span { width: 18px; height: 18px; background: var(--gold); border-color: var(--tandoor); box-shadow: 0 0 0 6px rgba(201, 150, 43, 0.18); }
.tl__h { font-size: 1.3rem; font-family: 'Fraunces', serif; font-weight: 600; margin-bottom: 6px; }
.tl--big .tl__h { font-size: 1.6rem; color: var(--tandoor); }
.tl__t { color: var(--ash); max-width: 60ch; margin: 0; }

.ayaz { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .ayaz { grid-template-columns: 1fr; gap: 40px; } }
.ayaz__quote { position: relative; padding-left: 40px; }
.big-quote { position: absolute; left: 0; top: -20px; font-family: 'Fraunces', serif; font-size: 6rem; color: var(--gold); line-height: 1; opacity: 0.8; }
.ayaz__quote p { font-family: 'Fraunces', serif; font-size: clamp(1.3rem, 2.2vw, 1.8rem); line-height: 1.35; }
.ayaz__attr { font-size: 14px; color: var(--ash); margin-top: 20px; line-height: 1.5; }
.ayaz__attr strong { color: var(--charcoal); font-weight: 600; }
.ayaz__side { display: grid; gap: 18px; }
.cert-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.cert-card h4 { font-family: 'Fraunces', serif; font-size: 1.2rem; margin-bottom: 14px; font-weight: 600; }
.cert-card p { font-size: 14px; color: var(--ash); margin: 0; }
.cert-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.cert-row .cert { background: var(--cream); color: var(--charcoal); border-color: var(--line-strong); }
.cert-card--accent { background: var(--tandoor); color: var(--cream); border: none; }
.cert-card--accent h4 { color: var(--ghee); }
.cert-card--accent p { color: rgba(244, 236, 219, 0.8); }

/* ─── MENU page ─── */
.menu__head { background: var(--cream); padding: clamp(96px, 12vw, 140px) 0 56px; }
.menu__chips { position: sticky; top: 64px; z-index: 30; background: var(--paper); border-bottom: 1px solid var(--line); padding: 14px 0; overflow-x: auto; }
.menu__chips-inner { display: flex; gap: 8px; white-space: nowrap; }
.chip { padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 500; background: transparent; color: var(--ash); border: 1px solid var(--line-strong); transition: all .15s ease; }
.chip:hover { color: var(--charcoal); border-color: var(--charcoal); }
.chip--active { background: var(--tandoor); color: var(--cream); border-color: var(--tandoor); }
.menu__body { padding: 56px 0 96px; }
.menu__cat { margin-bottom: 72px; }
.menu__cat-head { margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--line); display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.menu__cat-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.menu__cat-sub { color: var(--ash); font-size: 14px; margin: 0; }

.dishlist { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 64px; }
@media (max-width: 720px) { .dishlist { grid-template-columns: 1fr; } }
.dish { display: flex; align-items: baseline; gap: 12px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
[data-density="compact"] .dish { padding: 9px 0; }
.dish__name { flex: 0 0 auto; font-size: 15px; font-weight: 500; display: inline-flex; align-items: baseline; gap: 6px; }
.dish__dots { flex: 1; height: 1px; border-bottom: 1px dotted var(--line-strong); transform: translateY(-3px); }
.dish__price { font-variant-numeric: tabular-nums; font-size: 13px; color: var(--ash); white-space: nowrap; }
.dish__price b { color: var(--tandoor); font-weight: 700; font-size: 15px; margin-right: 2px; }
.dish__star { color: var(--gold); }
.dish--star .dish__name { color: var(--tandoor); font-weight: 600; }

/* ─── BRANCHES page ─── */
.branches__head { padding: clamp(96px, 12vw, 140px) 0 48px; background: var(--cream); border-bottom: 1px solid var(--line); }
.branches__toolbar { margin-top: 32px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.branches__count { font-size: 13px; color: var(--ash); margin-left: auto; }
.hint { margin-top: 12px; font-size: 13px; color: var(--ash); padding: 8px 12px; background: rgba(232, 182, 71, 0.15); border-left: 3px solid var(--gold); display: inline-block; border-radius: 0 8px 8px 0; }

.branches__list { padding: 48px 0 96px; }
.branch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .branch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .branch-grid { grid-template-columns: 1fr; } }
.branch {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 22px; cursor: pointer; transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
}
.branch:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--gold); }
.branch--flag { border-color: var(--gold); }
.branch--nearest { margin-bottom: 24px; background: linear-gradient(135deg, var(--tandoor), var(--paprika)); color: var(--cream); border: none; padding: 32px; }
.branch--nearest:hover { border-color: transparent; transform: translateY(-2px); }
.branch--nearest .branch__name, .branch--nearest .branch__addr, .branch--nearest .branch__emirate, .branch--nearest .branch__meta { color: var(--cream); }
.branch--nearest .branch__addr { color: rgba(244, 236, 219, 0.85); }
.branch--nearest .branch__emirate, .branch--nearest .branch__meta { color: rgba(244, 236, 219, 0.7); }
.branch__badge { display: inline-block; background: var(--ghee); color: var(--charcoal); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; margin-bottom: 14px; }
.branch__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.branch__emirate { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); margin-bottom: 4px; }
.branch__name { font-family: 'Fraunces', serif; font-size: 1.35rem; font-weight: 600; }
.branch__pill { display: flex; gap: 6px; flex-shrink: 0; flex-wrap: wrap; }
.branch__addr { font-size: 13.5px; color: var(--ash); margin-bottom: 14px; line-height: 1.45; }
.branch__meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--ash); }
.branch__meta span { display: inline-flex; align-items: center; gap: 5px; }
.branch__rating { margin-top: 10px; font-size: 12.5px; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 4px; }

/* ─── Branch sheet (modal) ─── */
.sheet { position: fixed; inset: 0; z-index: 70; background: rgba(30, 26, 23, 0.6); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 24px; animation: fadeIn .25s ease; }
.sheet__panel {
  background: var(--paper); border-radius: 22px; max-width: 720px; width: 100%; max-height: 90vh; overflow-y: auto;
  padding: 32px; position: relative; box-shadow: var(--shadow-lg); animation: slideUp .3s ease;
}
.sheet__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--cream); font-size: 24px; line-height: 1; color: var(--charcoal); }
.sheet__close:hover { background: var(--charcoal); color: var(--cream); }
.sheet__top { margin-bottom: 24px; }
.sheet__top .h2 { margin: 6px 0 12px; }
.sheet__map { margin: 0 0 24px; border-radius: 14px; overflow: hidden; }
.sheet__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
@media (max-width: 560px) { .sheet__grid { grid-template-columns: 1fr; } }
.field { display: flex; gap: 12px; padding: 14px; background: var(--white); border-radius: 12px; border: 1px solid var(--line); }
.field__icon { width: 32px; height: 32px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--tandoor); flex-shrink: 0; }
.field__label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash); margin-bottom: 2px; }
.field__value { font-size: 14px; }
.sheet__order { margin-bottom: 24px; }
.sheet__order h4 { font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); font-weight: 600; margin-bottom: 12px; }
.order-platforms { display: flex; gap: 8px; flex-wrap: wrap; }
.platform { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 500; }
.platform:hover { border-color: var(--charcoal); }
.platform__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--tandoor); }
.sheet__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.map-mock { position: relative; aspect-ratio: 16/9; background: #DBC8A4; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.map-mock--big { aspect-ratio: 4/3; }
.map-mock__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,26,23,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,26,23,0.07) 1px, transparent 1px),
    radial-gradient(ellipse 60% 40% at 30% 60%, rgba(74, 222, 128, 0.12), transparent 70%),
    radial-gradient(ellipse 40% 30% at 70% 40%, rgba(232, 182, 71, 0.15), transparent 70%);
  background-size: 32px 32px, 32px 32px, 100% 100%, 100% 100%;
}
.map-mock__pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(2.4); color: var(--tandoor); filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)); }
.map-mock__caption { position: absolute; left: 12px; bottom: 12px; font-size: 11px; padding: 5px 10px; background: rgba(255,252,246,0.9); border-radius: 999px; color: var(--ash); letter-spacing: 0.04em; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ─── CATERING ─── */
.catering__hero { background: var(--charcoal); color: var(--cream); padding: clamp(96px, 12vw, 140px) 0 clamp(64px, 9vw, 112px); position: relative; overflow: hidden; }
.catering__hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .catering__hero-grid { grid-template-columns: 1fr; } }
.catering__h { color: var(--cream); }
.catering__stats { display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap; }
.catering__cuts { position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; aspect-ratio: 1; }
.cut { border-radius: 14px; overflow: hidden; transform: rotate(-1deg); transition: transform .3s; }
.cut:hover { transform: rotate(0) scale(1.03); }
.cut img { width: 100%; height: 100%; object-fit: cover; }
.cut--1 { transform: rotate(-3deg) translateY(-12px); }
.cut--2 { transform: rotate(2deg); }
.cut--3 { transform: rotate(-1deg); }
.cut--4 { transform: rotate(3deg) translateY(12px); }

.pack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .pack-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pack-grid { grid-template-columns: 1fr; } }
.pack { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.pack__head h3 { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 600; }
.pack__sub { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ash); margin-top: 4px; }
.pack__price { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 600; color: var(--tandoor); letter-spacing: -0.01em; margin: 14px 0; }
.pack__price b { font-weight: 700; }
.pack ul { list-style: none; padding: 0; margin: 0; }
.pack li { padding: 8px 0; font-size: 13.5px; color: var(--ash); border-top: 1px dashed var(--line); }
.fine { font-size: 12px; color: var(--ash); margin-top: 24px; text-align: center; }

.catering__form-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .catering__form-grid { grid-template-columns: 1fr; } }
.reasons { list-style: none; padding: 0; margin: 28px 0 0; }
.reasons li { padding: 12px 0; border-top: 1px solid var(--line); font-size: 14px; display: flex; gap: 12px; align-items: flex-start; }
.reasons__dot { display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 8px; flex-shrink: 0; }

.form { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; gap: 18px; }
.form__row--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form__row--2 { grid-template-columns: 1fr; } }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; letter-spacing: 0.06em; color: var(--ash); text-transform: uppercase; font-weight: 600; }
.form input, .form select, .form textarea { padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--paper); font-size: 15px; color: var(--charcoal); text-transform: none; letter-spacing: 0; font-weight: 400; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--tandoor); outline-offset: -1px; border-color: transparent; }
.form__fine { font-size: 12px; color: var(--ash); margin-top: -6px; }
.form__success { text-align: center; padding: 32px 16px; }
.form__success-mark { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; background: var(--tandoor); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 32px; }
.form__success h3 { font-family: 'Fraunces', serif; font-size: 1.6rem; margin-bottom: 8px; }
.form__success p { color: var(--ash); margin-bottom: 24px; }

/* ─── KARACHI GRILL ─── */
.grill__hero { background: linear-gradient(135deg, var(--charcoal) 0%, #2d2520 100%); color: var(--cream); padding: clamp(96px, 12vw, 140px) 0 clamp(64px, 9vw, 112px); position: relative; }
.grill__hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.grill__h { color: var(--cream); }
.grill__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
@media (max-width: 900px) { .grill__grid { grid-template-columns: repeat(2, 1fr); } }
.grill__card { position: relative; border-radius: 16px; overflow: hidden; }
.grill__card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.grill__card:hover img { transform: scale(1.04); }
.grill__card--big { grid-column: span 2; grid-row: span 2; }
.grill__cap { position: absolute; bottom: 12px; left: 12px; right: 12px; color: var(--cream); font-size: 13px; padding: 8px 12px; background: rgba(30, 26, 23, 0.7); border-radius: 999px; backdrop-filter: blur(6px); text-align: center; }
.grill__info { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .grill__info { grid-template-columns: 1fr; } }
.grill__cta { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

/* ─── ORDER ─── */
.order__hero { padding: clamp(96px, 12vw, 140px) 0 56px; background: var(--cream); border-bottom: 1px solid var(--line); }
.order-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .order-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .order-grid { grid-template-columns: 1fr; } }
.ord {
  display: block; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.ord:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.ord__tag { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); margin-bottom: 14px; }
.ord__name { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.02em; }
.ord__desc { color: var(--ash); font-size: 14px; margin-bottom: 24px; }
.ord__cta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--tandoor); }
.order-callout { display: flex; align-items: center; gap: 32px; justify-content: space-between; flex-wrap: wrap; }

/* ─── PRESS ─── */
.press__hero { padding: clamp(96px, 12vw, 140px) 0 56px; background: var(--cream); border-bottom: 1px solid var(--line); }
.press-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 720px) { .press-cards { grid-template-columns: 1fr; } }
.press-card { margin: 0; padding: 36px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; position: relative; }
.press-card__num { font-family: 'Fraunces', serif; font-size: 12px; letter-spacing: 0.2em; color: var(--gold-deep); margin-bottom: 18px; }
.press-card blockquote { font-family: 'Fraunces', serif; font-size: 1.45rem; line-height: 1.3; font-weight: 500; margin: 0 0 24px; letter-spacing: -0.01em; }
.press-card figcaption { font-size: 13px; letter-spacing: 0.06em; color: var(--ash); padding-top: 14px; border-top: 1px solid var(--line); }
.press-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .press-stats { grid-template-columns: repeat(2, 1fr); } }
.bigstat { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 28px; }
.bigstat__n { font-family: 'Fraunces', serif; font-size: 2.6rem; font-weight: 600; color: var(--tandoor); letter-spacing: -0.02em; line-height: 1; }
.bigstat__l { font-family: 'Fraunces', serif; font-size: 1.1rem; margin-top: 10px; font-weight: 500; }
.bigstat__sub { font-size: 13px; color: var(--ash); margin-top: 8px; }

/* ─── Page transitions ─── */
.page-fade { animation: pageIn .3s ease; }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Compact density tweaks */
[data-density="compact"] .section { padding: clamp(56px, 8vw, 96px) 0; }
[data-density="compact"] .hero__content { padding-top: 40px; padding-bottom: 56px; }
[data-density="compact"] .sig__body { padding: 14px 14px 16px; }
[data-density="compact"] .sig__img { aspect-ratio: 16/10; }
