/* ============================================
   مذاق · MAZAQ — Restaurant & Food Delivery
   Palette: Cream + Charcoal + Saffron/Tomato
   ============================================ */

:root {
  --bg:          #fffaf3;
  --bg-soft:     #fdf0e2;
  --bg-card:     #ffffff;
  --ink:         #231a15;
  --ink-soft:    #4a3c33;
  --ink-mute:    #8a7766;
  --ink-faint:   #b8a695;
  --line:        #f0e3d3;
  --line-strong: #e2cfb8;

  --tomato:      #e23744;   /* appetite red */
  --tomato-soft: #fde5e7;
  --tomato-deep: #b91f2c;
  --saffron:     #f4a024;   /* warm saffron */
  --saffron-soft:#fdeed4;
  --herb:        #4a7c3f;   /* fresh green */
  --herb-soft:   #e3f0de;

  --ff-display: 'Lobster Two', 'Pacifico', cursive;
  --ff-head:    'Sora', 'Inter', system-ui, sans-serif;
  --ff-sans:    'Inter', system-ui, sans-serif;
  --ff-ar:      'Cairo', 'Vazirmatn', system-ui, sans-serif;
  --ff-mono:    'JetBrains Mono', ui-monospace, monospace;

  --t-eyebrow: 0.6875rem;
  --t-xs: 0.75rem; --t-sm: 0.875rem; --t-base: 1rem;
  --t-md: 1.125rem; --t-lg: 1.375rem; --t-xl: 1.75rem;
  --t-2xl: 2.25rem;
  --t-hero: clamp(2.5rem, 6vw, 4.5rem);

  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.25rem; --s-6: 1.5rem; --s-8: 2rem; --s-10: 2.5rem;
  --s-12: 3rem; --s-16: 4rem; --s-20: 5rem; --s-24: 6rem;

  --header-h: 72px;
  --max-w: 1320px;
  --gutter: 1.25rem;
  --r: 20px;
  --r-sm: 12px;
  --r-pill: 999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 10px rgba(35,26,21,0.06);
  --shadow-md: 0 16px 40px -16px rgba(35,26,21,0.2);
  --safe-top:    env(safe-area-inset-top, 0);
  --safe-bottom: env(safe-area-inset-bottom, 0);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-ar);
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100dvh;
}
img, svg, picture, video { display: block; max-width: 100%; height: auto; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input { font: inherit; color: inherit; background: transparent; border: none; outline: none; }
:focus-visible { outline: 2px solid var(--tomato); outline-offset: 3px; }
::selection { background: var(--tomato-soft); color: var(--tomato-deep); }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: var(--r-pill); }

.shell { max-width: var(--max-w); margin: 0 auto; padding-inline: var(--gutter); }
@media (min-width: 768px) { .shell { padding-inline: 2rem; } }

.eyebrow {
  font-family: var(--ff-head);
  font-size: var(--t-eyebrow);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tomato);
}
.script { font-family: var(--ff-display); font-weight: 400; }
.mono { font-family: var(--ff-mono); font-variant-numeric: tabular-nums; }

/* ── Top bar ── */
.topbar {
  background: var(--ink);
  color: var(--bg-soft);
  font-family: var(--ff-sans);
  font-size: var(--t-xs);
  padding: 8px var(--gutter);
  padding-top: calc(8px + var(--safe-top));
  display: flex;
  justify-content: center;
  gap: var(--s-5);
  align-items: center;
  flex-wrap: wrap;
}
.topbar b { color: var(--saffron); }

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,250,243,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__row { height: var(--header-h); display: flex; align-items: center; gap: var(--s-5); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--ff-display);
  font-size: 1.85rem;
  color: var(--tomato);
  white-space: nowrap;
}
.brand__mark { font-size: 1.5rem; }
.nav { display: none; gap: 1.75rem; margin-inline-start: var(--s-6); }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a {
  font-family: var(--ff-head);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 180ms;
  position: relative;
}
.nav a:hover, .nav a.is-active { color: var(--tomato); }
.header__loc {
  margin-inline-start: auto;
  display: none;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--t-sm);
  color: var(--ink-soft);
  background: var(--bg-soft);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  cursor: pointer;
  transition: background 180ms;
}
@media (min-width: 768px) { .header__loc { display: inline-flex; } }
.header__loc:hover { background: var(--line); }
.header__loc svg { color: var(--tomato); }
.header__loc b { color: var(--ink); }
.header__actions { display: flex; align-items: center; gap: var(--s-2); margin-inline-start: var(--s-2); }
@media (max-width: 767px) { .header__actions { margin-inline-start: auto; } }
.icon-btn {
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  position: relative;
  transition: background 180ms, color 180ms;
}
.icon-btn:hover { background: var(--bg-soft); color: var(--tomato); }
.icon-btn__count {
  position: absolute;
  top: 5px; inset-inline-end: 5px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--tomato);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 0.625rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.burger { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); }
