/* ============================================================
   POST OAK SMOKEHOUSE — template stylesheet
   Central Texas barbecue: char-dark pit rooms, butcher-paper
   kraft counters, brick-red stamps, and fat-drip gold. Heavy
   slab display type used like a hand-painted sign; everything
   else stays plain and readable.

   All business details are fictional placeholders. Swap the
   colors below once and the whole site follows.
   ============================================================ */

:root {
  /* The pit (dark) */
  --char: #1e1712;
  --char-2: #2a2018;
  --char-deep: #150f0a;
  /* The counter (light) */
  --kraft: #e9dcc3;
  --kraft-2: #ddcda9;
  --cream: #f6efdf;
  /* Stamps and accents */
  --brick: #a63a29;
  --brick-deep: #7e2a1b;
  --gold: #d9a441;
  /* Text */
  --ink: #2b2118;
  --smoke: #6f6049;
  --paper: #f6efdf;
  --fog: #cbbda6;
  /* Lines */
  --line-l: rgba(43, 33, 24, 0.18);
  --line-d: rgba(246, 239, 223, 0.16);
  /* Type */
  --display: "Alfa Slab One", "Rockwell", serif;
  --body: "Source Sans 3", ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--kraft);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: var(--brick);
}

::selection {
  background: var(--gold);
  color: var(--char);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ------------------------------------------------------------
   Type
   ------------------------------------------------------------ */

h1,
h2,
h3,
.price-tag {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 0.45em;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
}

h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
}

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

.lede {
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  max-width: 56ch;
}

/* Brand flag: small caps label with gold stars, like a stamped
   mark on a butcher ticket. */
.flag {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brick);
}

.flag::before,
.flag::after {
  content: "\2605";
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.on-dark .flag,
.flag.on-dark {
  color: var(--gold);
}

.on-dark .flag::before,
.on-dark .flag::after {
  color: var(--brick);
}

/* ------------------------------------------------------------
   Layout
   ------------------------------------------------------------ */

.shell {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(52px, 7vw, 96px) 0;
}

.section-heading {
  max-width: 64ch;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.section-heading p:not(.flag) {
  color: var(--smoke);
  max-width: 58ch;
}

.on-dark,
.section.on-dark {
  background: var(--char);
  color: var(--paper);
}

.on-dark .section-heading p:not(.flag),
.on-dark p {
  color: var(--fog);
}

.on-dark h1,
.on-dark h2,
.on-dark h3 {
  color: var(--paper);
}

.section.on-cream {
  background: var(--cream);
}

/* ------------------------------------------------------------
   Top strip: hours, phone, address. Pinned above the header so
   the two questions everyone has (when, where) come first.
   ------------------------------------------------------------ */

.topbar {
  background: var(--gold);
  color: var(--char);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 8px clamp(12px, 2.4vw, 24px);
}

.topbar-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 26px;
  text-align: center;
}

.topbar a {
  color: var(--char);
  text-decoration: none;
  border-bottom: 2px solid rgba(30, 23, 18, 0.35);
}

.topbar a:hover {
  border-bottom-color: var(--char);
}

.topbar .addr {
  display: none;
}

@media (min-width: 760px) {
  .topbar .addr {
    display: inline;
  }
}

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 130;
  background: var(--char);
  border-bottom: 3px solid var(--gold);
  padding: 12px clamp(12px, 2.4vw, 24px);
}

.header-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  text-decoration: none;
  color: var(--paper);
  line-height: 1;
}

.brand-name {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--paper);
}

.brand-name span {
  color: var(--gold);
}

.brand-town {
  display: block;
  margin-top: 3px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fog);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header .nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-header .nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--paper);
  border-bottom: 3px solid transparent;
}

.site-header .nav a:hover {
  color: var(--gold);
}

.site-header .nav a.active {
  border-bottom-color: var(--gold);
  color: var(--gold);
}

/* Tap-to-call stays in the header at every size; for a barbecue
   joint the phone is the highest-value action on the page. It
   compacts on small screens and hides only when space runs out. */
.header-call {
  min-height: 44px;
  padding: 9px 16px;
  font-size: 0.92rem;
  white-space: nowrap;
}

@media (max-width: 379px) {
  .btn.header-call {
    display: none;
  }
}

/* Hamburger */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 42px;
  padding: 0;
  background: var(--char-2);
  border: 2px solid var(--line-d);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  width: 19px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--paper);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile drawer */
