/* =========================================================
   DAAL CHAWAL — brand stylesheet
   Palette taken from the brand logo: brick red wordmark,
   terracotta wreath, warm cream ground, gold accents.
   ========================================================= */

:root {
  color-scheme: light;

  /* --- Brand colour (from the logo) --- */
  --brick:        #8E2B21;
  --brick-deep:   #6C1E17;
  --brick-soft:   #A8402F;
  --rust:         #C0522E;
  --clay:         #D9713F;
  --amber:        #E0A458;
  --amber-soft:   #F3DCB2;
  --herb:         #5F7C3C;

  /* --- Warm neutrals (hue-biased toward the accent, never grey) --- */
  --ground:       #FBF3E7;
  --ground-sunk:  #F5E7D2;
  --ground-deep:  #EEDBBF;
  --paper:        #FFFCF6;
  --ink:          #33201A;
  --ink-soft:     #6E4C3C;
  --ink-faint:    #96745F;
  --line:         #E4CFAF;
  --line-soft:    #EFE0C8;

  /* --- Type --- */
  --display: "Baloo 2", "Trebuchet MS", system-ui, sans-serif;
  --script:  "Caveat", "Segoe Script", cursive;
  --body:    "Karla", "Helvetica Neue", Arial, sans-serif;
  --urdu:    "Noto Nastaliq Urdu", "Jameel Noori Nastaleeq", serif;

  /* --- Scale --- */
  --step--1: clamp(0.80rem, 0.78rem + 0.1vw, 0.86rem);
  --step-0:  clamp(1rem, 0.97rem + 0.15vw, 1.08rem);
  --step-1:  clamp(1.18rem, 1.1rem + 0.4vw, 1.4rem);
  --step-2:  clamp(1.45rem, 1.3rem + 0.75vw, 1.9rem);
  --step-3:  clamp(1.85rem, 1.55rem + 1.5vw, 2.7rem);
  --step-4:  clamp(2.4rem, 1.8rem + 3vw, 4.1rem);

  --radius:  14px;
  --shadow-soft: 0 1px 2px rgba(51, 32, 26, .05), 0 8px 24px -12px rgba(51, 32, 26, .18);
  --shadow-lift: 0 2px 4px rgba(51, 32, 26, .06), 0 20px 40px -20px rgba(51, 32, 26, .32);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { overflow-x: clip; }

body {
  margin: 0;
  background-color: var(--ground);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(224, 164, 88, .13), transparent 42%),
    radial-gradient(circle at 88% 2%, rgba(192, 82, 46, .10), transparent 38%);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

img, svg { max-width: 100%; }
a { color: var(--brick); text-decoration-thickness: 1px; text-underline-offset: 3px; }
button { font: inherit; color: inherit; }

:where(h1, h2, h3, h4) {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
  color: var(--brick);
}

::selection { background: var(--amber-soft); color: var(--brick-deep); }

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

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--brick); color: var(--paper);
  padding: 10px 16px; border-radius: 0 0 10px 10px; font-weight: 700;
  transition: top .18s ease;
}
.skip:focus { top: 0; }

.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout primitives ---------- */