@media (min-width: 1024px) { .burger { display: none; } }

/* ── Buttons ── */
.btn {
  --bg: var(--tomato);
  --fg: #fff;
  --bd: var(--tomato);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0 var(--s-6);
  min-height: 52px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bd);
  border-radius: var(--r-pill);
  font-family: var(--ff-head);
  font-size: var(--t-sm);
  font-weight: 700;
  transition: all 180ms var(--ease);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 18px -8px var(--tomato);
}
.btn:hover { --bg: var(--tomato-deep); --bd: var(--tomato-deep); transform: translateY(-1px); }
.btn:active { transform: scale(0.98); }
.btn--saffron { --bg: var(--saffron); --bd: var(--saffron); box-shadow: 0 6px 18px -8px var(--saffron); color: var(--ink); }
.btn--saffron:hover { --bg: #e09017; --bd: #e09017; }
.btn--light { --bg: #fff; --fg: var(--tomato); --bd: #fff; box-shadow: var(--shadow-sm); }
.btn--light:hover { --bg: var(--tomato); --fg: #fff; --bd: var(--tomato); }
.btn--ghost { --bg: rgba(255,255,255,0.15); --fg: #fff; --bd: rgba(255,255,255,0.5); box-shadow: none; }
.btn--ghost:hover { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.btn--lg { min-height: 58px; padding-inline: var(--s-8); font-size: var(--t-md); }

.linkline {
  font-family: var(--ff-head);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--tomato);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  transition: gap 180ms;
}
.linkline:hover { gap: var(--s-3); }
[dir="rtl"] .linkline svg { transform: scaleX(-1); }

/* ── HERO ── */
.hero {
  position: relative;
  margin: var(--s-4) var(--gutter) 0;
  border-radius: var(--r);
  overflow: hidden;
  min-height: clamp(480px, 72vh, 680px);
  display: flex;
  align-items: center;
}
@media (min-width: 768px) { .hero { margin-inline: 2rem; } }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(35,26,21,0.82) 0%, rgba(35,26,21,0.45) 50%, transparent 100%);
}
[dir="rtl"] .hero::after { background: linear-gradient(-100deg, rgba(35,26,21,0.82) 0%, rgba(35,26,21,0.45) 50%, transparent 100%); }
.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 6vw, 4.5rem);
  color: #fff;
  max-width: 640px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-family: var(--ff-head);
  font-size: var(--t-xs);
  font-weight: 600;
  margin-bottom: var(--s-5);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--herb); box-shadow: 0 0 0 3px rgba(74,124,63,0.3); }
.hero__title {
  font-family: var(--ff-display);
  font-size: var(--t-hero);
  line-height: 1.05;
  color: #fff;
  margin-bottom: var(--s-4);
}
.hero__title span { color: var(--saffron); }
.hero__sub {
  font-family: var(--ff-ar);
  font-size: var(--t-md);
  color: rgba(255,255,255,0.9);
  max-width: 44ch;
  margin-bottom: var(--s-6);
  line-height: 1.7;
}
.hero__cta { display: flex; gap: var(--s-3); flex-wrap: wrap; align-items: center; }
.hero__meta { display: flex; gap: var(--s-6); margin-top: var(--s-8); flex-wrap: wrap; }
.hero__metaitem { display: flex; flex-direction: column; gap: 2px; }
.hero__metaitem .n { font-family: var(--ff-head); font-size: var(--t-xl); font-weight: 800; color: #fff; }
.hero__metaitem .l { font-size: var(--t-xs); color: rgba(255,255,255,0.7); }

/* ── Order mode toggle ── */
.modebar {
  display: flex;
  gap: var(--s-3);
  margin-block: var(--s-8);
  flex-wrap: wrap;
  align-items: center;
}
.mode {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 12px 22px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1.5px solid var(--line);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: var(--t-sm);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 180ms;
}
.mode:hover { border-color: var(--tomato); }
.mode.is-active { background: var(--tomato); color: #fff; border-color: var(--tomato); box-shadow: 0 6px 18px -8px var(--tomato); }
.modebar__time { margin-inline-start: auto; font-size: var(--t-sm); color: var(--ink-mute); display: inline-flex; align-items: center; gap: 6px; }
.modebar__time b { color: var(--herb); }

/* ── Category chips (food) ── */
.foodcats { display: flex; gap: var(--s-3); overflow-x: auto; padding-bottom: var(--s-3); scroll-snap-type: x mandatory; }
.foodcat {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  width: 96px;
  scroll-snap-align: start;
  cursor: pointer;
}
.foodcat__img {
  width: 84px; height: 84px;
  border-radius: var(--r);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 200ms var(--ease);
  background: var(--bg-soft);
}
.foodcat__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms; }
.foodcat:hover .foodcat__img { border-color: var(--tomato); transform: translateY(-3px); }
.foodcat:hover .foodcat__img img { transform: scale(1.08); }
.foodcat.is-active .foodcat__img { border-color: var(--tomato); }
.foodcat__name { font-family: var(--ff-head); font-size: var(--t-sm); font-weight: 600; color: var(--ink); }

/* ── Section head ── */
.s-head { display: flex; align-items: end; justify-content: space-between; gap: var(--s-4); margin-bottom: var(--s-6); flex-wrap: wrap; }
.s-head__title { display: flex; flex-direction: column; gap: var(--s-1); }
.s-head__title .script { font-size: var(--t-xl); color: var(--tomato); }
.s-head__title h2 { font-family: var(--ff-head); font-size: var(--t-2xl); font-weight: 800; letter-spacing: -0.01em; line-height: 1; }

/* ── Dish grid ── */
.dishes { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
@media (min-width: 640px) { .dishes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dishes { grid-template-columns: repeat(3, 1fr); } }

.dish {
  display: flex;
  gap: var(--s-4);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: var(--s-4);
  transition: border-color 200ms, box-shadow 200ms, transform 250ms var(--ease);
  position: relative;
}
.dish:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.dish__media {
  position: relative;
  width: 112px;
  flex-shrink: 0;
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg-soft);
}
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.dish:hover .dish__media img { transform: scale(1.06); }
.dish__diet {
  position: absolute;
  top: 6px; inset-inline-start: 6px;
  width: 20px; height: 20px;
  border-radius: 5px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dish__diet.veg { color: var(--herb); }
.dish__diet.hot { color: var(--tomato); }
.dish__body { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.dish__head { display: flex; align-items: start; justify-content: space-between; gap: var(--s-2); }
.dish__name { font-family: var(--ff-head); font-size: var(--t-md); font-weight: 700; line-height: 1.3; }
.dish__rating { display: inline-flex; align-items: center; gap: 3px; font-family: var(--ff-mono); font-size: var(--t-xs); color: var(--herb); font-weight: 600; flex-shrink: 0; background: var(--herb-soft); padding: 3px 7px; border-radius: var(--r-pill); }
.dish__rating svg { fill: var(--herb); }
.dish__desc { font-size: var(--t-sm); color: var(--ink-mute); line-height: 1.5; margin-top: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dish__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: var(--s-3); gap: var(--s-2); }
.dish__price { font-family: var(--ff-head); font-weight: 800; font-size: var(--t-md); color: var(--ink); }
.dish__price .was { font-family: var(--ff-mono); font-size: var(--t-xs); color: var(--ink-faint); text-decoration: line-through; font-weight: 400; margin-inline-start: var(--s-2); }
.dish__add {
  width: 38px; height: 38px;
  border-radius: var(--r-pill);
  background: var(--tomato-soft);
  color: var(--tomato);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 180ms;
  flex-shrink: 0;
}
.dish__add:hover { background: var(--tomato); color: #fff; transform: scale(1.08); }
.dish__tag {
  position: absolute;
  top: -8px; inset-inline-end: var(--s-4);
  background: var(--saffron);
  color: var(--ink);
  font-family: var(--ff-head);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

/* ── Offer banner (combo deal) ── */
.combo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: linear-gradient(120deg, var(--tomato) 0%, var(--tomato-deep) 100%);
  border-radius: var(--r);
  overflow: hidden;
  margin-block: var(--s-16);
  color: #fff;
  position: relative;
}
@media (min-width: 768px) { .combo { grid-template-columns: 1fr 1fr; align-items: center; } }
.combo__body { padding: clamp(2rem, 5vw, 3.5rem); position: relative; z-index: 1; }
.combo__body .script { font-size: var(--t-xl); color: var(--saffron); }
.combo__body h2 { font-family: var(--ff-head); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; color: #fff; margin-block: var(--s-2) var(--s-3); line-height: 1.05; }
.combo__body p { color: rgba(255,255,255,0.9); margin-bottom: var(--s-6); max-width: 40ch; }
.combo__price { display: flex; align-items: baseline; gap: var(--s-3); margin-bottom: var(--s-6); }
.combo__price .now { font-family: var(--ff-display); font-size: 3rem; color: var(--saffron); }
.combo__price .was { font-family: var(--ff-mono); font-size: var(--t-lg); color: rgba(255,255,255,0.6); text-decoration: line-through; }
.combo__img { position: relative; min-height: 280px; }
.combo__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ── Steps (how it works) ── */
.steps { display: grid; grid-template-columns: 1fr; gap: var(--s-6); margin-block: var(--s-16); }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--s-3); padding: var(--s-6); }
.step__icon {
  width: 72px; height: 72px;
  border-radius: var(--r);
  background: var(--saffron-soft);
  color: var(--saffron);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.step__num {
  position: absolute;
  top: -8px; inset-inline-end: -8px;
  width: 26px; height: 26px;
  border-radius: var(--r-pill);
  background: var(--tomato);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-family: var(--ff-head); font-size: var(--t-lg); font-weight: 700; }
.step p { font-size: var(--t-sm); color: var(--ink-mute); max-width: 28ch; }

/* ── Reviews ── */
.reviews { display: grid; grid-template-columns: 1fr; gap: var(--s-5); }
@media (min-width: 768px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: var(--s-6);
}
.review__stars { color: var(--saffron); margin-bottom: var(--s-3); letter-spacing: 2px; }
.review__text { font-size: var(--t-sm); line-height: 1.7; color: var(--ink-soft); margin-bottom: var(--s-4); }
.review__by { display: flex; align-items: center; gap: var(--s-3); }
.review__avatar { width: 42px; height: 42px; border-radius: var(--r-pill); background: var(--tomato-soft); color: var(--tomato); display: inline-flex; align-items: center; justify-content: center; font-family: var(--ff-head); font-weight: 700; }
.review__name { font-family: var(--ff-head); font-weight: 700; font-size: var(--t-sm); }
.review__meta { font-size: var(--t-xs); color: var(--ink-mute); }

/* ── App CTA ── */
.appcta {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  background: var(--ink);
  border-radius: var(--r);
  padding: clamp(2.5rem, 5vw, 4rem);
  margin-block: var(--s-16);
  color: #fff;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 900px) { .appcta { grid-template-columns: 1.2fr 1fr; } }
.appcta h2 { font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--saffron); margin-bottom: var(--s-3); }
.appcta p { color: rgba(255,255,255,0.8); margin-bottom: var(--s-6); max-width: 42ch; }
.appcta__btns { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.appcta__img { font-size: 0; text-align: center; }
.appcta__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  border-radius: var(--r);
  overflow: hidden;
}
.appcta__phone img { width: 100%; height: 100%; object-fit: cover; }

/* ── Footer ── */
.foot { background: var(--ink); color: rgba(255,255,255,0.7); padding-block: var(--s-12) var(--s-5); }
.foot__top { display: grid; grid-template-columns: 1fr; gap: var(--s-8); margin-bottom: var(--s-10); }
@media (min-width: 768px) { .foot__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.foot__brand { font-family: var(--ff-display); font-size: 2rem; color: var(--saffron); margin-bottom: var(--s-3); }
.foot__col p { font-size: var(--t-sm); line-height: 1.7; max-width: 34ch; margin-bottom: var(--s-4); }
.foot__col h4 { font-family: var(--ff-head); font-size: var(--t-eyebrow); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--saffron); margin-bottom: var(--s-4); }
.foot__col ul { display: flex; flex-direction: column; gap: var(--s-2); }
.foot__col a { font-size: var(--t-sm); color: rgba(255,255,255,0.7); transition: color 180ms; }
.foot__col a:hover { color: #fff; }
.foot__social { display: flex; gap: var(--s-2); }
.foot__social a { width: 38px; height: 38px; border-radius: var(--r-pill); background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 180ms; }
.foot__social a:hover { background: var(--tomato); color: #fff; }
.foot__bottom { padding-top: var(--s-5); border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s-3); font-size: var(--t-xs); color: rgba(255,255,255,0.5); }
.foot__pay { display: flex; gap: var(--s-2); }
.foot__pay span { background: rgba(255,255,255,0.1); padding: 5px 10px; border-radius: var(--r-sm); font-family: var(--ff-mono); font-size: 0.625rem; font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* TK-DARK-INJECTED */
[data-theme="dark"] {
  --bg:          #161210;
  --bg-soft:     #211b16;
  --bg-card:     #1f1a16;
  --ink:         #f7ebda;
  --ink-soft:    #d8c5ad;
  --ink-mute:    #9c8a72;
  --ink-faint:   #6c5d4a;
  --line:        #2e251e;
  --line-strong: #463829;
  --tomato:      #f25260;
  --tomato-soft: #3a1e22;
  --tomato-deep: #d3303e;
  --saffron:     #f5b94a;
  --saffron-soft:#3a2e16;
  --herb:        #74a866;
  --herb-soft:   #1d2f1a;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.4);
  --shadow-md: 0 16px 40px -16px rgba(0,0,0,0.7);
}
html { color-scheme: dark; }
[data-theme="dark"] body { background: var(--bg); color: var(--ink); }
