/* =====================================================================
   Indian Village Catering — global stylesheet
   Design system: tandoor-espresso ground, marigold/saffron accent,
   Mughal pointed-arch motif, Fraunces display + Hanken Grotesk body,
   Calligrapher wordmark (heritage font from the original site).
   ===================================================================== */

/* ---- Heritage wordmark font (scraped from the original 2002 site) ---- */
@font-face {
  font-family: "Calligrapher";
  src: url("../fonts/Calligra.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

/* ---------------------------- Tokens ---------------------------------- */
:root {
  /* palette */
  --ground:      #1E1512;   /* tandoor espresso */
  --ground-2:    #271B16;   /* raised dark panel */
  --parchment:   #F6EEDC;   /* warm reading surface */
  --parchment-2: #EFE4CC;   /* parchment, slightly deeper */
  --text:        #F3E7D3;   /* warm ivory on dark */
  --ink:         #2A1B12;   /* cocoa text on light */
  --ink-soft:    #6A5544;   /* muted cocoa */
  --accent:      #E0A02E;   /* marigold / saffron */
  --accent-deep: #C4831A;   /* pressed marigold */
  --chili:       #B3402F;   /* pomegranate / hot */
  --leaf:        #6E8B3D;   /* vegetarian marker */
  --line-dark:   rgba(243, 231, 211, 0.16);
  --line-light:  rgba(42, 27, 18, 0.14);

  /* type */
  --display: "Fraunces", "Hoefler Text", Georgia, serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* layout */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 4px;
  --shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.6);
}

/* ---------------------------- Reset ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--ground);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 500; line-height: 1.08; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

/* ---------------------- Shared building blocks ------------------------ */
.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.btn {
  --btn-pad-y: 0.85em;
  --btn-pad-x: 1.6em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-primary {
  background: var(--accent);
  color: var(--ground);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-dark);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* Section heads share one rhythm */
.section-head { max-width: 46rem; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-head h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.25rem); }
.section-lede { margin-top: 1.1rem; font-size: 1.075rem; }

/* Mughal pointed-arch image frame — the recurring motif */
.arch-frame {
  margin: 0;
  position: relative;
  border-radius: 48% 48% var(--radius) var(--radius) / 30% 30% var(--radius) var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--ground-2);
  box-shadow: var(--shadow);
}
.arch-frame img { width: 100%; height: 100%; object-fit: cover; }
.arch-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 6px rgba(224, 160, 46, 0.16);
  pointer-events: none;
}

/* Diet / spice badges */
.badge {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2em 0.5em;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 0.4em;
  line-height: 1.4;
}
/* Hot & spicy — glowing red label */
.badge-spicy {
  background: rgba(179, 64, 47, 0.16);
  color: #ff6a4d;
  border: 1px solid rgba(255, 90, 60, 0.6);
  text-shadow: 0 0 6px rgba(255, 90, 60, 0.95);
  box-shadow: 0 0 8px rgba(220, 50, 30, 0.6);
  animation: hot-glow 1.7s ease-in-out infinite;
}
@keyframes hot-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(220, 50, 30, 0.45); }
  50%      { box-shadow: 0 0 14px rgba(255, 80, 45, 0.9); }
}

/* Indian FSSAI-style diet marks: square outline with a green dot (veg) or a
   brown/red upward triangle (non-veg). One per dish. */
.diet-mark {
  display: inline-block;
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 2px;
  margin-left: 0.5em;
  vertical-align: middle;
  flex: 0 0 auto;
  background: rgba(243, 231, 211, 0.06);
}
.diet-veg { border: 1.5px solid #3a9d4a; }
.diet-veg::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3a9d4a;
}
.diet-nonveg { border: 1.5px solid #c2412c; }
.diet-nonveg::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 7px solid #c2412c;
}