.wrap {
  width: min(1140px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding-block: clamp(56px, 8vw, 104px); }
.section--sunk { background: var(--ground-sunk); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px 32px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.section-head p { max-width: 46ch; margin: 10px 0 0; color: var(--ink-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 12px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--amber), var(--rust));
}

.h2 { font-size: var(--step-3); }
.lead { font-size: var(--step-1); line-height: 1.5; color: var(--ink-soft); max-width: 54ch; }

.urdu {
  font-family: var(--urdu);
  direction: rtl;
  line-height: 2.1;
  font-weight: 400;
  color: var(--ink-soft);
}

.script { font-family: var(--script); font-weight: 700; }

/* ---------- Buttons ---------- */

.btn {
  --btn-bg: var(--brick);
  --btn-fg: #FFF7EA;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  border: 2px solid var(--btn-bg);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--step-0);
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--brick); border-color: var(--brick); }
.btn--ghost:hover { background: rgba(142, 43, 33, .07); }
.btn--wa { --btn-bg: #1F7A4D; border-color: #1F7A4D; }
.btn--amber { --btn-bg: var(--amber); --btn-fg: var(--brick-deep); border-color: var(--amber); }
.btn--sm { padding: 9px 18px; font-size: var(--step--1); }
.btn--block { width: 100%; }

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 60;
  background: rgba(251, 243, 231, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.header[data-stuck="true"] {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(51, 32, 26, .6);
}
.header__bar {
  display: flex; align-items: center; gap: 16px;
  min-height: 72px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: inherit; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__name {
  font-family: var(--display); font-weight: 800; font-size: 1.16rem;
  letter-spacing: .02em; line-height: 1; color: var(--brick); text-transform: uppercase;
}
.brand__tag {
  display: block; font-family: var(--script); font-size: .95rem;
  color: var(--rust); line-height: 1; margin-top: 3px; text-transform: none; letter-spacing: 0;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .header .brand__tag { display: none; }
}

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__list a {
  display: block; padding: 9px 13px; border-radius: 999px; white-space: nowrap;
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem;
}
.nav__list a:hover { background: rgba(192, 82, 46, .1); color: var(--brick); }

.header__actions { display: flex; align-items: center; gap: 10px; }

.cart-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px 10px 14px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-weight: 700; font-family: var(--display); cursor: pointer;
  transition: border-color .16s ease, transform .16s ease;
}
.cart-btn:hover { border-color: var(--rust); transform: translateY(-1px); }
.cart-btn svg { width: 20px; height: 20px; color: var(--brick); }
.cart-btn__count {
  min-width: 22px; height: 22px; padding-inline: 6px;
  display: grid; place-items: center;
  background: var(--brick); color: #FFF7EA;
  border-radius: 999px; font-size: .78rem; line-height: 1;
  font-variant-numeric: tabular-nums;
}

.burger {
  display: none;
  width: 46px; height: 46px; padding: 0;
  border: 2px solid var(--line); border-radius: 12px;
  background: var(--paper); cursor: pointer;
}
.burger span {
  display: block; width: 20px; height: 2px; margin: 4px auto;
  background: var(--brick); border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.header[data-open="true"] .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header[data-open="true"] .burger span:nth-child(2) { opacity: 0; }
.header[data-open="true"] .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Kitchen status pill ---------- */

.status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 11px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: var(--step--1); font-weight: 600; color: var(--ink-soft);
}
.status__dot {
  width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: var(--ink-faint);
  box-shadow: 0 0 0 0 rgba(95, 124, 60, .5);
}
.status[data-open="true"] .status__dot { background: var(--herb); animation: pulse 2.4s ease-out infinite; }
.status[data-open="false"] .status__dot { background: var(--clay); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(95, 124, 60, .45); }
  70%  { box-shadow: 0 0 0 8px rgba(95, 124, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(95, 124, 60, 0); }
}

/* ---------- Hero ---------- */

.hero { padding-block: clamp(40px, 6vw, 76px) clamp(20px, 3vw, 40px); }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero h1 {
  font-size: var(--step-4);
  color: var(--brick-deep);
  margin-bottom: 6px;
}
.hero h1 em {
  font-style: normal;
  color: var(--rust);
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: .04em; height: .16em;
  background: var(--amber-soft);
  border-radius: 999px;
  z-index: -1;
}
.hero__urdu { font-size: clamp(1.05rem, .9rem + .8vw, 1.5rem); margin: 14px 0 0; }
.hero__lead { margin: 18px 0 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }
.chips li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px 7px 11px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: var(--step--1); font-weight: 600; color: var(--ink-soft);
}
.chips svg { width: 15px; height: 15px; color: var(--herb); flex: none; }

/* Hero plate composition */
.hero__art { position: relative; display: grid; place-items: center; }
.hero__ring {
  position: absolute; inset: 0; margin: auto;
  width: min(100%, 460px); aspect-ratio: 1;
  color: var(--rust);
  opacity: .5;
  animation: spin 90s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__plate {
  position: relative;
  width: min(84%, 380px); aspect-ratio: 1;
}
.hero__photo {
  display: block;
  width: 100%; height: auto; aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ground-deep);
  box-shadow:
    0 0 0 10px var(--paper),
    0 0 0 12px var(--amber-soft),
    0 34px 44px -22px rgba(110, 48, 30, .6);
}

.hero__badge {
  position: absolute; right: 2%; bottom: 8%;
  background: var(--brick); color: #FFF7EA;
  border-radius: 999px;
  padding: 13px 20px;
  box-shadow: var(--shadow-lift);
  text-align: center;
  transform: rotate(-6deg);
}
.hero__badge b { display: block; font-family: var(--display); font-size: 1.35rem; line-height: 1; }
.hero__badge span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }

/* ---------- Ticker ---------- */

.ticker {
  overflow: hidden;
  border-block: 2px solid var(--line);
  background: var(--paper);
  padding-block: 11px;
  margin-block: clamp(30px, 5vw, 56px) 0;
}
.ticker__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.ticker__track > span {
  display: flex; align-items: center; gap: 26px;
  padding-right: 26px;
  font-family: var(--display); font-weight: 700; font-size: .95rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--rust);
  white-space: nowrap;
}
.ticker b { font-family: var(--urdu); font-size: 1.05rem; letter-spacing: 0; color: var(--ink-soft); font-weight: 400; }
.ticker i { font-style: normal; color: var(--amber); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Menu ---------- */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px);
}
@media (max-width: 1020px) { .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .menu-grid { grid-template-columns: minmax(0, 1fr); } }

.dish {
  position: relative;
  display: flex; flex-direction: column;
  padding: 18px 18px 22px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.dish:hover, .dish:focus-within {
  background: var(--paper);
  border-color: var(--line);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.dish__plate {
  display: block;
  width: 100%; max-width: 210px; height: auto; aspect-ratio: 1; margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ground-deep);
  /* two rings read as a plate rim, then the shadow lifts it off the cloth */
  box-shadow:
    0 0 0 7px var(--paper),
    0 0 0 8px var(--line-soft),
    0 18px 26px -14px rgba(110, 48, 30, .5);
  transition: transform .3s cubic-bezier(.2,.8,.3,1);
}
.dish:hover .dish__plate { transform: scale(1.04) rotate(-2deg); }

.dish__name {
  font-size: var(--step-2);
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.dish__urdu { font-size: 1.15rem; margin: 2px 0 0; }
.dish__desc { margin: 9px 0 0; font-size: .95rem; color: var(--ink-soft); }

.tag {
  display: inline-block;
  font-family: var(--body); font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 6px;
  background: var(--herb); color: #FBF8EF;
  vertical-align: middle;
}
.tag--amber { background: var(--amber); color: var(--brick-deep); }

.sizes { display: flex; gap: 7px; margin: 16px 0 12px; flex-wrap: wrap; }
.dish .sizes { margin-top: auto; }
.size {
  padding: 7px 13px;
  border: 1.5px solid var(--line);
  background: transparent;
  border-radius: 999px;
  font-size: .82rem; font-weight: 700;
  cursor: pointer;
  transition: all .14s ease;
}
.size:hover { border-color: var(--clay); }
.size[aria-pressed="true"] { background: var(--brick); border-color: var(--brick); color: #FFF7EA; }

.leader { display: flex; align-items: baseline; gap: 8px; font-size: .88rem; color: var(--ink-faint); }
.leader__dots { flex: 1 1 auto; border-bottom: 2px dotted var(--line); transform: translateY(-4px); min-width: 16px; }
.price {
  font-family: var(--display); font-weight: 800; font-size: 1.22rem;
  color: var(--brick); font-variant-numeric: tabular-nums;
}
.dish .btn { margin-top: 16px; }

.menu-note {
  margin-top: clamp(28px, 4vw, 44px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px;
  padding: 18px 22px;
  border: 2px dashed var(--line);
  border-radius: 16px;
  color: var(--ink-soft); font-size: .95rem;
}
.menu-note strong { color: var(--brick); }

/* ---------- Deals (the one loud band) ---------- */

.deals {
  background: var(--brick);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(224, 164, 88, .22), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(217, 113, 63, .3), transparent 50%);
  color: #FBEFDD;
}
.deals h2, .deals .h2 { color: #FFF7EA; }
.deals .eyebrow { color: var(--amber); }
.deals .section-head p { color: rgba(251, 239, 221, .78); }

.ticket-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.ticket {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex; flex-direction: column;
  isolation: isolate;
}
/* perforated edge — a real ticket device, not a card shadow */
.ticket::before, .ticket::after {
  content: "";
  position: absolute; top: 50%; width: 22px; height: 22px;
  background: var(--brick);
  border-radius: 50%;
  transform: translateY(-50%);
}
.ticket::before { left: -11px; }
.ticket::after  { right: -11px; }

.ticket__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.ticket h3 { font-size: var(--step-2); }
.ticket__save {
  font-family: var(--script); font-size: 1.3rem; color: var(--herb); font-weight: 700;
  transform: rotate(-4deg);
}
.ticket__list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 9px; }
.ticket__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.ticket__list svg { width: 16px; height: 16px; color: var(--herb); flex: none; margin-top: 4px; }
.ticket__foot {
  margin-top: auto; padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.ticket__price { font-family: var(--display); font-weight: 800; font-size: 2rem; color: var(--brick); line-height: 1; font-variant-numeric: tabular-nums; }
.ticket__price s { font-size: 1rem; color: var(--ink-faint); font-weight: 600; margin-left: 8px; }

/* ---------- Steps ---------- */

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 12px; }
.step__num {
  font-family: var(--display); font-weight: 800; font-size: 3.2rem; line-height: 1;
  color: var(--amber-soft);
  display: block; margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.step h3 { font-size: var(--step-1); margin-bottom: 8px; }
.step p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* ---------- Story / kitchen timeline ---------- */

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 63px; top: 12px; bottom: 12px;
  border-left: 2px dashed var(--line);
}
.timeline li { display: grid; grid-template-columns: 62px 1fr; gap: 24px; padding-block: 14px; position: relative; }
.timeline time {
  font-family: var(--display); font-weight: 700; font-size: .92rem;
  color: var(--rust); text-align: right; padding-top: 2px;
  font-variant-numeric: tabular-nums;
}
.timeline li > div { position: relative; padding-left: 20px; }
.timeline li > div::before {
  content: ""; position: absolute; left: -7px; top: 9px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ground); border: 2.5px solid var(--rust);
}
.timeline h3 { font-size: 1.06rem; margin-bottom: 3px; }
.timeline p { margin: 0; font-size: .93rem; color: var(--ink-soft); }

.story-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: var(--shadow-soft);
}
.story-card .script { font-size: 1.7rem; color: var(--rust); display: block; margin-bottom: 6px; }
.story-card p { color: var(--ink-soft); }
.story-card p:last-of-type { margin-bottom: 0; }
.signature {
  margin-top: 22px; padding-top: 20px; border-top: 1px dashed var(--line);
  display: flex; align-items: center; gap: 14px;
}
.signature__mark { width: 46px; height: 46px; flex: none; }
.signature b { display: block; font-family: var(--display); color: var(--brick); }
.signature span { font-size: .86rem; color: var(--ink-faint); }

/* ---------- Reviews ---------- */

.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.review {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 26px 24px 22px;
  position: relative;
}
.review__quote {
  font-family: var(--display); font-size: 3.6rem; line-height: .6;
  color: var(--amber-soft); display: block; margin-bottom: 10px;
}
.review p { margin: 0 0 18px; font-size: 1rem; }
.review footer { display: flex; align-items: center; gap: 12px; font-size: .88rem; color: var(--ink-faint); }
.review__avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--amber-soft); color: var(--brick-deep);
  font-family: var(--display); font-weight: 800;
}
.review footer b { display: block; color: var(--ink); font-family: var(--display); font-size: .98rem; }
.stars { color: var(--amber); letter-spacing: 2px; font-size: .9rem; }