.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(14, 10, 7, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.nav-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-header .nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 200;
    height: 100dvh;
    width: min(320px, 85vw);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 86px 22px 30px;
    background: var(--char);
    border-left: 3px solid var(--gold);
    transform: translateX(103%);
    transition: transform 260ms ease;
    overflow-y: auto;
  }

  .site-header .nav.is-open {
    transform: translateX(0);
  }

  .site-header .nav a {
    min-height: 52px;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line-d);
  }

  .site-header .nav a.active {
    color: var(--gold);
    border-bottom-color: var(--line-d);
    box-shadow: inset 3px 0 0 var(--gold);
    padding-left: 16px;
  }
}

.nav-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--char-2);
  color: var(--paper);
  border: 2px solid var(--line-d);
  border-radius: 6px;
  cursor: pointer;
}

@media (min-width: 921px) {
  .nav-close {
    display: none;
  }
}

/* ------------------------------------------------------------
   Buttons: chunky, stamped, confident
   ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 13px 26px;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease,
    color 150ms ease, border-color 150ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-brick {
  background: var(--brick);
  color: var(--cream);
  border-color: var(--brick-deep);
}

.btn-brick:hover {
  background: var(--brick-deep);
}

.btn-cream {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}

.btn-cream:hover {
  background: rgba(246, 239, 223, 0.12);
}

.btn-char {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-char:hover {
  background: var(--char);
  color: var(--cream);
}

/* ------------------------------------------------------------
   Hero: full-bleed pit photo under a char gradient
   ------------------------------------------------------------ */

.hero {
  position: relative;
  background: var(--char);
  color: var(--paper);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(24, 17, 12, 0.94) 0%,
    rgba(24, 17, 12, 0.82) 46%,
    rgba(24, 17, 12, 0.45) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 11vw, 150px) 0 clamp(64px, 9vw, 130px);
}

.hero-copy {
  max-width: 640px;
}

.hero h1 {
  color: var(--cream);
  text-shadow: 0 3px 0 rgba(14, 10, 7, 0.45);
}

.hero .lede {
  color: #eadfca;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  padding: 8px 15px;
  border: 2px solid rgba(217, 164, 65, 0.55);
  border-radius: 6px;
  background: rgba(21, 15, 10, 0.55);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-facts li strong {
  color: var(--gold);
}

/* ------------------------------------------------------------
   Menu preview: butcher tickets on the kraft counter
   ------------------------------------------------------------ */

.meat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 20px;
}

.meat-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(43, 33, 24, 0.14);
}

.meat-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}

.meat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.meat-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px 22px;
  flex: 1;
}

.meat-body h3 {
  margin: 0;
}

.meat-body p {
  margin: 0;
  color: var(--smoke);
  font-size: 0.97rem;
  flex: 1;
}

.price-tag {
  margin: 4px 0 0;
  padding-top: 12px;
  border-top: 2px dashed var(--line-l);
  font-size: 1.45rem;
  color: var(--brick);
}

.price-tag span {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-left: 6px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 4vw, 44px);
}

/* ------------------------------------------------------------
   "When it's gone, it's gone" banner
   ------------------------------------------------------------ */

.gone-banner {
  background: var(--brick);
  color: var(--cream);
  text-align: center;
  padding: clamp(44px, 6vw, 72px) 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.gone-banner h2 {
  color: var(--cream);
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  margin-bottom: 0.35em;
}

.gone-banner p {
  color: #f3ddc9;
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

.gone-stars {
  display: block;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.9em;
  padding-left: 0.9em;
  margin-bottom: 14px;
}

/* ------------------------------------------------------------
   Story split
   ------------------------------------------------------------ */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.split-photo {
  position: relative;
}

.split-photo img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid var(--ink);
  border-radius: 8px;
}

/* Gold mount behind the photo, like a framed picture on the wall */
.split-photo::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  background: var(--gold);
  border-radius: 8px;
  z-index: -1;
}

.on-dark .split-photo img {
  border-color: var(--gold);
}

.on-dark .split-photo::before {
  background: var(--brick);
}

.split-copy .btn {
  margin-top: 18px;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split-photo {
    margin-right: 14px;
  }
}

/* ------------------------------------------------------------
   Visit block: hours board + how the counter works
   ------------------------------------------------------------ */

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

@media (max-width: 860px) {
  .visit-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hours-board {
  background: var(--char);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 26px 26px 24px;
  box-shadow: 0 10px 26px rgba(43, 33, 24, 0.18);
}

.hours-board h3 {
  color: var(--gold);
  margin-bottom: 14px;
}

.hours-board table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.hours-board th,
.hours-board td {
  text-align: left;
  padding: 9px 0;
  border-top: 1px solid var(--line-d);
}

.hours-board tr:first-child th,
.hours-board tr:first-child td {
  border-top: 0;
}

.hours-board th {
  font-weight: 800;
  color: var(--cream);
}

.hours-board td {
  text-align: right;
  color: var(--fog);
  font-weight: 700;
}

.hours-note {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 2px dashed var(--line-d);
  font-size: 0.88rem;
  color: var(--fog);
}

.hours-contact {
  margin-top: 16px;
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.hours-contact a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hours-contact a:hover {
  color: var(--gold);
}

/* Counter steps: a real sequence, numbered in slab */
.counter-steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.counter-steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 0 76px;
  min-height: 56px;
}

.counter-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--char);
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.counter-steps h3 {
  margin-bottom: 4px;
}

.counter-steps p {
  margin: 0;
  color: var(--smoke);
}

/* ------------------------------------------------------------
   Interior page hero (compact char band, optional photo)
   ------------------------------------------------------------ */

.page-hero {
  position: relative;
  background: var(--char);
  color: var(--paper);
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}

.page-hero .hero-photo::after {
  background: linear-gradient(
    100deg,
    rgba(24, 17, 12, 0.95) 0%,
    rgba(24, 17, 12, 0.86) 50%,
    rgba(24, 17, 12, 0.62) 100%
  );
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(52px, 7.5vw, 96px) 0;
}

.page-hero h1 {
  color: var(--cream);
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  text-shadow: 0 3px 0 rgba(14, 10, 7, 0.45);
}

.page-hero .lede {
  color: #eadfca;
}

/* ------------------------------------------------------------
   The butcher-paper board (menu page signature)
   ------------------------------------------------------------ */

.board {
  position: relative;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: clamp(26px, 4.5vw, 56px);
  box-shadow: 0 14px 34px rgba(43, 33, 24, 0.16);
}

/* One rotated gold stamp per board, like a price-gun sticker */
.stamp {
  position: absolute;
  top: -18px;
  right: clamp(16px, 5vw, 48px);
  transform: rotate(5deg);
  background: var(--gold);
  color: var(--char);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 8px 16px;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 14px rgba(43, 33, 24, 0.22);
  white-space: nowrap;
}

.board-title {
  text-align: center;
  margin-bottom: clamp(24px, 3.5vw, 40px);
}

.board-title h2 {
  margin-bottom: 6px;
}

.board-title p {
  margin: 0;
  color: var(--smoke);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(28px, 4vw, 44px) clamp(32px, 5vw, 64px);
}

.board-section h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brick);
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.board-section h3::after {
  content: "";
  flex: 1;
  border-top: 2px solid var(--line-l);
}

.board-section-note {
  margin: -6px 0 14px;
  font-size: 0.88rem;
  color: var(--smoke);
}

.board-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.menu-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.menu-line strong {
  font-weight: 800;
}

.menu-dots {
  flex: 1;
  min-width: 18px;
  border-bottom: 2px dotted rgba(43, 33, 24, 0.35);
  transform: translateY(-4px);
}

.menu-price {
  font-family: var(--display);
  font-size: 1.02rem;
  color: var(--brick);
  white-space: nowrap;
}

.menu-sub {
  margin: 3px 0 0;
  font-size: 0.88rem;
  color: var(--smoke);
}

.menu-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: var(--gold);
  color: var(--char);
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: 2px;
}

/* ------------------------------------------------------------
   Gold note strip (call-before-you-drive honesty)
   ------------------------------------------------------------ */

.note-strip {
  background: var(--gold);
  color: var(--char);
  text-align: center;
  padding: clamp(24px, 3.5vw, 38px) 0;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  font-weight: 800;
}

.note-strip a {
  color: var(--char);
  text-decoration: none;
  border-bottom: 3px solid var(--brick);
  white-space: nowrap;
}

.note-strip a:hover {
  color: var(--brick);
}

/* ------------------------------------------------------------
   Info cards (catering details, plain facts)
   ------------------------------------------------------------ */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 18px;
}

.info-card {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 20px 22px;
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.info-card p {
  margin: 0;
  color: var(--smoke);
  font-size: 0.95rem;
}

/* ------------------------------------------------------------
   Closing CTA band (dark, centered)
   ------------------------------------------------------------ */

.cta-band {
  background: var(--char);
  color: var(--paper);
  text-align: center;
  border-top: 3px solid var(--gold);
  padding: clamp(48px, 7vw, 88px) 0;
}

.cta-band h2 {
  color: var(--cream);
}

.cta-band p {
  color: var(--fog);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .hero-actions {
  justify-content: center;
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */

.site-footer {
  background: var(--char-deep);
  color: var(--fog);
  border-top: 3px solid var(--gold);
  padding: clamp(44px, 6vw, 64px) 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(26px, 4vw, 48px);
}

.footer-brand .brand-name {
  font-size: 1.5rem;
}

.footer-brand p {
  margin-top: 10px;
  font-size: 0.95rem;
}

.site-footer h3 {
  color: var(--gold);
  font-size: 0.95rem;
  font-family: var(--body);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 0.98rem;
}

.footer-list a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 2px solid rgba(217, 164, 65, 0.5);
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.footer-list a:hover {
  color: var(--gold);
}

.footer-fineprint {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line-d);
  font-size: 0.86rem;
  color: #9b8d77;
}

/* ------------------------------------------------------------
   Story page: pull quote + plain fact list
   ------------------------------------------------------------ */

.pull-quote {
  margin: clamp(30px, 5vw, 56px) auto;
  max-width: 22ch;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.12;
  color: var(--brick);
}

.on-dark .pull-quote {
  color: var(--gold);
}

.pull-quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--body);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--smoke);
}

.on-dark .pull-quote cite {
  color: var(--fog);
}

/* ------------------------------------------------------------
   Visit page: directions list + map placeholder
   ------------------------------------------------------------ */

.fact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.fact-list li {
  display: grid;
  gap: 3px;
  padding-bottom: 16px;
  border-bottom: 2px dashed var(--line-l);
}

.fact-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fact-list .fact-label {
  font-family: var(--display);
  font-size: 1.02rem;
  color: var(--brick);
}

.fact-list p {
  margin: 0;
  color: var(--smoke);
}

.fact-list a {
  color: var(--ink);
  font-weight: 700;
}

/* Map placeholder: an honest "map goes here" tile, not a broken embed.
   Swap for a real map iframe or static image at launch. */
.map-frame {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  min-height: 320px;
  height: 100%;
  background-color: var(--char);
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(217, 164, 65, 0.14) 0 1px,
      transparent 1px 46px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(217, 164, 65, 0.14) 0 1px,
      transparent 1px 46px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.map-frame-inner {
  background: var(--char-deep);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 20px 24px;
  max-width: 30ch;
}

.map-frame-inner .flag {
  margin: 0 auto 8px;
  color: var(--gold);
}

.map-frame-inner .flag::before,
.map-frame-inner .flag::after {
  color: var(--brick);
}

.map-frame-inner p {
  margin: 0;
  color: var(--paper);
  font-weight: 800;
}

.map-frame-inner span {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fog);
}

/* ------------------------------------------------------------
   Contact page: demo-safe form
   ------------------------------------------------------------ */

.contact-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

@media (max-width: 860px) {
  .contact-cols {
    grid-template-columns: 1fr;
  }
}

.form-card {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: clamp(24px, 3.5vw, 38px);
  box-shadow: 0 14px 34px rgba(43, 33, 24, 0.14);
}

.demo-flag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px 14px;
  background: rgba(217, 164, 65, 0.2);
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.demo-flag svg {
  flex: none;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
  font-size: 0.94rem;
}

.field label .req {
  color: var(--brick);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--line-l);
  border-radius: 6px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--ink);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 520px) {
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.form-note {
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--smoke);
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--char);
  color: var(--paper);
  font-weight: 700;
  display: none;
}

.form-status.is-shown {
  display: block;
}

.form-status strong {
  color: var(--gold);
}

/* ------------------------------------------------------------
   Scroll reveal (html.js gated so no-JS still shows everything)
   ------------------------------------------------------------ */

html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

html.js .reveal[data-delay="1"] {
  transition-delay: 110ms;
}

html.js .reveal[data-delay="2"] {
  transition-delay: 220ms;
}

html.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------
   Interim stub pages (replaced in later build phases)
   ------------------------------------------------------------ */

.stub {
  padding: clamp(72px, 12vw, 140px) 0;
  text-align: center;
}

.stub .flag {
  margin-left: auto;
  margin-right: auto;
}

.stub p {
  color: var(--smoke);
  max-width: 52ch;
  margin: 0 auto 24px;
}

/* ------------------------------------------------------------
   Reduced motion
   ------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