/* =============================== Header ============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--gutter);
  background: rgba(30, 21, 18, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.wordmark { text-decoration: none; display: flex; align-items: baseline; gap: 0.55rem; line-height: 1; }
.wordmark-script {
  font-family: "Calligrapher", var(--display);
  font-size: 1.85rem;
  color: var(--accent);
  line-height: 0.9;
}
.wordmark-label {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text);
}
.primary-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.primary-nav a {
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.18s ease, color 0.18s ease;
}
.primary-nav a:hover { opacity: 1; color: var(--accent); }
.primary-nav .nav-cta {
  padding: 0.6em 1.2em;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent);
  opacity: 1;
}
.primary-nav .nav-cta:hover { background: var(--accent); color: var(--ground); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 40px; height: 40px;
  padding: 9px 8px;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }

.mobile-nav {
  position: sticky;
  top: 65px;
  z-index: 49;
  display: flex;
  flex-direction: column;
  background: var(--ground-2);
  border-bottom: 1px solid var(--line-dark);
  padding: 0.5rem var(--gutter) 1rem;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 0.85rem 0;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-nav a:last-child { border-bottom: 0; color: var(--accent); }

/* ================================ Hero =============================== */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6.5rem) var(--gutter) clamp(3.5rem, 7vw, 6rem);
}
.hero-copy h1 {
  font-size: clamp(2.5rem, 1.6rem + 4.4vw, 4.75rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}
.hero-copy h1 em { font-style: italic; color: var(--accent); }
.hero-lede { max-width: 34rem; font-size: 1.15rem; color: rgba(243, 231, 211, 0.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 2rem 0 2.4rem; }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-dark);
}
.hero-facts li { display: flex; flex-direction: column; }
.hero-facts strong { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--accent); }
.hero-facts span { font-size: 0.82rem; letter-spacing: 0.04em; color: rgba(243, 231, 211, 0.62); }

.hero-art { position: relative; }
.arch-frame--hero { aspect-ratio: 4 / 5; }
.arch-frame--inset {
  position: absolute;
  right: -1.5rem;
  bottom: -2.5rem;
  width: 46%;
  aspect-ratio: 3 / 4;
  border-radius: 50% 50% var(--radius) var(--radius) / 32% 32% var(--radius) var(--radius);
}

/* ============================== Services ============================= */
.services {
  background: var(--parchment);
  color: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.services .eyebrow { color: var(--accent-deep); }
.services .section-lede { color: var(--ink-soft); }
#services-title em { font-style: italic; color: var(--accent-deep); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1.25rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 1.9rem 1.8rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(42, 27, 18, 0.45); }
.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  padding-left: 0.85rem;
  border-left: 3px solid var(--accent);
}
.card p { color: var(--ink-soft); font-size: 0.98rem; }

/* =============================== Menu ================================ */
.menu {
  background: var(--ground);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.menu-legend {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.2rem;
  margin-top: 1.4rem;
  font-size: 0.82rem;
  color: rgba(243, 231, 211, 0.7);
}
.menu-legend .badge,
.menu-legend .diet-mark { margin-left: 0; }
.menu-note {
  max-width: 46rem;
  margin: 1.2rem auto 0;
  padding: 0.9rem 1.2rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(243, 231, 211, 0.82);
  background: rgba(224, 160, 46, 0.08);
  border: 1px solid rgba(224, 160, 46, 0.28);
  border-radius: var(--radius);
}
.menu-note strong { color: var(--accent); }

.menu-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: var(--maxw);
  margin: 0 auto;
  align-items: start;
}
.menu-jump {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-right: 1rem;
  border-right: 1px solid var(--line-dark);
}
.menu-jump-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.menu-jump a {
  font-size: 0.88rem;
  text-decoration: none;
  color: rgba(243, 231, 211, 0.72);
  padding: 0.3rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.7rem;
  margin-left: -0.7rem;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.menu-jump a:hover { color: var(--accent); border-color: var(--accent); }

.menu-body { display: flex; flex-direction: column; gap: clamp(2.5rem, 4vw, 3.5rem); }
.menu-cat { scroll-margin-top: 92px; }
.menu-cat-title {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  color: var(--accent);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line-dark);
}
.menu-cat-intro {
  margin-top: 0.9rem;
  font-style: italic;
  font-family: var(--display);
  font-size: 1.05rem;
  color: rgba(243, 231, 211, 0.74);
}
.dish-list {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 2.1rem 3rem;
}
/* Diet mark sits in a fixed left gutter so all marks align in a column and the
   name + description share one consistent indent. Spice tag trails the name. */