/* ---------- Delivery panel ---------- */

.panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(28px, 4vw, 52px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
}
.areas { display: flex; flex-wrap: wrap; gap: 9px; margin: 20px 0 0; padding: 0; list-style: none; }
.areas li {
  padding: 8px 15px; border-radius: 999px;
  background: var(--ground-sunk); border: 1px solid var(--line-soft);
  font-size: .9rem; font-weight: 600;
}
.hours { list-style: none; margin: 20px 0 0; padding: 0; }
.hours li {
  display: flex; align-items: baseline; gap: 10px;
  padding-block: 13px;
  border-bottom: 1px dashed var(--line-soft);
}
.hours li:last-child { border-bottom: 0; }
.hours b { font-family: var(--display); font-size: 1.02rem; }
.hours .leader__dots { border-bottom-width: 2px; }
.hours span { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink-soft); }

/* ---------- FAQ ---------- */

.faq { max-width: 760px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding-block: 6px;
}
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding-block: 18px;
  cursor: pointer;
  font-family: var(--display); font-weight: 700; font-size: var(--step-1);
  color: var(--brick);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem; line-height: 1; color: var(--rust); flex: none;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0 0 20px; color: var(--ink-soft); max-width: 62ch; }

/* ---------- Order form ---------- */

