/* =============================================================================
   Illinois Valley Local — design system
   Warm, local, trustworthy. A well-designed local newspaper's business section.
   No Tailwind, no build step: plain CSS loaded via <link>.
   ============================================================================= */

/* ---------------------------------------------------------------- Tokens --- */
:root {
  --paper: #FBFAF6;      /* warm cream page background */
  --surface: #FFFFFF;    /* cards / raised panels */
  --surface-2: #F5F2EA;  /* subtle warm fill (chips, wells) */
  --ink: #1C1A17;        /* primary text */
  --muted: #6E685E;      /* secondary text */
  --line: #E7E3D9;       /* hairline borders */

  --accent: #126E5A;     /* valley teal-green — links, buttons, active */
  --accent-ink: #0C4B3D; /* darker accent — hover */
  --accent-tint: #E4EFEA;/* accent wash for backgrounds */
  --warm: #C2703D;       /* terracotta — category accents, tags */
  --warm-ink: #9A521F;   /* darker terracotta for text on tint */
  --warm-tint: #F5E7DC;  /* terracotta wash */

  --danger: #B23A2E;     /* validation / errors */

  --radius-card: 14px;
  --radius-pill: 999px;
  --radius-sm: 8px;

  --shadow: 0 1px 2px rgba(28, 26, 23, .06), 0 8px 24px rgba(28, 26, 23, .05);
  --shadow-lift: 0 2px 6px rgba(28, 26, 23, .08), 0 16px 40px rgba(28, 26, 23, .09);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --wrap: 1120px;
  --gap: clamp(1rem, 2.5vw, 1.75rem);
}

/* -------------------------------------------------------------- Reset-ish --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-ink); text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--ink); margin: 0 0 .5em; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

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

/* --------------------------------------------------------------- Layout ---- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
main { display: block; min-height: 50vh; }
.section { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--tight { padding-block: clamp(1.75rem, 4vw, 3rem); }
.stack > * + * { margin-top: 1rem; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--warm-ink);
  margin: 0 0 .6rem;
  display: block;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 60ch; }
.muted { color: var(--muted); }
.center { text-align: center; }

/* Skip link */
.skip-link {
  position: absolute; left: 8px; top: -60px;
  background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: var(--radius-sm);
  z-index: 200; transition: top .15s ease;
}
.skip-link:focus { top: 8px; color: #fff; text-decoration: none; }

/* --------------------------------------------------------------- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 246, .92);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
  /* the distinctive local touch: thin teal accent rule */
  box-shadow: inset 0 3px 0 var(--accent);
  transition: box-shadow .2s ease, background .2s ease;
}
/* Subtle warm shadow once scrolled (toggled by JS) */
.site-header.is-scrolled {
  background: rgba(251, 250, 246, .97);
  box-shadow: inset 0 3px 0 var(--accent), 0 6px 22px rgba(122, 82, 44, .10);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 68px; padding-block: .55rem;
  flex-wrap: nowrap;
}
.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex; align-items: baseline; gap: .5ch;
  white-space: nowrap;
  margin-right: auto;
}
.brand:hover { color: var(--ink); text-decoration: none; }
.brand__mark { color: var(--accent); }
.brand__dot { color: var(--warm); }

/* Primary nav — clean row of high-value links + search + CTA */
.main-nav {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: nowrap;
}
.main-nav__links { display: flex; align-items: center; gap: 1.4rem; }
.main-nav a.navlink {
  position: relative;
  font-size: .95rem; font-weight: 500; color: var(--ink);
  padding: .3rem 0; border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-nav a.navlink:hover { color: var(--accent-ink); text-decoration: none; border-bottom-color: var(--warm); }
.main-nav a.navlink--ask { color: var(--accent-ink); font-weight: 600; }
.main-nav a.navlink--ask:hover { color: var(--accent); border-bottom-color: var(--warm); }

/* Header search — compact pill */
.header-search { display: flex; align-items: stretch; }
.header-search .search-field { min-width: 190px; padding: .5rem .9rem; font-size: .9rem; }
.header-cta { flex: 0 0 auto; }

/* Hamburger toggle — hidden on desktop, shown on narrow screens */
.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 0; margin-left: .25rem;
  background: transparent; border: 1px solid var(--line); border-radius: 10px;
  cursor: pointer; color: var(--ink);
  align-items: center; justify-content: center;
  transition: border-color .15s ease, background .15s ease;
}
.nav-toggle:hover { border-color: var(--accent); background: var(--surface-2); }
.nav-toggle__bars { position: relative; display: block; width: 20px; height: 14px; }
.nav-toggle__bars span {
  position: absolute; left: 0; height: 2px; width: 100%;
  background: currentColor; border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6px; }