.dish { position: relative; padding-left: 1.85rem; }
.dish-head { display: block; }
.dish-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--text);
}
.dish .diet-mark { position: absolute; left: 0; top: 0.28em; margin: 0; }
.dish-name .badge { white-space: nowrap; }
.dish-desc { margin-top: 0.5rem; font-size: 0.92rem; line-height: 1.55; color: rgba(243, 231, 211, 0.66); }

/* =============================== How ================================= */
.how {
  background: var(--ground-2);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 1.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 1.7rem;
  background: var(--ground);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}
.step-num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.55;
  display: block;
  margin-bottom: 0.5rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.95rem; color: rgba(243, 231, 211, 0.72); }
.step strong { color: var(--accent); font-weight: 600; }

/* =============================== About =============================== */
.about {
  background: var(--parchment);
  color: var(--ink);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.about .eyebrow { color: var(--accent-deep); }
.arch-frame--about { max-width: 460px; aspect-ratio: 5 / 3; margin: 0 auto; box-shadow: 0 24px 50px -30px rgba(42,27,18,0.6); }
.arch-frame--about img { object-position: center top; }
.about-copy h2 { font-size: clamp(1.8rem, 1.3rem + 2vw, 2.8rem); margin-bottom: 1.1rem; }
.about-copy p { color: var(--ink-soft); }
.pullquote {
  margin: 1.6rem 0;
  padding-left: 1.4rem;
  border-left: 3px solid var(--accent);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ink);
}
.pullquote cite {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--body);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.about-meta { font-size: 0.92rem; }

/* ============================== Inquire ============================== */
.inquire {
  background: var(--ground);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.inquire-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  max-width: var(--maxw);
  margin: 0 auto;
  align-items: start;
}
.inquire-intro h2 { font-size: clamp(2rem, 1.5rem + 2vw, 3rem); margin-bottom: 1rem; }
.inquire-intro p { color: rgba(243, 231, 211, 0.8); max-width: 30rem; }
.contact-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.contact-list li { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-value { font-family: var(--display); font-size: 1.35rem; color: var(--text); text-decoration: none; }
a.contact-value:hover { color: var(--accent); }
.contact-value--plain { font-size: 1rem; font-family: var(--body); color: rgba(243, 231, 211, 0.78); }

/* form */
.inquiry-form {
  background: var(--ground-2);
  border: 1px solid var(--line-dark);
  border-radius: calc(var(--radius) * 2);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1.1rem; }
.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; color: rgba(243, 231, 211, 0.85); }
.field-hint { font-weight: 400; color: rgba(243, 231, 211, 0.5); }
.req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 0.98rem;
  color: var(--text);
  background: rgba(243, 231, 211, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 0.7em 0.85em;
  width: 100%;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(243, 231, 211, 0.38); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(243, 231, 211, 0.08);
}
.field input:invalid:not(:placeholder-shown),
.field input[aria-invalid="true"] { border-color: var(--chili); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 13px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 2.2em; }
.field select option { background: var(--ground-2); color: var(--text); }
.form-foot { margin-top: 1.6rem; }
.form-note { margin-top: 0.9rem; font-size: 0.9rem; min-height: 1.2em; }
/* honeypot — kept out of view for people, in the DOM for bots */
.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
.cf-turnstile { margin-bottom: 1.1rem; min-height: 65px; }
.form-note.is-error { color: var(--chili); }
.form-note.is-success { color: var(--leaf); }

/* =============================== Footer ============================== */
.site-footer {
  background: var(--ground);
  border-top: 1px solid var(--line-dark);
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter) 2rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--maxw);
  margin: 0 auto 2rem;
}
.footer-brand .wordmark-script { font-size: 2rem; color: var(--accent); }
.footer-brand p { margin-top: 0.4rem; color: rgba(243, 231, 211, 0.6); font-size: 0.92rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.94rem; color: rgba(243, 231, 211, 0.78); }
.footer-contact a { text-decoration: none; }
.footer-contact a:hover { color: var(--accent); }
.footer-fine {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.78rem;
  color: rgba(243, 231, 211, 0.45);
}

/* ============================ Responsive ============================= */
@media (max-width: 900px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-art { max-width: 30rem; margin: 0 auto; width: 100%; }
  .arch-frame--inset { right: 0; width: 42%; }
  .menu-layout { grid-template-columns: 1fr; }
  .menu-jump {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem 0.8rem;
    padding-right: 0;
    padding-bottom: 1.2rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .menu-jump a { margin-left: 0; padding-left: 0; border-left: 0; border-bottom: 2px solid transparent; }
  .menu-jump a:hover { border-left: 0; border-bottom-color: var(--accent); }
  .menu-jump-title { width: 100%; }
  .about { grid-template-columns: 1fr; }
  .inquire-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-row--2 { grid-template-columns: 1fr; }
  .hero-copy h1 br { display: none; }
}

/* ===================================================================
   Legacy / "Our story" page
   =================================================================== */
.legacy-hero {
  max-width: 50rem;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) var(--gutter) clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.legacy-hero h1 {
  font-size: clamp(2.3rem, 1.5rem + 3.6vw, 4rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.3rem;
}
.legacy-hero-lede { font-size: 1.15rem; color: rgba(243, 231, 211, 0.82); }
.legacy-banner {
  margin: 2.2rem auto 0;
  max-width: 38rem;
  padding: 1.1rem 1.5rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

/* timeline */
.timeline-section { background: var(--ground-2); padding: clamp(4rem, 8vw, 7rem) var(--gutter); }
.timeline {
  position: relative;
  max-width: 46rem;
  margin: 0 auto;
  padding-left: 2rem;
  border-left: 2px solid var(--line-dark);
}
.tl-item { position: relative; padding: 0 0 2.6rem 0.5rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -2.65rem;
  top: 0.35rem;
  width: 13px; height: 13px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--ground-2);
}
.tl-date {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.tl-item h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.tl-item p { color: rgba(243, 231, 211, 0.78); }
.tl-item strong { color: var(--accent); font-weight: 600; }

/* awards */
.awards-section { background: var(--parchment); color: var(--ink); padding: clamp(4rem, 8vw, 7rem) var(--gutter); }
.awards-section .eyebrow { color: var(--accent-deep); }
.awards-section .section-lede { color: var(--ink-soft); }
.awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.awards-grid li {
  background: #fff;
  padding: 0.9rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px -18px rgba(42, 27, 18, 0.5);
  transition: transform 0.2s ease;
}
.awards-grid li:hover { transform: translateY(-4px) rotate(-1deg); }
.awards-grid img { width: auto; height: 120px; }
.pullquote--center {
  max-width: 42rem;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  text-align: center;
  border-left: 0;
  padding-left: 0;
  font-size: 1.35rem;
}
.pullquote--center cite { color: var(--accent-deep); }

/* gallery */
.gallery-section { background: var(--ground); padding: clamp(4rem, 8vw, 7rem) var(--gutter); }
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.2rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.gallery-item {
  margin: 0;
  position: relative;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ground-2);
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1rem 0.8rem;
  font-size: 0.85rem;
  color: var(--text);
  background: linear-gradient(to top, rgba(30, 21, 18, 0.92), rgba(30, 21, 18, 0));
}

/* closing CTA */
.legacy-cta {
  background: var(--ground-2);
  padding: clamp(4rem, 8vw, 6.5rem) var(--gutter);
  text-align: center;
}
.legacy-cta-inner { max-width: 42rem; margin: 0 auto; }
.legacy-cta h2 { font-size: clamp(1.9rem, 1.4rem + 2vw, 2.9rem); margin-bottom: 1.1rem; }
.legacy-cta p { color: rgba(243, 231, 211, 0.82); margin-bottom: 2rem; }

@media (max-width: 560px) {
  .gallery-item--wide { grid-column: span 1; }
}

/* --------------------------- Motion safety --------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
