/* =================================================================
   The Backyard — Saratoga Springs
   Modern theme stylesheet
   Palette pulled from the courtyard photography:
   twilight navy sky · amber string lights · ember chairs · stone cream
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Core palette — from thebackyardsaratoga.com brand CSS
     forest #0b3326 · field #123923 · cream #f3ead5 · paper #f8edda
     gold #b1804c · terracotta #d14326 · navy #1e324b */
  --ink:         #0b3326;   /* forest — primary dark */
  --ink-900:     #07170f;   /* deep — darkest (footer) */
  --ink-800:     #0d2418;   /* header green */
  --ink-700:     #123923;   /* field green */
  --amber:       #b1804c;   /* gold — primary accent */
  --amber-bright:#c79a55;   /* gold-soft */
  --amber-soft:  #e6d2a3;   /* pale gold (eyebrow on dark) */
  --ember:       #d14326;   /* terracotta — secondary accent */
  --ember-deep:  #b3361c;
  --cream:       #f3ead5;   /* cream — page background */
  --cream-200:   #f8edda;   /* paper */
  --cream-300:   #dfc99f;   /* cream-deep */
  --sage:        #1f4b33;
  --moss:        #123923;

  /* Semantic */
  --bg:          var(--cream);
  --bg-dark:     var(--ink);
  --text:        #142319;   /* deep forest ink on cream */
  --text-soft:   #4c5a46;   /* muted forest-gray */
  --text-invert: #fff8ea;   /* warm cream-white */
  --text-invert-soft: rgba(243, 234, 213, 0.74);
  --line:        rgba(20, 35, 25, 0.14);
  --line-invert: rgba(255, 248, 234, 0.18);

  /* Type — brand stacks: Inter (body) + Iowan Old Style serif (headings) */
  --font-display: "Iowan Old Style", "Lora", Baskerville, Georgia, "Times New Roman", serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1200px;
  --container-narrow: 920px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(7, 23, 15, 0.08);
  --shadow:    0 18px 50px -20px rgba(7, 23, 15, 0.45);
  --shadow-lg: 0 40px 90px -35px rgba(7, 23, 15, 0.6);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

/* Accessibility utilities */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  top: -100px; left: 1rem;
  z-index: 999;
  background: var(--ink);
  color: var(--text-invert);
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 1rem; }
.brand--logo img { max-height: 56px; width: auto; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.6rem, 1.6rem + 4.6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem); }
p { color: var(--text-soft); }
strong { color: inherit; font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.lede {
  font-size: clamp(1.1rem, 1rem + 0.55vw, 1.4rem);
  line-height: 1.55;
  color: var(--text);
}
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--amber);
  --btn-fg: var(--ink-900);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, color 0.3s ease;
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform 0.35s var(--ease); }
.btn:hover { transform: translateY(-3px); background: var(--ember); color: var(--text-invert); box-shadow: 0 14px 30px -12px rgba(209, 67, 38, 0.55); }
.btn:hover svg { transform: translateX(4px); }
.btn--gold { --btn-bg: var(--amber); --btn-fg: var(--ink-900); }
.btn--gold:hover { background: var(--ember); color: var(--text-invert); box-shadow: 0 14px 30px -12px rgba(209, 67, 38, 0.55); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text-invert);
  border-color: var(--line-invert);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255, 248, 234, 0.12); color: var(--text-invert); box-shadow: none; }