.nav-toggle__bars span:nth-child(3) { top: 12px; }
/* Animate to an X when the menu is open */
.site-header.is-nav-open .nav-toggle__bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.site-header.is-nav-open .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.site-header.is-nav-open .nav-toggle__bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Responsive: collapse the nav behind the hamburger at ~820px */
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(28, 26, 23, .12);
    padding: 1rem clamp(1rem, 4vw, 2rem) 1.35rem;
    /* Hidden by default; revealed when .is-nav-open is set on the header */
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .site-header.is-nav-open .main-nav {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .main-nav__links { flex-direction: column; align-items: flex-start; gap: .35rem; width: 100%; }
  .main-nav a.navlink {
    display: block; width: 100%; padding: .6rem 0;
    border-bottom: 1px solid var(--line);
  }
  .main-nav a.navlink:hover { border-bottom-color: var(--line); }
  .header-search { width: 100%; }
  .header-search .search-field { flex: 1 1 auto; width: 100%; border-radius: var(--radius-pill); }
  .header-cta { width: 100%; }
}

/* ----------------------------------------------------------- Search box ---- */
.search {
  display: flex; gap: .5rem; align-items: stretch;
}
.search--hero { max-width: 620px; }
.search-field {
  flex: 1 1 auto;
  font: inherit;
  padding: .7rem .95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink);
}
.search-field::placeholder { color: var(--muted); }
.search-field:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); outline: none; }

