/* ==========================================================================
   Silver Sands Cafe — silversandscafe.com
   Design system derived from the building itself: the checkerboard cinderblock
   facade (brick red + grey stone), the white soffit, and the hand-painted
   black block-letter sign.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colour — sampled from the storefront photograph */
  --brick:        #9e4a38;   /* the terracotta masonry squares */
  --brick-dark:   #77362a;
  --brick-tint:   #f3e3de;
  --stone:        #8f8d84;   /* the grey cinderblock squares */
  --stone-pale:   #e6e3db;   /* page field */
  --stone-line:   #cdc9be;
  --paper:        #fbf9f4;   /* card surface / the white soffit */
  --ink:          #191713;   /* the painted sign */
  --ink-soft:     #4c4740;
  --gold:         #e0a32e;   /* mac & cheese, cornbread crust */
  --gold-dark:    #b57f18;
  --greens:       #46583a;   /* collards */

  /* Type */
  --display: "Anton", "Arial Narrow", Impact, sans-serif;
  --body:    "Zilla Slab", Georgia, "Times New Roman", serif;

  /* Scale */
  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.4vw, 4.6rem);

  /* Space */
  --gutter: clamp(1.15rem, 0.9rem + 1.2vw, 2rem);
  --section-y: clamp(3.25rem, 2.4rem + 3.6vw, 6rem);
  --wrap: 1180px;
  --wrap-narrow: 760px;

  --radius: 3px;
  --shadow: 0 1px 2px rgba(25, 23, 19, .06), 0 8px 26px -14px rgba(25, 23, 19, .3);
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--stone-pale);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--brick); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--brick-dark); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem;
  font-family: var(--display); letter-spacing: .06em;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: 0 0 .5em;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Eyebrow — small caps label that names the section's role */
.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: var(--step--1);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brick);
  margin: 0 0 .85rem;
}
.eyebrow--light { color: var(--gold); }

.rule-under {
  position: relative;
  padding-bottom: .55rem;
}
.rule-under::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 3.5rem; height: 4px;
  background: var(--gold);
}
.rule-under.is-centred::after { left: 50%; transform: translateX(-50%); }

/* --------------------------------------------------------------------------
   4. Signature: the checkerboard masonry band
   The facade of 937 Locklayer is laid in alternating brick and stone squares.
   -------------------------------------------------------------------------- */
.checker {
  height: 18px;
  background-color: var(--stone);
  background-image:
    linear-gradient(45deg, var(--brick) 25%, transparent 25%, transparent 75%, var(--brick) 75%),
    linear-gradient(45deg, var(--brick) 25%, transparent 25%, transparent 75%, var(--brick) 75%);
  background-size: 36px 36px;
  background-position: 0 0, 18px 18px;
}
.checker--tall { height: 36px; }
.checker--thin { height: 10px; background-size: 20px 20px; background-position: 0 0, 10px 10px; }

/* --------------------------------------------------------------------------
   5. Layout
   -------------------------------------------------------------------------- */
.wrap {
  width: min(100% - (var(--gutter) * 2), var(--wrap));
  margin-inline: auto;
}
.wrap--narrow { max-width: var(--wrap-narrow); width: min(100% - (var(--gutter) * 2), var(--wrap-narrow)); }

.section { padding-block: var(--section-y); }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: #ded9cf; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--brick { background: var(--brick); color: #fdf1ec; }
.section--brick h2, .section--brick h3 { color: #fff; }
.section--tight { padding-block: clamp(2rem, 1.5rem + 2vw, 3.25rem); }

.grid { display: grid; gap: clamp(1.5rem, 1rem + 2vw, 2.75rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); }

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 1.2rem + 2.5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.25fr 1fr; }
  .split--wide-right { grid-template-columns: 1fr 1.25fr; }
  .split__media.is-first { order: -1; }
}

.stack > * + * { margin-top: 1.15rem; }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display);
  font-size: var(--step--1);
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .95rem 1.6rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--ink); }

.btn--brick { background: var(--brick); color: #fff; border-color: var(--brick); }
.btn--brick:hover { background: var(--brick-dark); border-color: var(--brick-dark); color: #fff; }

.btn--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ink:hover { background: #000; color: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: currentColor; }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn-row--centred { justify-content: center; }

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--brick);
  color: #fdeee9;
  font-size: var(--step--1);
  letter-spacing: .04em;
}
.topbar__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .5rem 1.5rem;
  padding-block: .5rem;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar__hours { display: flex; flex-wrap: wrap; gap: .35rem 1.1rem; }
.topbar__social { display: flex; gap: .9rem; align-items: center; }
.topbar__social a { display: inline-flex; }
.topbar__social svg { width: 17px; height: 17px; fill: currentColor; }

.masthead {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  border-bottom: 3px solid var(--gold);
}
.masthead__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding-block: .55rem;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 190px; height: auto; }
@media (max-width: 420px) { .brand img { width: 148px; } }