.btn--dark { --btn-bg: var(--ink-800); --btn-fg: var(--text-invert); }
.btn--dark:hover { background: var(--ink); color: var(--text-invert); box-shadow: 0 14px 30px -12px rgba(7, 23, 15, 0.6); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--ember);
  letter-spacing: 0.01em;
}
.link-arrow svg { width: 1em; height: 1em; transition: transform 0.3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* =================================================================
   Header / Navigation
   ================================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  padding-block: 1.4rem;
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: inline-flex; flex-direction: column; line-height: 1; color: var(--text-invert); transition: color 0.4s ease; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
}
.brand__name em { font-style: italic; color: var(--amber); }
.brand__kicker {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.35rem;
  opacity: 0.78;
}
.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav__menu { display: flex; align-items: center; gap: 1.9rem; }
.nav__link {
  color: var(--text-invert);
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after { transform: scaleX(1); }
/* If a real WP menu is assigned, its links inherit the same treatment */
.nav__menu a { color: inherit; font-weight: 500; font-size: 0.94rem; opacity: 0.9; transition: opacity 0.3s ease; }
.nav__menu a:hover { opacity: 1; }
.nav__menu .current-menu-item > a { opacity: 1; color: var(--amber); }

/* Scrolled state — forest-green glass (matches the brand's solid green header) */
.site-header.is-scrolled {
  background: rgba(7, 23, 15, 0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 8px 30px -18px rgba(7, 23, 15, 0.6);
  border-bottom-color: var(--line-invert);
  padding-block: 0.9rem;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-invert);
  border-radius: 50%;
  background: rgba(255, 248, 234, 0.08);
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 2px;
  background: var(--text-invert);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 5px); }
/* Header stays dark in both states, so the toggle keeps its light styling. */

/* =================================================================
   Hero
   ================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: clamp(6.5rem, 16vw, 8rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
  color: var(--text-invert);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--ink-900) center/cover no-repeat;
  background-image: url("../images/backyard-night-courtyard-wide.jpg");
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,23,15,0.55) 0%, rgba(7,23,15,0.15) 35%, rgba(7,23,15,0.7) 100%),
    radial-gradient(120% 80% at 70% 20%, rgba(177,128,76,0.18) 0%, transparent 55%);
}
.hero__inner {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
  position: relative;
}
.hero__eyebrow { color: var(--amber-soft); margin-bottom: 1.5rem; }
.hero__eyebrow::before { background: var(--amber); opacity: 1; }
.hero h1 { max-width: 16ch; text-shadow: 0 2px 40px rgba(0,0,0,0.35); }
.hero h1 em { font-style: italic; color: var(--amber-bright); }
.hero__sub {
  max-width: 46ch;
  margin-top: 1.6rem;
  font-size: clamp(1.05rem, 0.98rem + 0.5vw, 1.3rem);
  color: var(--text-invert-soft);
  line-height: 1.6;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

/* Hero meta strip */
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 3.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-invert);
}
.hero__meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.hero__meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
}
.hero__meta-value { font-size: 1.05rem; font-weight: 500; color: var(--text-invert); }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  right: clamp(1.5rem, 5vw, 4rem);
  bottom: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-invert-soft);
  writing-mode: vertical-rl;
}
.scroll-cue__line { width: 1px; height: 54px; background: var(--line-invert); position: relative; overflow: hidden; }
.scroll-cue__line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--amber);
  animation: cueDrop 2.2s var(--ease) infinite;
}
@keyframes cueDrop { 0% { transform: translateY(-100%);} 60%,100% { transform: translateY(100%);} }

/* =================================================================
   Intro / mood statement
   ================================================================= */
.intro { background: var(--cream); }
.intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.intro__statement { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.3rem); font-family: var(--font-display); line-height: 1.3; color: var(--ink); font-weight: 500; }
.intro__statement em { font-style: italic; color: var(--ember); }
.intro__body { margin-top: 1.5rem; max-width: 42ch; }
.intro__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.intro__media img { width: 100%; height: 100%; object-fit: cover; }
.intro__badge {
  position: absolute;
  left: 1.4rem; bottom: 1.4rem;
  background: rgba(11,51,38,0.78);
  backdrop-filter: blur(8px);
  color: var(--text-invert);
  border: 1px solid var(--line-invert);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.intro__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 0 rgba(177,128,76,0.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 70%,100% { box-shadow: 0 0 0 10px rgba(177,128,76,0);} }

/* =================================================================
   Feature trio — The Table / The Yard / Backyard Menu
   ================================================================= */
.features { background: var(--ink); color: var(--text-invert); position: relative; }
.features .section-head h2 { color: var(--text-invert); }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; }
.features .section-head p { color: var(--text-invert-soft); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: clamp(380px, 44vw, 520px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  box-shadow: var(--shadow);
}
.feature-card__img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.feature-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7,23,15,0) 30%, rgba(7,23,15,0.55) 60%, rgba(7,23,15,0.92) 100%);
}
.feature-card:hover .feature-card__img { transform: scale(1.07); }
.feature-card__body { padding: clamp(1.5rem, 3vw, 2.2rem); }
.feature-card__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--amber);
  letter-spacing: 0.1em;
}
.feature-card h3 { margin-top: 0.5rem; color: var(--text-invert); }
.feature-card p { margin-top: 0.7rem; color: var(--text-invert-soft); font-size: 0.98rem; }
.feature-card__link { margin-top: 1.2rem; display: inline-flex; align-items: center; gap: 0.5rem; color: var(--amber-bright); font-weight: 600; font-size: 0.92rem; }
.feature-card__link svg { width: 1em; height: 1em; transition: transform 0.3s var(--ease); }
.feature-card:hover .feature-card__link svg { transform: translateX(5px); }