/* --------------------------------------------------------------- Buttons --- */
.btn, .btn-outline, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5ch;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  line-height: 1; text-align: center; white-space: nowrap;
  padding: .72rem 1.15rem; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .05s ease;
}
.btn { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn:hover { background: var(--accent-ink); border-color: var(--accent-ink); color: #fff; text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-outline { background: transparent; color: var(--accent-ink); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent-tint); color: var(--accent-ink); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface-2); color: var(--ink); text-decoration: none; }
.btn-warm { background: var(--warm); color: #fff; border-color: var(--warm); }
.btn-warm:hover { background: var(--warm-ink); border-color: var(--warm-ink); color: #fff; text-decoration: none; }
.btn-sm { padding: .5rem .85rem; font-size: .85rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .6rem; }

/* ----------------------------------------------------------------- Hero ---- */
/* Base hero (used by city + category pages): warm light gradient. */
.hero {
  position: relative;
  padding-block: clamp(3rem, 8vw, 5.5rem);
  background:
    radial-gradient(120% 90% at 85% -10%, var(--accent-tint) 0%, transparent 55%),
    radial-gradient(90% 80% at -5% 0%, var(--warm-tint) 0%, transparent 50%),
    var(--paper);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero__inner { max-width: 760px; }
.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: .35em;
}
.hero h1 em { font-style: italic; color: var(--accent-ink); }
.hero__lead { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--muted); margin-bottom: 1.6rem; max-width: 54ch; }
.hero__actions { margin-top: 1.1rem; }
.hero__note { font-size: .85rem; color: var(--muted); margin-top: .9rem; }
.hero__note strong { color: var(--warm-ink); }

/* ------------------------------------------------ Full-bleed photo hero ---- */
/* Homepage only: real Main-Street photo behind a warm-dark gradient overlay. */
.hero--photo {
  min-height: clamp(420px, 62vh, 560px);
  display: flex; align-items: center;
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
  color: #fff;
  border-bottom: 0;
  border-radius: 0 0 clamp(16px, 3vw, 28px) clamp(16px, 3vw, 28px);
  /* two-stop overlay (top→bottom + a left wash) keeps text WCAG-AA legible */
  background:
    linear-gradient(180deg, rgba(20, 18, 14, .34) 0%, rgba(20, 18, 14, .60) 62%, rgba(20, 18, 14, .78) 100%),
    linear-gradient(90deg, rgba(20, 18, 14, .55) 0%, rgba(20, 18, 14, .10) 62%, transparent 100%),
    var(--hero-img) center 62% / cover no-repeat,
    var(--ink);
}
.hero--photo .hero__inner { max-width: 720px; position: relative; z-index: 2; }
.hero--photo .hero__eyebrow { color: #F3E7CE; opacity: .95; }
.hero--photo .hero__title {
  color: #FFFDF8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35), 0 8px 30px rgba(0, 0, 0, .35);
  text-wrap: balance;
}
.hero--photo .hero__title em { font-style: italic; color: var(--warm); }
.hero--photo .hero__lead {
  color: #F3EFE6; max-width: 46ch;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .40);
}
/* Search on the overlay: solid surface for contrast + a warm CTA button */
.hero--photo .search--hero .search-field {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(255, 255, 255, .5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .22);
}
.hero--photo .hero__ghost {
  color: #FFFDF8; border-color: rgba(255, 253, 248, .55);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(2px);
}
.hero--photo .hero__ghost:hover {
  color: var(--ink); background: rgba(255, 253, 248, .95);
  border-color: rgba(255, 253, 248, .95);
}
.hero--photo .hero__note { color: #EDE7DA; }
.hero--photo .hero__note strong { color: #F3E7CE; }
/* Photographer credit — unobtrusive, bottom-right */
.hero__credit {
  position: absolute; right: .9rem; bottom: .7rem; z-index: 2;
  font-family: var(--font-mono);
  font-size: .64rem; letter-spacing: .04em;
  color: rgba(255, 253, 248, .70);
  background: rgba(20, 18, 14, .30);
  padding: .2rem .5rem; border-radius: 999px;
  text-decoration: none;
}
.hero__credit:hover { color: #fff; text-decoration: none; background: rgba(20, 18, 14, .55); }
@media (max-width: 640px) {
  .hero--photo { min-height: clamp(380px, 70vh, 460px); text-align: left; }
  .hero--photo .search--hero { flex-direction: column; }
  .hero--photo .search--hero .search-field,
  .hero--photo .search--hero .btn { width: 100%; }
}

/* --------------------------------------------------------------- Stat row -- */
.statline {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem;
  align-items: baseline;
}
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--ink); line-height: 1; }
.stat__label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .35rem; }
.statbar {
  display: inline-flex; flex-wrap: wrap; gap: .4rem 1.4rem;
  font-size: .98rem; color: var(--muted);
}
.statbar strong { color: var(--ink); font-family: var(--font-display); font-weight: 600; }

/* ------------------------------------------------- Section headings block -- */
.section-head { margin-bottom: 1.6rem; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .25rem; }
.section-head .section-head__meta { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; }
.section-head p { color: var(--muted); margin: 0; max-width: 62ch; }

/* --------------------------------------------------- Category pill grid ---- */
.cat-grid {
  display: grid; gap: .8rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.cat-pill {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease, transform .1s ease;
}
.cat-pill:hover { text-decoration: none; color: var(--ink); border-color: var(--warm); box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.cat-pill__emoji { font-size: 1.5rem; line-height: 1; flex: none; }
.cat-pill__body { display: flex; flex-direction: column; min-width: 0; }
.cat-pill__label { font-weight: 600; }
.cat-pill__count { font-size: .82rem; color: var(--muted); font-family: var(--font-mono); }

/* -------------------------------------------------------- City chip cloud -- */
.chip-cloud { display: flex; flex-wrap: wrap; gap: .55rem; }
.city-chip {
  display: inline-flex; align-items: baseline; gap: .45ch;
  padding: .45rem .9rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-pill); color: var(--ink); font-weight: 500; font-size: .92rem;
  transition: border-color .15s ease, background .15s ease;
}
.city-chip:hover { text-decoration: none; color: var(--accent-ink); border-color: var(--accent); background: var(--accent-tint); }
.city-chip__count { font-family: var(--font-mono); font-size: .78rem; color: var(--muted); }

/* Terracotta tag / category chip */
.tag {
  display: inline-flex; align-items: center; gap: .4ch;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .28rem .6rem; border-radius: var(--radius-pill);
  background: var(--warm-tint); color: var(--warm-ink);
}
.tag--accent { background: var(--accent-tint); color: var(--accent-ink); }
.tag--ink { background: var(--surface-2); color: var(--ink); }

/* --------------------------------------------------------- Business card --- */
.card-grid {
  display: grid; gap: var(--gap);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.biz-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-card); box-shadow: var(--shadow);
  overflow: hidden; height: 100%;
  transition: border-color .15s ease, box-shadow .15s ease, transform .1s ease;
}
.biz-card:hover { border-color: var(--warm); box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.biz-card__body { padding: 1.15rem 1.15rem 1.25rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.biz-card__top { display: flex; align-items: center; gap: .85rem; }
.biz-card__logo {
  width: 46px; height: 46px; border-radius: 11px; flex: none;
  object-fit: cover; border: 1px solid var(--line); background: var(--surface-2);
}
.biz-card__logo--fallback {
  display: grid; place-items: center; font-size: 1.35rem;
  background: var(--warm-tint);
}
.biz-card__name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; line-height: 1.2; margin: 0; }
.biz-card__name a { color: var(--ink); }
.biz-card__name a:hover { color: var(--accent-ink); text-decoration: none; }
.biz-card__type { font-size: .82rem; color: var(--muted); }
.biz-card__summary { color: var(--muted); font-size: .92rem; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.biz-card__meta { display: flex; flex-wrap: wrap; gap: .4rem .8rem; font-size: .82rem; color: var(--muted); margin-top: auto; padding-top: .3rem; }
.biz-card__meta .loc { color: var(--accent-ink); font-weight: 500; }
.biz-card__badges { display: flex; flex-wrap: wrap; gap: .35rem; }

.verified { display: inline-flex; align-items: center; gap: .3ch; color: var(--accent-ink); font-size: .78rem; font-weight: 600; }
.verified::before { content: "✓"; font-weight: 700; }

/* --------------------------------------------------------- Breadcrumbs ----- */
.breadcrumbs { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .02em; color: var(--muted); margin: 0 0 1.1rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .3rem .5rem; padding: 0; margin: 0; align-items: center; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: .5rem; }
.breadcrumbs li + li::before { content: "/"; color: var(--line); margin-right: .1rem; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--accent-ink); }
.breadcrumbs [aria-current="page"] { color: var(--ink); }

/* --------------------------------------------------- Filter / link rows ---- */
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill-link {
  display: inline-flex; align-items: center; gap: .4ch;
  padding: .42rem .85rem; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--line);
  color: var(--ink); font-size: .88rem; font-weight: 500;
}
.pill-link:hover { text-decoration: none; border-color: var(--accent); background: var(--accent-tint); color: var(--accent-ink); }
.pill-link .n { font-family: var(--font-mono); font-size: .78rem; color: var(--muted); }

/* ------------------------------------------------------- Business detail --- */
.biz-detail__header { display: flex; gap: 1.25rem; align-items: flex-start; flex-wrap: wrap; }
.biz-detail__logo { width: 84px; height: 84px; border-radius: 16px; object-fit: cover; border: 1px solid var(--line); flex: none; background: var(--surface-2); }
.biz-detail__logo--fallback { display: grid; place-items: center; font-size: 2.4rem; background: var(--warm-tint); }
.biz-detail h1 { font-size: clamp(1.9rem, 4.5vw, 2.75rem); margin-bottom: .15em; }
.biz-detail__sub { color: var(--muted); font-size: 1.02rem; }
.biz-detail__sub .loc { color: var(--accent-ink); font-weight: 500; }

.actions-row { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.25rem 0 .25rem; }

.layout-split { display: grid; gap: clamp(1.5rem, 4vw, 2.75rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .layout-split { grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr); } }

.panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-card); box-shadow: var(--shadow);
  padding: 1.25rem 1.35rem;
}
.panel + .panel { margin-top: 1.25rem; }
.panel h2, .panel h3 { font-size: 1.2rem; margin-bottom: .7rem; }

/* Definition-style hours / info block */
.deflist { display: grid; grid-template-columns: auto 1fr; gap: .3rem 1rem; margin: 0; font-size: .93rem; }
.deflist dt { color: var(--muted); font-family: var(--font-mono); font-size: .78rem; letter-spacing: .03em; text-transform: uppercase; padding-top: .12rem; }
.deflist dd { margin: 0; color: var(--ink); }
.hours-raw { font-family: var(--font-mono); font-size: .88rem; white-space: pre-wrap; color: var(--ink); background: var(--surface-2); border-radius: var(--radius-sm); padding: .7rem .85rem; }

.service-chips { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0; list-style: none; }
.service-chips li {
  padding: .35rem .8rem; border-radius: var(--radius-pill);
  background: var(--warm-tint); color: var(--warm-ink);
  font-size: .85rem; font-weight: 500;
}

.contact-lines { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; font-size: .95rem; }
.contact-lines li { display: flex; gap: .6rem; align-items: flex-start; }
.contact-lines .k { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); min-width: 74px; padding-top: .18rem; }

/* Posts / specials feed */
.feed { display: grid; gap: 1rem; list-style: none; padding: 0; margin: 0; }
.post-item {
  border: 1px solid var(--line); border-left: 3px solid var(--warm);
  border-radius: var(--radius-card); background: var(--surface);
  padding: 1rem 1.15rem;
}
.post-item h3 { font-size: 1.12rem; margin: .3rem 0 .35rem; }
.post-item h3 a { color: var(--ink); }
.post-item h3 a:hover { color: var(--accent-ink); text-decoration: none; }
.post-item__meta { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }
.post-item__body { color: var(--muted); font-size: .93rem; margin: .4rem 0 0; }
.post-dates { font-size: .82rem; color: var(--accent-ink); font-weight: 500; margin-top: .5rem; }

/* Claim CTA banner */
.claim-banner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--accent-tint); border: 1px solid #cfe3db;
  border-radius: var(--radius-card); padding: 1.1rem 1.35rem;
  margin: 1.5rem 0;
}
.claim-banner p { margin: 0; color: var(--accent-ink); }
.claim-banner strong { color: var(--accent-ink); }