.order-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 700; font-size: .9rem; }
.field input, .field select, .field textarea {
  font: inherit;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--clay); }
.field textarea { resize: vertical; min-height: 84px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__note { font-size: .84rem; color: var(--ink-faint); margin: 0; }

.callout {
  background: var(--ground-deep);
  border-radius: 20px;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--line);
}
.callout h3 { font-size: var(--step-2); margin-bottom: 10px; }
.callout p { color: var(--ink-soft); }
.contact-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 14px; }
.contact-list a { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); font-weight: 600; }
.contact-list a:hover { color: var(--brick); }
.contact-list svg { width: 20px; height: 20px; color: var(--rust); flex: none; }

/* ---------- Footer ---------- */

.footer {
  background: var(--brick-deep);
  color: rgba(251, 239, 221, .82);
  padding-block: clamp(44px, 6vw, 68px) 28px;
}
.footer a { color: rgba(251, 239, 221, .82); text-decoration: none; }
.footer a:hover { color: #FFF7EA; text-decoration: underline; }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: 36px;
}
.footer h4 {
  color: var(--amber); font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; font-family: var(--body); font-weight: 700; margin-bottom: 14px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: .94rem; }
.footer .brand__name { color: #FFF7EA; }
.footer .brand__tag { color: var(--amber); }
.footer__about { max-width: 34ch; margin: 16px 0 0; font-size: .93rem; }
.footer__bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(251, 239, 221, .16);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  font-size: .85rem; color: rgba(251, 239, 221, .6);
}
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(251, 239, 221, .28);
  transition: background-color .16s ease, transform .16s ease;
}
.social a:hover { background: rgba(251, 239, 221, .14); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }

/* ---------- Steam divider ---------- */

.divider { display: block; width: 100%; height: 26px; color: var(--line); }

/* ---------- Cart drawer ---------- */

.overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(51, 32, 26, .45);
  backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity .24s ease;
}
.overlay[data-open="true"] { opacity: 1; pointer-events: auto; }