/* =================================================================
   Menu preview
   ================================================================= */
.menu-preview { background: var(--cream); }
.menu-preview__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.menu-preview__head .section-head { margin-bottom: 0; }
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); }
.menu-group + .menu-group { margin-top: 2.4rem; }
.menu-group__title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 700;
  padding-bottom: 0.9rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 0.4rem 1rem; padding-block: 0.7rem; align-items: baseline; }
.menu-item__name { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--ink); }
.menu-item__price { font-family: var(--font-display); font-weight: 600; color: var(--ember); white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-item__desc { grid-column: 1 / -1; font-size: 0.92rem; color: var(--text-soft); margin-top: -0.1rem; }
.menu-note { margin-top: 2.5rem; font-size: 0.9rem; color: var(--text-soft); display: flex; align-items: center; gap: 0.6rem; }
.menu-note svg { width: 1.1em; height: 1.1em; color: var(--ember); flex-shrink: 0; }

/* =================================================================
   Events
   ================================================================= */
.events { background: var(--ink-900); color: var(--text-invert); position: relative; overflow: hidden; }
.events .section-head h2 { color: var(--text-invert); }
.events .section-head p { color: var(--text-invert-soft); }
.event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.event-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  border: 1px solid var(--line-invert);
}
.event-card__img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.event-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(115deg, rgba(7,23,15,0.88) 0%, rgba(7,23,15,0.45) 55%, rgba(7,23,15,0.2) 100%); }
.event-card:hover .event-card__img { transform: scale(1.06); }
.event-card__body { padding: clamp(1.6rem, 3vw, 2.4rem); max-width: 30ch; }
.event-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-900);
  background: var(--amber);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.event-card h3 { color: var(--text-invert); }
.event-card p { color: var(--text-invert-soft); margin-top: 0.6rem; font-size: 0.97rem; }

/* String-lights motif */
.lights { position: absolute; inset: 0 0 auto 0; height: 60px; pointer-events: none; opacity: 0.7; }

/* =================================================================
   Visit / location
   ================================================================= */
.visit { background: var(--cream); }
.visit__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.visit__info .section-head { margin-bottom: 2rem; }
.visit__rows { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2.2rem; }
.visit__row { display: flex; gap: 1.1rem; align-items: flex-start; }
.visit__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(209,67,38,0.1);
  color: var(--ember);
}
.visit__icon svg { width: 20px; height: 20px; }
.visit__row h4 { font-family: var(--font-body); font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-soft); font-weight: 700; margin-bottom: 0.2rem; }
.visit__row p { color: var(--ink); font-size: 1.05rem; }
.visit__row a { color: var(--ink); transition: color 0.25s ease; }
.visit__row a:hover { color: var(--ember); }
.visit__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
}
.visit__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2) contrast(1.02); }

/* =================================================================
   CTA banner
   ================================================================= */