/* --------------------------------------------------------- CTA band -------- */
.cta-band {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(194,112,61,.14) 0%, transparent 55%),
    var(--ink);
  color: #fff; border-radius: 20px;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.cta-band p { color: rgba(255,255,255,.82); max-width: 52ch; margin-inline: auto; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

/* --------------------------------------------------------------- FAQ ------- */
.faq { display: grid; gap: .6rem; }
.faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 0 1.15rem;
  overflow: hidden;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  padding: 1rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--warm); font-weight: 700; font-size: 1.3rem; font-family: var(--font-body); flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details > p, .faq details > div { margin: 0 0 1.1rem; color: var(--muted); }

/* --------------------------------------------------------------- Forms ----- */
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-card); box-shadow: var(--shadow);
  padding: clamp(1.25rem, 4vw, 2rem);
}
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 620px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } .form-grid .span-2 { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.field .req { color: var(--warm-ink); }
.field .hint { font-size: .8rem; color: var(--muted); }
.input, .select, .textarea {
  font: inherit; width: 100%;
  padding: .65rem .8rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink);
}
.textarea { min-height: 120px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); outline: none; }
.input[aria-invalid="true"], .select[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: .82rem; font-weight: 500; margin: 0; }
.form-note { font-size: .88rem; color: var(--muted); }
.form-actions { margin-top: .25rem; display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.reassure { display: inline-flex; align-items: center; gap: .4ch; color: var(--accent-ink); font-size: .88rem; font-weight: 600; }
.reassure::before { content: "✓"; }

/* --------------------------------------------------------- Flash message --- */
.flash {
  display: flex; align-items: flex-start; gap: .75rem;
  background: var(--accent-tint); border: 1px solid #cfe3db; color: var(--accent-ink);
  border-radius: var(--radius-card); padding: .85rem 1.1rem;
  margin: 1.25rem 0;
}
.flash__icon { font-weight: 700; }
.flash p { margin: 0; }
.flash__close { margin-left: auto; background: none; border: 0; color: inherit; font-size: 1.2rem; cursor: pointer; line-height: 1; padding: 0 .2rem; }
.flash--error { background: #F7E6E3; border-color: #edccc7; color: var(--danger); }

/* --------------------------------------------------------- Pagination ------ */
.pagination { display: flex; flex-wrap: wrap; gap: .35rem; justify-content: center; list-style: none; padding: 0; margin: 2rem 0 0; font-family: var(--font-mono); font-size: .88rem; }
.pagination > * { display: inline-flex; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; padding: .45rem .7rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink); text-decoration: none;
}
.pagination a:hover { border-color: var(--accent); background: var(--accent-tint); color: var(--accent-ink); text-decoration: none; }
.pagination .active span, .pagination [aria-current] span { background: var(--accent); border-color: var(--accent); color: #fff; }
.pagination .disabled span { color: var(--muted); opacity: .5; }
/* Laravel Tailwind paginator fallback: hide the "Showing x to y" duplicate text nav on small view */
nav[role="navigation"] p.text-sm { color: var(--muted); font-size: .85rem; text-align: center; }

/* --------------------------------------------------------- Empty state ----- */
.empty {
  text-align: center; padding: clamp(2rem, 6vw, 3.5rem) 1rem;
  border: 1px dashed var(--line); border-radius: var(--radius-card);
  background: var(--surface);
}
.empty h2 { font-size: 1.35rem; }
.empty p { color: var(--muted); max-width: 46ch; margin-inline: auto; }

/* --------------------------------------------------------------- Footer ---- */
.site-footer {
  background: var(--ink); color: rgba(245,241,232,.82);
  border-top: 4px solid var(--warm);
  margin-top: 4rem;
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.75rem;
}
.site-footer a { color: rgba(245,241,232,.82); }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.footer-brand { max-width: 34ch; }
.footer-brand .brand { color: #fff; font-size: 1.3rem; }
.footer-brand .brand:hover { color: #fff; }
.footer-brand p { color: rgba(245,241,232,.7); font-size: .92rem; margin-top: .6rem; }
.footer-col h3 { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(245,241,232,.55); margin-bottom: .9rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; font-size: .92rem; }
.footer-cta { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-card); padding: 1.1rem; }
.footer-cta p { color: rgba(245,241,232,.8); font-size: .9rem; margin: 0 0 .8rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2.5rem; padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: .4rem 1.25rem; align-items: center; justify-content: space-between;
  font-size: .82rem; color: rgba(245,241,232,.6);
}
.footer-bottom a { color: rgba(245,241,232,.75); text-decoration: underline; }

/* --------------------------------------------------------------- 404 ------- */
.error-page { text-align: center; padding-block: clamp(3rem, 10vw, 7rem); }
.error-page .code { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--warm-ink); }
.error-page h1 { font-size: clamp(2.4rem, 8vw, 4.5rem); margin: .25rem 0 .4rem; }
.error-page p { color: var(--muted); max-width: 44ch; margin-inline: auto 1.5rem; }
.error-page .btn-row { justify-content: center; }

/* ---------------------------------------------------------- Utilities ------ */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.divider { height: 1px; background: var(--line); border: 0; margin: 2.5rem 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