.nav-toggle {
  display: inline-flex; align-items: center; gap: .55rem;
  background: none; border: 2px solid rgba(255,255,255,.3); color: #fff;
  font-family: var(--display); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .55rem .85rem; border-radius: var(--radius); cursor: pointer;
}
.nav-toggle__bars { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top: 6px; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav__list { display: flex; align-items: center; gap: .1rem; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }

.nav__link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--display); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: #efeae0; text-decoration: none;
  padding: .8rem .7rem;
  background: none; border: 0; cursor: pointer;
  border-bottom: 3px solid transparent;
}
.nav__link:hover { color: var(--gold); }
.nav__link[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }
.nav__caret { width: 9px; height: 9px; fill: currentColor; transition: transform .18s ease; }
.nav__link[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }

.nav__panel {
  display: none;
  position: absolute; top: 100%; left: 0; min-width: 232px;
  background: var(--paper);
  border: 1px solid var(--stone-line);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
  padding: .4rem;
  list-style: none; margin: 0;
}
.nav__item.is-open .nav__panel { display: block; }
.nav__panel a {
  display: block; padding: .55rem .75rem;
  font-family: var(--body); font-size: .95rem; color: var(--ink); text-decoration: none;
}
.nav__panel a:hover { background: var(--brick-tint); color: var(--brick-dark); }
.nav__panel a[aria-current="page"] { color: var(--brick); font-weight: 600; }

.nav__cta { margin-left: .5rem; white-space: nowrap; }