.cta-band { position: relative; color: var(--text-invert); text-align: center; isolation: isolate; overflow: hidden; }
.cta-band__media { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,23,15,0.72), rgba(7,23,15,0.82)); }
.cta-band__inner { padding-block: clamp(5rem, 10vw, 9rem); }
.cta-band h2 { color: var(--text-invert); max-width: 18ch; margin-inline: auto; }
.cta-band h2 em { font-style: italic; color: var(--amber-bright); }
.cta-band p { color: var(--text-invert-soft); max-width: 44ch; margin: 1.3rem auto 2.3rem; font-size: 1.1rem; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =================================================================
   Footer
   ================================================================= */
.site-footer { background: var(--ink-900); color: var(--text-invert); padding-top: clamp(4rem, 7vw, 6rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line-invert);
}
.footer-brand .brand { color: var(--text-invert); }
.footer-brand p { color: var(--text-invert-soft); margin-top: 1.2rem; max-width: 32ch; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); font-weight: 700; margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a, .footer-col li { color: var(--text-invert-soft); font-size: 0.95rem; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--amber-bright); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-block: 2rem;
  font-size: 0.84rem;
  color: var(--text-invert-soft);
}
.footer-bottom a { color: var(--text-invert-soft); }
.footer-bottom a:hover { color: var(--amber-bright); }

/* =================================================================
   Page header (interior pages e.g. Menus)
   ================================================================= */
.page-hero {
  position: relative;
  color: var(--text-invert);
  padding-top: clamp(8rem, 14vw, 12rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  isolation: isolate;
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,23,15,0.65), rgba(7,23,15,0.8)); }
.page-hero h1 { margin-top: 1.2rem; }
.page-hero p { color: var(--text-invert-soft); margin-top: 1.1rem; max-width: 50ch; font-size: 1.1rem; }

/* Full menu layout */
.full-menu { background: var(--cream); }
.full-menu__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem) clamp(2.5rem, 6vw, 6rem); }
@media (max-width: 760px) { .full-menu__grid { grid-template-columns: 1fr; } }

/* WordPress-generated content (pages, posts, editor output) */
.entry-content { color: var(--text-soft); font-size: 1.05rem; }
.entry-content > * + * { margin-top: 1.2rem; }
.entry-content h2, .entry-content h3, .entry-content h4 { color: var(--ink); margin-top: 2rem; }
.entry-content a { color: var(--ember); text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover { color: var(--ember-deep); }
.entry-content img { border-radius: var(--radius-sm); }
.entry-content blockquote {
  border-left: 3px solid var(--amber);
  padding-left: 1.4rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink);
}
.entry-content ul, .entry-content ol { padding-left: 1.4rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li + li { margin-top: 0.4rem; }
.post-card + .post-card { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--line); }
.post-card__title { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.2rem); }
.post-card__title a:hover { color: var(--ember); }
.post-card__meta { color: var(--ember); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; margin: 0.6rem 0 1rem; text-transform: uppercase; }
.pagination { margin-top: 3rem; display: flex; gap: 0.5rem; }
.pagination .page-numbers {
  display: inline-grid; place-items: center;
  min-width: 44px; height: 44px; padding: 0 0.6rem;
  border: 1px solid var(--line); border-radius: 10px;
  font-weight: 600; color: var(--ink);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--ink); color: var(--text-invert); border-color: var(--ink); }

/* =================================================================
   Reveal-on-scroll
   ================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 1000px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:nth-child(3) { grid-column: 1 / -1; min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav__menu { display: none; }
  .nav-toggle { display: block; }
  .intro__grid, .visit__grid { grid-template-columns: 1fr; }
  .intro__media { aspect-ratio: 16 / 11; max-height: 460px; }
  .menu-cols, .event-grid { grid-template-columns: 1fr; }
  .visit__map { aspect-ratio: 16 / 11; }

  /* Mobile menu panel */
  .nav.is-open .nav__menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(7,23,15,0.97);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 90;
  }
  .nav.is-open .nav__link { color: var(--text-invert); font-size: 1.5rem; font-family: var(--font-display); }
  .nav.is-open .nav__link::after { background: var(--amber); }
}
@media (max-width: 620px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card:nth-child(3) { grid-column: auto; }
  .hero__meta { gap: 1.3rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav > .btn--gold { display: none; }   /* declutter header; hamburger + hero CTAs cover it */
  .scroll-cue { display: none; }
}


/* ============================================================
   CLAUDE CUSTOMIZATIONS — appended 2026-06-24
   Readability, menu layout, nav, logo, buttons, hero, toggle.
   ============================================================ */

/* ---- Logo a touch bigger ---- */
.custom-logo,
.site-logo img,
.nav__brand img {
  width: 68px !important;
  height: 68px !important;
  max-width: 68px !important;
  max-height: 68px !important;
  object-fit: contain;
}

/* ---- Stronger hero background ---- */
.hero__media { filter: contrast(1.12) saturate(1.2) brightness(0.9); }
.hero__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,14,20,0.5) 0%, rgba(8,14,20,0.2) 42%, rgba(8,14,20,0.62) 100%);
}
.hero__sub {
  color: rgba(255,251,243,0.97) !important;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0,0,0,.55);
}