.cart {
  position: fixed; z-index: 100;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: var(--ground);
  display: flex; flex-direction: column;
  transform: translateX(102%);
  transition: transform .3s cubic-bezier(.3, .8, .3, 1);
  box-shadow: -20px 0 60px -30px rgba(51, 32, 26, .7);
}
.cart[data-open="true"] { transform: none; }

.cart__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: calc(20px + env(safe-area-inset-top, 0px)) 22px 18px;
  border-bottom: 1px solid var(--line);
}
.cart__head h2 { font-size: var(--step-2); }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--paper);
  display: grid; place-items: center; cursor: pointer;
}
.icon-btn:hover { border-color: var(--rust); }
.icon-btn svg { width: 18px; height: 18px; color: var(--brick); }

.cart__body { flex: 1 1 auto; overflow-y: auto; padding: 18px 22px; }
.cart__empty { text-align: center; padding-block: 40px; color: var(--ink-faint); }
.cart__empty svg { width: 78px; height: 78px; color: var(--line); margin-bottom: 14px; }

.cart-line { display: grid; grid-template-columns: 1fr auto; gap: 6px 14px; padding-block: 16px; border-bottom: 1px dashed var(--line); }
.cart-line b { font-family: var(--display); font-size: 1.05rem; color: var(--ink); }
.cart-line small { display: block; color: var(--ink-faint); font-size: .84rem; }
.cart-line__price { font-weight: 700; color: var(--brick); font-variant-numeric: tabular-nums; }
.qty { display: inline-flex; align-items: center; gap: 2px; border: 1.5px solid var(--line); border-radius: 999px; background: var(--paper); }
.qty button {
  width: 30px; height: 30px; border: 0; background: none; cursor: pointer;
  font-size: 1.1rem; line-height: 1; color: var(--brick); border-radius: 50%;
}
.qty button:hover { background: var(--ground-sunk); }
.qty span { min-width: 22px; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; }

.cart__foot { padding: 20px 22px calc(22px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); background: var(--paper); }
.cart__row { display: flex; justify-content: space-between; gap: 12px; padding-block: 5px; font-size: .94rem; color: var(--ink-soft); }
.cart__row span { font-variant-numeric: tabular-nums; }
.cart__row--total { font-size: 1.16rem; font-weight: 700; color: var(--ink); padding-top: 12px; margin-top: 8px; border-top: 1px dashed var(--line); }
.cart__row--total span { font-family: var(--display); color: var(--brick); font-size: 1.4rem; }
.cart__hint { font-size: .82rem; color: var(--ink-faint); margin: 10px 0 0; text-align: center; }

.toast {
  position: fixed; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  transform: translate(-50%, 20px); z-index: 120;
  background: var(--ink); color: #FFF7EA;
  padding: 13px 22px; border-radius: 999px;
  font-weight: 600; font-size: .92rem;
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.toast[data-show="true"] { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero__grid, .story-grid, .panel, .order-grid { grid-template-columns: minmax(0, 1fr); }
  .hero__art { order: -1; }
  .hero__plate { width: min(70%, 320px); }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    display: none;
    box-shadow: 0 24px 40px -30px rgba(51, 32, 26, .7);
  }
  .header[data-open="true"] .nav { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__list a { padding: 13px 14px; font-size: 1.05rem; }
  .burger { display: block; margin-left: auto; }
  .header__actions .btn { display: none; }
  .header__actions { margin-left: 0; }
}

@media (max-width: 620px) {
  .header__bar { min-height: 64px; }
  .brand__mark { width: 38px; height: 38px; }
  .cart-btn span:not(.cart-btn__count) { display: none; }
  .cart-btn { padding: 10px 12px; }
  .field--row { grid-template-columns: 1fr; }
  .hero__badge { right: -2%; padding: 10px 16px; }
  .timeline::before { left: 57px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }
