/* Hajari Farms — Haryana / Braj-Mewat aesthetic
   Palette draws from: anthocyanin wine, sindoor red, marigold/saffron,
   khadi cream, alluvial clay, mehndi green, kohl-ink.
*/

:root {
  --wine: #4A1428;        /* anthocyanin / sindoor-ed aubergine */
  --wine-deep: #2E0817;
  --wine-soft: #6E2538;

  --marigold: #C66A28;    /* CTA / accent — genda flower */
  --marigold-soft: #D88240;

  --saffron: #D9A23A;     /* warm gold — wheat / haldi */
  --saffron-soft: #E5B654;

  --cream: #F3E7CB;       /* khadi / undyed cotton */
  --cream-warm: #EAD8B0;
  --cream-paper: #F8F0DC; /* near-white paper */

  --clay: #8B4A2E;        /* alluvial soil */
  --clay-soft: #B5734B;

  --mehndi: #5C6B36;      /* sage / leaf */
  --mehndi-deep: #44542A;

  --ink: #2A1F18;
  --ink-soft: #4C3D2E;
  --rule: rgba(74, 20, 40, 0.16);

  --serif: "Fraunces", "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --devanagari: "Yatra One", "Tiro Devanagari Hindi", "Mukta", serif;
  --devanagari-body: "Tiro Devanagari Hindi", "Mukta", serif;
  --sans: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --max: 1180px;
  --gap: clamp(1rem, 2.5vw, 1.75rem);
  --section: clamp(3.25rem, 7.5vw, 6rem);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  /* warm paper grain — layered tiny gradients */
  background-image:
    radial-gradient(at 18% 22%, rgba(139, 74, 46, 0.05) 0, transparent 35%),
    radial-gradient(at 78% 68%, rgba(74, 20, 40, 0.045) 0, transparent 40%),
    radial-gradient(at 32% 88%, rgba(217, 162, 58, 0.06) 0, transparent 45%);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--wine);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: var(--marigold);
  transition: color 0.18s ease;
}
a:hover { color: var(--marigold); text-decoration-color: var(--wine); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--wine-deep);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 0;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 6.5vw, 4.25rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.55rem); font-weight: 600; }

.hindi {
  font-family: var(--devanagari-body);
  font-weight: 400;
  color: var(--wine);
}
.hindi-display {
  font-family: var(--devanagari);
  font-weight: 400;
  color: var(--marigold);
  font-size: clamp(2rem, 5.5vw, 3.3rem);
  line-height: 1.25;
  margin: 0 0 0.3em;
  display: block;
  letter-spacing: 0.005em;
}

p { margin: 0 0 1em; }
p.lede {
  font-family: var(--serif);
  font-variation-settings: "opsz" 60, "SOFT" 60;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 231, 203, 0.94);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 3px;
  background:
    linear-gradient(90deg,
      var(--wine) 0 12%,
      var(--marigold) 12% 24%,
      var(--saffron) 24% 36%,
      var(--cream-warm) 36% 48%,
      var(--mehndi) 48% 60%,
      var(--clay) 60% 72%,
      var(--marigold) 72% 84%,
      var(--wine) 84% 100%);
  opacity: 0.85;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  gap: 1rem;
}

/* Brand mark — stacked, with a marigold "seal" dot */
.brand {
  text-decoration: none;
  color: var(--wine-deep);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  line-height: 1;
}
.brand .seal {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--marigold);
  display: grid;
  place-items: center;
  font-family: var(--devanagari);
  color: var(--cream-paper);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px var(--cream-paper), 0 1px 3px rgba(74, 20, 40, 0.25);
}
.brand .wordmark { display: flex; flex-direction: column; }
.brand .en {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.005em;
}
.brand .hi {
  font-family: var(--devanagari);
  font-size: 0.85rem;
  color: var(--marigold);
  margin-top: 3px;
  letter-spacing: 0.02em;
}

.nav { display: none; gap: 1.75rem; align-items: center; }
.nav a {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  position: relative;
}
.nav a:hover, .nav a.active {
  color: var(--wine);
  border-bottom-color: var(--marigold);
}
.nav-toggle {
  background: var(--wine);
  border: none;
  color: var(--cream-paper);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--sans);
}
@media (min-width: 760px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}

.mobile-nav {
  display: none;
  background: var(--cream-warm);
  border-bottom: 1px solid var(--rule);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.95rem var(--gap);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--rule);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: clamp(580px, 92vh, 800px);
  display: grid;
  align-items: end;
  color: var(--cream-paper);
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,
      rgba(46, 8, 23, 0.86) 0%,
      rgba(46, 8, 23, 0.55) 35%,
      rgba(46, 8, 23, 0.18) 70%,
      rgba(46, 8, 23, 0.05) 100%),
    radial-gradient(ellipse at 80% 0%, rgba(217, 162, 58, 0.18) 0%, transparent 55%);
  z-index: 1;
}
.hero img.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.05) contrast(1.02);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: var(--section);
  padding-bottom: var(--section);
}
.hero h1 { color: var(--cream-paper); margin-bottom: 0.25em; max-width: 14ch; }
.hero .hindi-display { color: var(--saffron-soft); }
.hero p.lede { color: rgba(248, 240, 220, 0.94); max-width: 560px; font-style: normal; }
.hero .ctas { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* Eyebrow above hero / sections */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--marigold);
  font-weight: 700;
  margin: 0 0 1em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--marigold);
  opacity: 0.6;
}
.eyebrow::after { display: none; }
.section-head .eyebrow::after { display: inline-flex; }

/* Hand-stamp seal — circular ornament */
.stamp {
  position: absolute;
  top: 2rem; right: 2rem;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--saffron);
  color: var(--saffron-soft);
  display: grid;
  place-items: center;
  font-family: var(--devanagari);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.2;
  z-index: 3;
  transform: rotate(-8deg);
  opacity: 0.92;
  padding: 1rem;
}
.stamp::before {
  content: "";
  position: absolute; inset: 6px;
  border-radius: 50%;
  border: 1px dashed currentColor;
  opacity: 0.55;
}
.stamp .yr {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  margin-top: 0.3em;
  letter-spacing: 0.05em;
}
@media (max-width: 720px) {
  .stamp { width: 92px; height: 92px; font-size: 0.7rem; top: 1rem; right: 1rem; }
  .stamp .yr { font-size: 0.78rem; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.55rem;
  border-radius: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.14s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn svg { flex-shrink: 0; }
.ctas { display: flex; flex-wrap: wrap; gap: 0.9rem 1rem; align-items: center; }
.btn-primary {
  background: var(--marigold);
  color: var(--cream-paper);
  box-shadow: 0 2px 0 var(--wine), 0 6px 14px rgba(74, 20, 40, 0.18);
}
.btn-primary:hover {
  background: var(--marigold-soft);
  color: var(--cream-paper);
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--wine), 0 8px 18px rgba(74, 20, 40, 0.22);
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--cream-paper);
  border-color: rgba(248, 240, 220, 0.55);
}
.btn-ghost:hover {
  background: rgba(248, 240, 220, 0.12);
  color: var(--cream-paper);
  border-color: var(--cream-paper);
  text-decoration: none;
}
.btn-dark {
  background: var(--wine);
  color: var(--cream-paper);
}
.btn-dark:hover {
  background: var(--wine-deep);
  color: var(--cream-paper);
  text-decoration: none;
}
.btn-whatsapp { background: #128C7E; color: #fff; }
.btn-whatsapp:hover { background: #0c6e63; color: #fff; text-decoration: none; }

/* ---------- SECTIONS ---------- */
section { padding: var(--section) 0; position: relative; }

section.tint { background: var(--cream-paper); }
section.warm {
  background: var(--cream-warm);
  background-image: radial-gradient(at 50% 10%, rgba(198, 106, 40, 0.06) 0, transparent 60%);
}
section.dark {
  background: var(--wine-deep);
  color: var(--cream-paper);
  background-image:
    radial-gradient(at 18% 22%, rgba(217, 162, 58, 0.08) 0, transparent 40%),
    radial-gradient(at 82% 78%, rgba(198, 106, 40, 0.10) 0, transparent 50%);
}
section.dark h1, section.dark h2, section.dark h3 { color: var(--cream-paper); }
section.dark .hindi-display { color: var(--saffron-soft); }
section.dark .eyebrow { color: var(--saffron-soft); }
section.dark .eyebrow::before, section.dark .eyebrow::after { background: var(--saffron-soft); }
section.dark a { color: var(--saffron-soft); text-decoration-color: var(--marigold-soft); }

.section-head { max-width: 760px; margin: 0 0 var(--gap); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p.lede { margin-top: 0.4em; }

/* ---------- WHEAT-STALK DIVIDER ---------- */
.wheat-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 1rem 0;
  color: var(--marigold);
  opacity: 0.85;
}
.wheat-divider svg { display: block; }
.wheat-divider.dark-bg { color: var(--saffron-soft); }

/* ---------- GRIDS ---------- */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; align-items: center; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--cream-paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 1px 0 var(--rule), 0 8px 22px rgba(74, 20, 40, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 1px 0 var(--rule), 0 16px 36px rgba(74, 20, 40, 0.12); }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card .body { padding: 1.35rem 1.4rem 1.6rem; }
.card h3 { margin-bottom: 0.3em; }
.card p { font-size: 0.96rem; color: var(--ink-soft); margin: 0; }

.image-frame {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(46, 8, 23, 0.22);
  border: 1px solid var(--rule);
  position: relative;
}
.image-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(46, 8, 23, 0.12));
  pointer-events: none;
}
.image-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.image-tall img { aspect-ratio: 3 / 4; }

/* ---------- PRODUCT ---------- */
.product {
  background: var(--cream-paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  display: grid;
  gap: var(--gap);
  position: relative;
  box-shadow: 0 1px 0 var(--rule), 0 18px 40px rgba(74, 20, 40, 0.08);
}
.product::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wine) 0%, var(--marigold) 50%, var(--saffron) 100%);
}
@media (min-width: 760px) {
  .product { grid-template-columns: 1.05fr 1fr; align-items: center; }
}
.product .image-frame { box-shadow: 0 16px 38px rgba(74, 20, 40, 0.22); }
.product .price-row {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0 1.1rem;
}
.price-pill {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.95rem 1.2rem;
  background: var(--cream-warm);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--saffron);
  border-radius: 0 4px 4px 0;
  font-family: var(--sans);
}
.price-pill .qty { font-weight: 700; color: var(--wine-deep); letter-spacing: 0.02em; }
.price-pill .qty small {
  color: var(--marigold);
  font-weight: 600;
  margin-left: 0.5rem;
  font-size: 0.72em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.price-pill .amt {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 1.55rem;
  color: var(--wine-deep);
  font-weight: 500;
}
.price-pill.feature {
  background: var(--wine);
  color: var(--cream-paper);
  border-color: var(--wine);
  border-left-color: var(--marigold);
}
.price-pill.feature .qty, .price-pill.feature .amt { color: var(--cream-paper); }
.price-pill.feature .qty small { color: var(--saffron-soft); }

/* ---------- NUTRIENT TABLE ---------- */
.nutri {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.96rem;
  background: var(--cream-paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.nutri th, .nutri td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}
.nutri th {
  background: var(--wine);
  color: var(--cream-paper);
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.nutri tr:nth-child(even) td { background: rgba(234, 216, 176, 0.4); }
.nutri tr:last-child td { border-bottom: none; }

/* ---------- LISTS / TICKS ---------- */
.tick-list { list-style: none; padding: 0; margin: 0; }
.tick-list li {
  padding: 0.45rem 0 0.45rem 1.85rem;
  position: relative;
  color: var(--ink);
}
.tick-list li::before {
  content: "✦";
  position: absolute; left: 0; top: 0.45rem;
  color: var(--marigold);
  font-weight: 700;
  font-size: 1rem;
}

.taglines {
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0; margin: 0;
}
.taglines li {
  padding: 1.1rem 1.3rem;
  background: var(--cream-paper);
  border-left: 4px solid var(--marigold);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 1px 0 var(--rule);
}
.taglines .hi {
  color: var(--wine);
  font-family: var(--devanagari);
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.2em;
}
.taglines .en {
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  font-variation-settings: "opsz" 60, "SOFT" 80;
}

/* ---------- STORY PROSE ---------- */
.story-prose {
  max-width: 720px;
  font-family: var(--serif);
  font-variation-settings: "opsz" 24, "SOFT" 50;
  font-size: 1.22rem;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 400;
}
.story-prose p { margin: 0 0 1.15em; }
.story-prose p:first-of-type::first-letter {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
  font-size: 3.6rem;
  line-height: 0.95;
  float: left;
  padding: 0.15em 0.12em 0 0;
  color: var(--marigold);
  font-weight: 500;
}
.story-prose strong { color: var(--wine-deep); font-weight: 600; }

.note {
  background: var(--cream-warm);
  border-left: 4px solid var(--mehndi);
  padding: 1.1rem 1.3rem;
  font-size: 0.96rem;
  color: var(--ink-soft);
  border-radius: 0 4px 4px 0;
  margin: 1.5rem 0;
  font-family: var(--sans);
  font-style: normal;
}
.note strong { color: var(--wine-deep); }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-card {
  background: var(--cream-paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 1.65rem 1.6rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 var(--rule), 0 8px 20px rgba(74, 20, 40, 0.06);
}
.contact-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--marigold);
}
.contact-card h3 { margin-bottom: 0.4em; }
.contact-card p, .contact-card address {
  font-style: normal;
  color: var(--ink);
  margin: 0;
  line-height: 1.7;
}
.contact-card .btn { margin-top: 0.85rem; }

.faq summary {
  cursor: pointer;
  padding: 1.1rem 0;
  font-weight: 600;
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 1.2rem;
  color: var(--wine-deep);
  border-bottom: 1px solid var(--rule);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::marker { display: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--marigold);
  font-size: 1.6rem;
  line-height: 1;
  font-family: var(--sans);
  font-weight: 300;
  transition: transform 0.18s ease;
}
.faq[open] summary::after { content: "−"; }
.faq p { padding: 0.85rem 0 1.35rem; color: var(--ink-soft); font-size: 1rem; }

/* ---------- WHATSAPP FAB ---------- */
.fab-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 60;
  background: #128C7E;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.5), 0 0 0 4px rgba(18, 140, 126, 0.15);
  transition: transform 0.15s ease;
}
.fab-whatsapp:hover { transform: scale(1.07); color: #fff; text-decoration: none; }
.fab-whatsapp svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--wine-deep);
  color: rgba(243, 231, 203, 0.82);
  padding: var(--section) 0 2rem;
  font-size: 0.96rem;
  position: relative;
  background-image:
    radial-gradient(at 18% 30%, rgba(217, 162, 58, 0.06) 0, transparent 45%),
    radial-gradient(at 82% 65%, rgba(198, 106, 40, 0.08) 0, transparent 50%);
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--wine) 0 12.5%,
    var(--marigold) 12.5% 25%,
    var(--saffron) 25% 37.5%,
    var(--cream-warm) 37.5% 50%,
    var(--mehndi) 50% 62.5%,
    var(--clay) 62.5% 75%,
    var(--marigold) 75% 87.5%,
    var(--wine) 87.5% 100%);
}
.site-footer a { color: var(--saffron-soft); text-decoration-color: var(--marigold); }
.site-footer a:hover { color: var(--cream-paper); }
.site-footer .footer-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 720px) {
  .site-footer .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.site-footer h4 {
  color: var(--saffron);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 0 0 0.95em;
  font-weight: 700;
}
.site-footer .brand .en { color: var(--cream-paper); font-size: 1.6rem; }
.site-footer .brand .hi { color: var(--marigold-soft); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45em; }
.site-footer address { font-style: normal; line-height: 1.75; }
.site-footer .meta {
  border-top: 1px solid rgba(243, 231, 203, 0.18);
  padding-top: 1.4rem;
  font-size: 0.8rem;
  color: rgba(243, 231, 203, 0.55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ---------- UTILITIES ---------- */
.mt-2 { margin-top: 2rem; }
.mt-1 { margin-top: 1rem; }
.text-muted { color: var(--ink-soft); }
.center { text-align: center; }

/* ---------- A11Y ---------- */
:focus-visible {
  outline: 2.5px solid var(--marigold);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--marigold);
  color: var(--cream-paper);
  padding: 0.55rem 1.1rem;
  z-index: 100;
  text-decoration: none;
  font-weight: 700;
}
.skip:focus { left: 1rem; top: 1rem; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