@media (max-width: 1040px) {
  .nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 3px solid var(--gold);
    flex-direction: column; align-items: stretch;
    padding: .6rem var(--gutter) 1.4rem;
    max-height: calc(100vh - 100%); overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { width: 100%; justify-content: space-between; padding: .9rem .25rem; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav__link[aria-current="page"] { border-bottom-color: var(--gold); }
  .nav__panel {
    position: static; display: none; min-width: 0;
    background: transparent; border: 0; box-shadow: none;
    padding: .25rem 0 .6rem .9rem;
  }
  .nav__item.is-open .nav__panel { display: block; }
  .nav__panel a { color: #d8d2c6; padding: .5rem .25rem; }
  .nav__panel a:hover { background: transparent; color: var(--gold); }
  .nav__panel a[aria-current="page"] { color: var(--gold); }
  .nav__cta { margin: 1rem 0 0; justify-content: center; }
}
@media (min-width: 1041px) {
  .nav-toggle { display: none; }
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(25,23,19,.9) 0%, rgba(25,23,19,.65) 45%, rgba(25,23,19,.35) 100%);
}
.hero__inner {
  position: relative;
  padding-block: clamp(3.5rem, 2.5rem + 6vw, 8rem);
  max-width: 46rem;
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero__sub { color: #e4dfd4; font-size: var(--step-1); line-height: 1.5; margin-bottom: 1.75rem; }
.hero__since {
  display: inline-block;
  font-family: var(--display); font-size: var(--step--1); letter-spacing: .2em;
  color: var(--ink); background: var(--gold);
  padding: .4rem .85rem; margin-bottom: 1.4rem;
}

/* Page banner for interior pages */
.pagehead { position: relative; background: var(--ink); }
.pagehead__inner { position: relative; padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.pagehead h1 { color: #fff; margin-bottom: .3em; }
.pagehead p { color: #ceC8bc; color: #cec8bc; max-width: 48rem; font-size: var(--step-1); line-height: 1.5; }
.pagehead__media { position: absolute; inset: 0; }
.pagehead__media img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.pagehead__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(25,23,19,.92) 0%, rgba(25,23,19,.7) 60%, rgba(25,23,19,.5) 100%);
}

/* Breadcrumb */
.crumbs {
  background: var(--paper);
  border-bottom: 1px solid var(--stone-line);
  font-size: var(--step--1);
}
.crumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: .7rem 0; }
.crumbs li::after { content: "/"; margin-left: .4rem; color: var(--stone); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--brick); text-decoration: underline; }
.crumbs [aria-current="page"] { color: var(--brick); }

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--paper);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 1rem + 1vw, 2rem);
  height: 100%;
}
.card--flush { padding: 0; overflow: hidden; }
.card__body { padding: clamp(1.2rem, 1rem + 1vw, 1.75rem); }
.card h3 { margin-bottom: .45em; font-size: var(--step-1); }
.card--ink { background: #221f1a; border-color: #3a352d; color: #ded9cf; }
.card--ink h3 { color: #fff; }

.card-link {
  display: block; text-decoration: none; color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--brick); color: inherit; }
.card-link:hover h3 { color: var(--brick); }
.card-link__more {
  display: inline-block; margin-top: .8rem;
  font-family: var(--display); font-size: var(--step--1); letter-spacing: .12em; text-transform: uppercase;
  color: var(--brick);
}

.figure { margin: 0; }
.figure img { border-radius: var(--radius); width: 100%; }
.figure figcaption {
  font-size: var(--step--1); color: var(--ink-soft); padding-top: .6rem; line-height: 1.45;
}
.figure--framed img {
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
}

/* --------------------------------------------------------------------------
   10. Menu components
   -------------------------------------------------------------------------- */
/* Day selector — the steam-table line */
.hotline {
  display: flex; flex-wrap: wrap; gap: .5rem;
  padding: .75rem;
  background: linear-gradient(180deg, #b8b5ac 0%, #9d9a91 42%, #86837a 100%);
  border: 1px solid #6f6c64;
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
}
.hotline__pan {
  flex: 1 1 8.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .1rem;
  text-align: center; text-decoration: none;
  padding: .8rem .5rem;
  background: linear-gradient(180deg, #f7f5ef 0%, #e3dfd4 100%);
  border: 1px solid #7d7a71;
  border-radius: 2px;
  color: var(--ink);
  box-shadow: inset 0 2px 3px rgba(255,255,255,.85), inset 0 -3px 6px rgba(0,0,0,.1);
  transition: transform .15s ease, background .15s ease;
}
.hotline__pan:hover { transform: translateY(-2px); background: linear-gradient(180deg, #fff 0%, #efe9dc 100%); color: var(--ink); }
.hotline__day {
  font-family: var(--display); font-size: .95rem; letter-spacing: .1em; text-transform: uppercase; line-height: 1.1;
}
.hotline__time { font-size: .72rem; letter-spacing: .04em; color: var(--ink-soft); }
.hotline__pan[aria-current="page"] {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-color: #6d4c0c;
  box-shadow: inset 0 2px 3px rgba(255,255,255,.5), 0 0 0 2px var(--ink);
}
.hotline__pan[aria-current="page"] .hotline__time { color: #4a3406; }

/* Menu blocks */
.menu-block { margin-bottom: 2.5rem; }
.menu-block:last-child { margin-bottom: 0; }
.menu-block__head {
  display: flex; align-items: baseline; gap: .9rem;
  border-bottom: 2px solid var(--ink);
  padding-bottom: .45rem; margin-bottom: 1.1rem;
}
.menu-block__head h3 { margin: 0; }
.menu-block__note { font-size: var(--step--1); color: var(--ink-soft); font-style: italic; margin-left: auto; }

.dish-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: .1rem .5rem;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
}
.dish-list li {
  padding: .42rem .1rem;
  border-bottom: 1px dotted var(--stone-line);
  font-size: .98rem;
}
.dish-list li sup { color: var(--brick); font-weight: 700; }

.plate-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.plate-list li {
  background: var(--brick-tint);
  border-left: 4px solid var(--brick);
  padding: .85rem 1.1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.plate-list strong { font-family: var(--display); font-weight: 400; letter-spacing: .03em; display: block; text-transform: uppercase; font-size: 1.02rem; }

.cornbread-note {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--ink); color: #ece7dc;
  padding: 1.15rem 1.35rem; border-radius: var(--radius);
  border-left: 5px solid var(--gold);
}
.cornbread-note p { margin: 0; font-size: .97rem; }
.cornbread-note strong { color: var(--gold); }

/* --------------------------------------------------------------------------
   11. Info / detail lists
   -------------------------------------------------------------------------- */
.deflist { margin: 0; display: grid; gap: 0; }
.deflist > div {
  display: grid; grid-template-columns: 1fr; gap: .1rem;
  padding: .85rem 0; border-bottom: 1px solid var(--stone-line);
}
.deflist > div:last-child { border-bottom: 0; }
@media (min-width: 560px) {
  .deflist > div { grid-template-columns: 10.5rem 1fr; gap: 1rem; align-items: baseline; }
}
.deflist dt {
  font-family: var(--display); font-size: .84rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brick);
}
.deflist dd { margin: 0; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: .7rem .5rem; border-bottom: 1px solid var(--stone-line); }
.hours-table th {
  font-family: var(--display); font-weight: 400; letter-spacing: .1em; text-transform: uppercase; font-size: .88rem;
}
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-table .is-closed { color: var(--stone); }

/* --------------------------------------------------------------------------
   12. Timeline (history)
   -------------------------------------------------------------------------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: .6rem; bottom: .6rem;
  width: 2px; background: var(--stone-line);
}
.timeline > li { position: relative; padding: 0 0 2.1rem 2.5rem; }
.timeline > li:last-child { padding-bottom: 0; }
.timeline > li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--brick); border: 3px solid var(--stone-pale);
}
.section--paper .timeline > li::before { border-color: var(--paper); }
.timeline__year {
  display: block;
  font-family: var(--display); font-size: var(--step-1); letter-spacing: .04em; color: var(--brick);
  line-height: 1.1; margin-bottom: .2rem;
}
.timeline h3 { font-size: var(--step-1); margin-bottom: .35em; }

/* --------------------------------------------------------------------------
   13. FAQ accordion
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: .75rem; }
.faq__item {
  background: var(--paper);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__item[open] { border-color: var(--brick); }
.faq__q {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.25rem;
  cursor: pointer;
  font-family: var(--display); font-size: var(--step-1); text-transform: uppercase; letter-spacing: .01em;
  line-height: 1.2;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--brick); }
.faq__q::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.5rem; line-height: 1; color: var(--brick);
  transition: transform .2s ease;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 1.25rem 1.35rem; }
.faq__a p:first-child { margin-top: 0; }

/* --------------------------------------------------------------------------
   14. Reviews
   -------------------------------------------------------------------------- */
.quote-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); }
.quote {
  background: var(--paper);
  border: 1px solid var(--stone-line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.3rem;
  position: relative;
  display: flex; flex-direction: column;
}
.quote__mark {
  font-family: var(--display); font-size: 2.6rem; line-height: .7; color: var(--gold);
  display: block; margin-bottom: .5rem;
}
.quote p { font-size: 1.02rem; }
.quote__src {
  margin-top: auto; padding-top: .9rem;
  font-family: var(--display); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
}

.stat-row { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); text-align: center; }
.stat__num { display: block; font-family: var(--display); font-size: var(--step-3); color: var(--gold); line-height: 1; }
.stat__label { font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; }

/* --------------------------------------------------------------------------
   15. Gallery
   -------------------------------------------------------------------------- */
.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.gallery figure { margin: 0; background: var(--paper); border: 1px solid var(--stone-line); border-radius: var(--radius); overflow: hidden; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.035); }
.gallery figcaption { padding: .8rem 1rem 1rem; font-size: .93rem; color: var(--ink-soft); line-height: 1.45; }

/* --------------------------------------------------------------------------
   16. Forms
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .35rem; }
.field label {
  font-family: var(--display); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
}
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem;
  padding: .8rem .9rem;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: #fff; color: var(--ink);
  width: 100%;
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brick); }
.field__hint { font-size: var(--step--1); color: var(--ink-soft); }
@media (min-width: 640px) { .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; } }

.callout {
  background: var(--brick-tint);
  border-left: 5px solid var(--brick);
  padding: 1.15rem 1.35rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout--gold { background: #fbf0d6; border-left-color: var(--gold); }
.callout h3 { font-size: var(--step-1); margin-bottom: .4em; }
.callout p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--ink); color: #b9b3a7; font-size: .96rem; }
.footer__grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  padding-block: clamp(2.5rem, 2rem + 2vw, 3.75rem);
}
.footer h2, .footer h3 {
  font-size: .88rem; letter-spacing: .16em; color: var(--gold); margin-bottom: 1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer a { color: #ddd7cb; text-decoration: none; }
.footer a:hover { color: var(--gold); text-decoration: underline; }
.footer__brand img { width: 200px; margin-bottom: 1rem; }
.footer address { font-style: normal; line-height: 1.7; }
.footer__social { display: flex; gap: .8rem; margin-top: 1rem; }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid #45403a; border-radius: 50%;
}
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer__social svg { width: 16px; height: 16px; fill: currentColor; }

.colophon {
  border-top: 1px solid #35312b;
  padding-block: 1.25rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .86rem; color: #8d867a;
}
.colophon a { color: #8d867a; }

/* --------------------------------------------------------------------------
   18. Utilities
   -------------------------------------------------------------------------- */
.text-centre { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.measure { max-width: 62ch; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.tag-row { display: flex; flex-wrap: wrap; gap: .45rem; }
.tag {
  font-family: var(--display); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--stone-pale); color: var(--ink-soft);
  border: 1px solid var(--stone-line);
  padding: .3rem .6rem; border-radius: 100px;
}
.section--ink .tag { background: #2c2822; border-color: #423d35; color: #cfc9bd; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

/* --------------------------------------------------------------------------
   19. Print
   -------------------------------------------------------------------------- */
@media print {
  .masthead, .topbar, .footer, .nav, .hero__media, .pagehead__media, .checker, .btn { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section { padding-block: 1rem; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