/* ---- Feature-card readability ---- */
.feature-card { position: relative; }
.feature-card::after {
  content: ""; position: absolute; left:0; right:0; bottom:0; top:35%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none; z-index: 0;
}
.feature-card__body { position: relative; z-index: 1; }
.feature-card__body p {
  color: rgba(255,251,243,0.96) !important;
  font-size: 16.5px; line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.feature-card__num {
  color: var(--amber-bright, #c79a55) !important;
  font-weight: 700; text-shadow: 0 1px 3px rgba(0,0,0,.6);
}
.feature-card__body h3 { text-shadow: 0 1px 4px rgba(0,0,0,.55); }
.feature-card__link {
  color: var(--amber-bright, #c79a55) !important;
  font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

/* ---- Smooth-scroll one-pager ---- */
html { scroll-behavior: smooth; }
#home, #table, #yard, #menu, #events, #visit { scroll-margin-top: 90px; }

/* ---- Menu/Breakfast toggle pills ---- */
.menu-toggle {
  display: inline-flex; gap: .4rem; margin-top: 1.2rem;
  background: rgba(47,58,44,.08); border-radius: 999px; padding: 5px;
}
.menu-toggle__btn {
  border: none; background: transparent; color: var(--ink, #2f3a2c);
  font-weight: 600; font-size: .95rem; letter-spacing: .3px;
  padding: 9px 22px; border-radius: 999px; cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.menu-toggle__btn:hover { color: var(--ember, #b3361c); }
.menu-toggle__btn.is-active {
  background: var(--amber, #b1804c); color: var(--ink-900, #07170f);
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.menu-cols.is-hidden { display: none !important; }


/* ============================================================
   CLAUDE NAV PILL — primary nav link styled like the Find Us button
   ============================================================ */
.nav__menu .menu-item > a,
.nav__menu .nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 138px;
  height: 57px;
  padding: 0 27px;
  background: var(--amber, #b1804c);
  color: var(--ink-900, #07170f) !important;
  font-weight: 600;
  font-size: 15.2px;
  letter-spacing: .15px;
  line-height: 1;
  border-radius: 999px;
  text-shadow: none !important;
  transition: background .2s ease, transform .2s ease;
}
.nav__menu .menu-item > a:hover,
.nav__menu .nav__link:hover {
  background: var(--amber-bright, #c79a55);
  color: var(--ink-900, #07170f) !important;
  transform: translateY(-1px);
}
/* hide the underline pseudo on the pill */
.nav__menu .menu-item > a::after,
.nav__menu .nav__link::after { display: none !important; }


/* ============================================================
   CLAUDE MENU PRICE READABILITY
   Make inline prices in descriptions + section notes stand out.
   ============================================================ */
.menu-item__addprice {
	font-weight: 700;
	color: var(--amber);
	font-variant-numeric: tabular-nums;
}
/* Section note (e.g. "all sandwiches include French fries") — set apart from the items. */
.menu-group__note {
	margin-top: 0.9rem;
	padding-top: 0.7rem;
	border-top: 1px solid color-mix(in srgb, var(--amber) 28%, transparent);
	font-size: 0.82rem;
	font-style: italic;
	letter-spacing: 0.01em;
	color: var(--amber);
}