:root {
  --olive: #95a272;
  --olive-dark: #7d8c5b;
  --blue: #5a9bc7;
  --text: #2d2b29;
  --muted: #6f6b64;
  --warm: #f3f1ec;
  --line: #dfd9d0;
  --white: #fff;
  --shadow: 0 10px 24px rgba(30, 26, 18, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(780px, 100%); }
.section { padding: 88px 0; }
.center { text-align: center; margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06); }
.header-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: min-height 0.2s ease, padding 0.2s ease;
}
.site-header.is-scrolled .header-inner { min-height: 52px; }
.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.brand-name {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}
.brand-logo img,
.brand-logo .custom-logo,
.brand-logo .custom-logo-link img,
.brand-logo .default-logo {
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  object-fit: contain;
}

.footer-small-logo img,
.footer-logo img,
.logo-badge img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.footer-logo img { width: 90px; height: 90px; }
.logo-badge img { width: 84px; height: 84px; }

.primary-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
  align-items: center;
}
.primary-nav a {
  font-size: 0.88rem;
  color: #5c5850;
}
.primary-nav .current-menu-item a,
.primary-nav a:hover { color: var(--olive-dark); }

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: var(--olive);
  padding: 10px;
}
.mobile-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  margin: 4px 0;
}

.olive-bg { background: var(--olive); color: #fff; }
.white-bg { background: #fff; }
.warm-gray-bg { background: var(--warm); }
.page-hero { padding: 72px 0; }
.page-hero p,
.olive-banner p,
.blue-cta p { color: rgba(255, 255, 255, 0.92); }
.photo-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.photo-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(82, 130, 168, 0.4);
}
.photo-hero .hero-content {
  position: relative;
  z-index: 1;
  padding: 110px 0;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 58px);
}
.hero-copy {
  padding: 90px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy h1 {
  font-size: clamp(2.9rem, 5vw, 4.9rem);
  line-height: 1.03;
  max-width: 11ch;
  margin: 0 0 18px;
  color: #fff;
}
.hero-copy .eyebrow {
  font-style: italic;
  font-weight: 700;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
}
.hero-copy p { color: rgba(255, 255, 255, 0.92); }
.hero-image,
.photo-card {
  background-size: cover;
  background-position: center;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

h1, h2, h3, .btn {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.08; margin: 0 0 12px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; margin: 0 0 16px; }
h3 { font-size: 1.45rem; line-height: 1.2; margin: 0 0 8px; }
p { margin: 0 0 16px; color: var(--muted); }
.signature { font-style: italic; color: var(--olive-dark); font-weight: 700; font-size: 1.5rem; }
.script { font-style: italic; font-size: 1.35rem; }
.light { color: #fff; }
.sub { max-width: 620px; margin-inline: auto; }
.quote-author { color: rgba(255, 255, 255, 0.9); }
blockquote { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; margin: 20px 0; color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-solid { background: var(--olive); color: #fff; }
.btn-solid.white { background: #fff; color: var(--blue); }
.btn-outline { background: transparent; border-color: rgba(255, 255, 255, 0.95); color: #fff; }

.split-hours,
.split-content,
.two-col-form {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hour-card,
.contact-card,
.info-card,
.form-shell,
.post-card,
.allergen-box {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.hour-card { margin-bottom: 14px; }
.hour-card span { color: var(--olive-dark); font-weight: 700; }
.image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.photo-card { border-radius: 18px; box-shadow: var(--shadow); min-height: 320px; }
.photo-card.tall { min-height: 430px; }
.olive-banner { background: var(--olive); color: #fff; }
.banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
}
.icon.green { background: rgba(149, 162, 114, 0.14); color: var(--olive-dark); }
.icon.blue { background: rgba(90, 155, 199, 0.15); color: var(--blue); }
.blue-cta { background: var(--blue); color: #fff; }

.home-menu-wrap { padding-top: 24px; }
.home-menu-wrap .menu-section h2 { font-size: 2rem; }
.home-menu-wrap .menu-intro { max-width: 760px; margin: 0 auto 32px; }
.home-menu-wrap .menu-note { margin-top: 44px; }
.small { font-size: 0.88rem; }
.muted { color: var(--muted); }
.menu-section { margin-bottom: 52px; }
.menu-section h2 { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
}
.allergen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 8px;
  background: #f3f5ed;
  color: var(--olive-dark);
  font-size: 0.75rem;
  font-weight: 700;
}
.allergen-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px 20px;
  font-size: 0.92rem;
  color: var(--muted);
}
.form-shell form { display: grid; gap: 16px; }
.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  border: 1px solid #ddd7cf;
  border-radius: 10px;
  min-height: 52px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
.form-shell textarea { min-height: 160px; resize: vertical; }
.wp-content-styled h2,
.wp-content-styled h3 { margin-top: 38px; }
.wp-content-styled h2 { padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.wp-content-styled ul { padding-left: 20px; }

.site-footer { background: var(--olive); color: #fff; }
.footer-intro { padding-bottom: 28px; }
.site-footer h2,
.site-footer h3 { color: #fff; }
.site-footer p,
.site-footer a { color: rgba(255, 255, 255, 0.92); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 10px 0 42px;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
  padding: 18px 0 36px;
}

@media (max-width: 980px) {
  .mobile-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: 58px 16px auto 16px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .primary-nav .menu { flex-direction: column; gap: 14px; }
  .hero-split,
  .split-hours,
  .split-content,
  .two-col-form,
  .image-grid,
  .cards.three,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-split { min-height: auto; }
  .hero-image { min-height: 380px; }
  .banner-inner { flex-direction: column; align-items: flex-start; }
  .allergen-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .header-inner { min-height: 56px; }
  .site-header.is-scrolled .header-inner { min-height: 50px; }
  .site-branding { gap: 10px; }
  .brand-name {
    font-size: 0.64rem;
    letter-spacing: 0.24em;
  }
  .brand-logo img,
  .brand-logo .custom-logo,
  .brand-logo .custom-logo-link img,
  .brand-logo .default-logo {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
  }
  .hero-copy { padding: 54px 24px; }
  .hero-actions .btn { width: 100%; }
  .photo-card { min-height: 220px; }
  .allergen-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2.2rem; }
}
