
:root {
  --by-cream: #f3ead5;
  --by-cream-deep: #e5d6b7;
  --by-hunter: #1e324b;
  --by-forest: #273f54;
  --by-gold: #b1804c;
  --by-racing-red: #d14326;
  --by-patio-red: #d14326;
  --by-rail-white: #fffaf0;
  --by-track-clay: #8c5a3c;
  --by-canvas: #1e324b;
  --by-deep: #101f31;
  --by-header: #1e324b;
  --by-text-light: #fff8ea;
  --by-text-soft: #f3ead5;
  --by-text-dark: #1e324b;
  --by-border-light: rgba(243, 234, 213, 0.12);
  --by-border-dark: rgba(23, 52, 35, 0.12);
  --by-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --by-radius: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255,250,240,.025) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, var(--by-canvas) 0%, var(--by-deep) 100%);
  color: var(--by-text-soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.site-shell { width: min(1220px, calc(100% - 32px)); margin: 0 auto; }
.narrow-shell { width: min(820px, calc(100% - 32px)); }
.section { position: relative; padding: 88px 0; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px;
}
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-size: .78rem;
  color: var(--by-cream-deep);
}
h1, h2, h3, h4 {
  font-family: Iowan Old Style, Baskerville, Georgia, Times, serif;
  line-height: .95;
  letter-spacing: -.02em;
  margin: 0 0 18px;
  color: var(--by-text-light);
}
h1 { font-size: clamp(3.1rem, 7vw, 6.4rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h3 { font-size: clamp(1.7rem, 3vw, 3rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p { margin: 0 0 16px; color: color-mix(in srgb, var(--by-text-soft) 78%, transparent); }
.hero-rail,
.menu-section-topband {
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--by-rail-white) 0 18px, var(--by-patio-red) 18px 36px, var(--by-gold) 36px 54px, var(--by-hunter) 54px 72px);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--by-border-light);
  background:
    linear-gradient(90deg, rgba(223,63,50,.16), transparent 34%, rgba(194,155,99,.12)),
    rgba(16, 33, 22, .86);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  color: var(--by-text-light);
}
.custom-logo-link img { max-height: 62px; width: auto; }
.brand-lockup { display: inline-flex; flex-direction: column; gap: 6px; }
.brand-kicker {
  font-size: .7rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--by-gold);
}
.brand-title {
  font-family: Iowan Old Style, Baskerville, Georgia, serif;
  font-size: 1.9rem;
  line-height: 1;
}
.menu, .footer-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a,
.footer-menu a { color: var(--by-text-soft); opacity: .92; }
.site-nav a:hover,
.footer-menu a:hover,
.text-link:hover { color: var(--by-cream); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
}
.nav-toggle span { display: block; height: 2px; background: var(--by-text-light); margin: 7px 0; }
.hero-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(223,63,50,.14), transparent 30%),
    linear-gradient(180deg, var(--by-header) 0%, var(--by-canvas) 58%, var(--by-deep) 100%);
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 16%, rgba(243,234,213,.08), transparent 28%),
    radial-gradient(ellipse at 84% 10%, rgba(184,148,95,.18), transparent 22%),
    repeating-linear-gradient(110deg, rgba(255,250,240,.035) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.22));
  pointer-events: none;
}
.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(420px,1.05fr);
  gap: 32px;
  min-height: min(880px, 90vh);
  padding: 40px 0 96px;
}
.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 660px;
  padding: 36px 0 12px;
}
.hero-wordmark-bg {
  position: absolute;
  left: 0;
  top: 24px;
  font-family: Iowan Old Style, Baskerville, Georgia, serif;
  font-size: clamp(4rem, 20vw, 13rem);
  line-height: .9;
  color: rgba(255,248,234,.04);
  pointer-events: none;
}
.hero-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.hero-tags span {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(243,234,213,.12);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .3em;
  color: rgba(243,234,213,.7);
}
.hero-copy > .eyebrow,
.hero-copy > h1,
.hero-copy > .hero-text,
.hero-actions { position: relative; z-index: 2; max-width: 800px; }
.hero-text { max-width: 640px; font-size: 1.07rem; line-height: 1.9; }
.race-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 18px;
  max-width: 420px;
  margin: 28px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(243,234,213,.18);
  border-left: 4px solid var(--by-patio-red);
  background:
    linear-gradient(90deg, rgba(255,250,240,.08), rgba(255,250,240,.02)),
    repeating-linear-gradient(0deg, rgba(255,250,240,.03) 0 1px, transparent 1px 9px);
}
.race-card span {
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .68rem;
  color: var(--by-gold);
}
.race-card strong {
  color: var(--by-text-light);
  font-size: .92rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 40px;
}
.action-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .74rem;
  color: rgba(243,234,213,.78);
}
.action-link span { width: 52px; height: 1px; background: var(--by-gold); }
.action-link-primary { color: var(--by-text-light); font-weight: 700; }
.hero-visual {
  position: relative;
  min-height: 760px;
}
.silks-band,
.silks-band-small {
  background: repeating-linear-gradient(90deg, var(--by-rail-white) 0 22px, var(--by-patio-red) 22px 44px, var(--by-gold) 44px 66px, color-mix(in srgb, var(--by-forest) 95%, black) 66px 88px);
  box-shadow: var(--by-shadow);
}
.silks-band {
  position: absolute;
  right: 6%;
  top: 0;
  z-index: 20;
  width: 38%;
  height: 78px;
}
.hero-image,
.moment-media {
  background-size: cover;
  background-position: center;
  box-shadow: var(--by-shadow);
}
.hero-image.is-placeholder,
.moment-media.is-placeholder {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.24)),
    repeating-linear-gradient(90deg, rgba(255,250,240,.06) 0 3px, transparent 3px 28px),
    radial-gradient(circle at 18% 18%, rgba(243,234,213,.16), transparent 18%),
    linear-gradient(135deg, rgba(223,63,50,.18), rgba(194,155,99,.16), rgba(35,69,48,.34));
}
.hero-image-primary {
  position: absolute;
  right: 0;
  top: 28px;
  width: 88%;
  height: 72%;
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 0 100%, 0 10%);
  background-position: center center;
}
.hero-image-secondary {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54%;
  height: 42%;
  clip-path: polygon(0 0, 100% 8%, 92% 100%, 0 100%);
}
.hero-callout {
  position: absolute;
  left: 0;
  top: 18%;
  max-width: 290px;
  padding-left: 18px;
  border-left: 1px solid var(--by-cream-deep);
  z-index: 24;
}
.callout-kicker {
  margin-bottom: 10px;
  color: var(--by-cream-deep);
  font-size: .74rem;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.hero-callout p {
  font-family: Iowan Old Style, Baskerville, Georgia, serif;
  font-size: clamp(1.6rem, 2.4vw, 2.8rem);
  line-height: 1.04;
  color: var(--by-text-light);
}
.hero-note {
  position: absolute;
  right: 2%;
  bottom: 14%;
  max-width: 360px;
  z-index: 24;
  border: 1px solid rgba(243,234,213,.16);
  border-top: 4px solid var(--by-gold);
  background: rgba(13, 27, 18, .64);
  padding: 22px 24px;
  backdrop-filter: blur(12px);
}
.hero-note-label {
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: .74rem;
  letter-spacing: .34em;
  color: var(--by-cream-deep);
}
.hero-note p { margin: 0; }
.ticker-section {
  overflow: hidden;
  border-bottom: 1px solid var(--by-border-dark);
  background:
    linear-gradient(90deg, rgba(223,63,50,.12), transparent 24%, rgba(194,155,99,.16)),
    var(--by-cream);
  color: var(--by-text-dark);
  padding: 18px 0;
}
.ticker-track {
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .44em;
  font-size: .78rem;
  opacity: .92;
  animation: backyard-ticker-drift 28s linear infinite;
}
@keyframes backyard-ticker-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-22%); }
}
.section-intro { max-width: 860px; margin-bottom: 54px; }
.section-intro.compact { margin-bottom: 30px; }
.experience-section {
  border-bottom: 1px solid var(--by-border-light);
  background:
    linear-gradient(90deg, rgba(255,250,240,.025) 1px, transparent 1px) 0 0 / 96px 96px,
    transparent;
}
.experience-section::before,
.experience-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(243,234,213,.1);
}
.experience-section::before { left: max(16px, calc((100vw - 1220px)/2 + 16px)); }
.experience-section::after { right: max(16px, calc((100vw - 1220px)/2 + 16px)); }
.moment-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 94px;
}
.moment-row.is-reversed { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
.moment-row.is-reversed .moment-media-wrap { order: 2; }
.moment-row.is-reversed .moment-copy { order: 1; }
.moment-media-wrap { position: relative; }
.silks-band-small {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 16px;
  height: 16px;
  z-index: 10;
}
.moment-media {
  min-height: 540px;
  clip-path: polygon(0 8%, 100% 0, 92% 100%, 0 92%);
  background-position: center;
}
.moment-row.is-reversed .moment-media { clip-path: polygon(8% 0, 100% 8%, 100% 92%, 0 100%); }
.moment-copy p:last-child { margin-bottom: 0; font-size: 1.04rem; line-height: 1.9; }
.menu-overview-section {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 0, rgba(223,63,50,.14), transparent 30%),
    linear-gradient(180deg, var(--by-hunter) 0%, var(--by-canvas) 100%);
}
.menu-overview-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: 56px;
  padding-top: 20px;
}
.menu-overview-copy { position: sticky; top: 112px; align-self: start; }
.menu-overview-copy p:last-of-type { font-size: 1.02rem; line-height: 1.9; }
.text-link {
  color: var(--by-cream-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .74rem;
}
.menu-overview-lists { display: grid; gap: 42px; }
.menu-group-list,
.menu-section-block {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(243,234,213,.1);
}
.menu-group-head,
.menu-group-head-page {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(243,234,213,.1);
  position: relative;
}
.menu-group-head::after,
.menu-group-head-page::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 96px;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--by-patio-red) 0 16px, var(--by-gold) 16px 32px, var(--by-hunter) 32px 48px);
}
.menu-group-head-page { border-bottom-color: rgba(23,52,35,.12); }
.menu-section-note { font-size: .95rem; color: rgba(243,234,213,.62); }
.menu-page-section .menu-section-note { color: rgba(23,52,35,.72); }
.menu-line-item { padding: 0 0 24px; border-bottom: 1px solid rgba(243,234,213,.08); margin-bottom: 24px; }
.menu-line-item {
  position: relative;
  padding-left: 18px;
}
.menu-line-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  color: var(--by-gold);
  transform: rotate(45deg);
}
.menu-line-item:last-child { margin-bottom: 0; }
.menu-line-item-page { border-bottom-color: rgba(23,52,35,.08); }
.menu-line-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}
.menu-line-top h4,
.menu-line-top h3 { margin-bottom: 6px; }
.menu-line-top span {
  white-space: nowrap;
  font-size: .76rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--by-cream-deep);
}
.menu-page-section .menu-line-top span { color: color-mix(in srgb, var(--by-hunter) 70%, var(--by-gold)); }
.menu-line-item p { max-width: 58ch; margin: 0; }
.menu-extras {
  margin-top: 10px !important;
  font-size: .9rem;
  color: rgba(243,234,213,.56) !important;
}
.menu-page-section .menu-extras { color: rgba(23,52,35,.6) !important; }
.menu-page-hero,
.page-default-section {
  background:
    linear-gradient(180deg, rgba(255,250,240,.86), rgba(243,234,213,1)),
    var(--by-cream);
  color: var(--by-text-dark);
}
.menu-page-hero {
  background:
    linear-gradient(120deg, rgba(23,52,35,.12), transparent 44%),
    linear-gradient(180deg, rgba(255,250,240,.88), var(--by-cream));
  color: var(--by-text-dark);
}
.menu-page-hero h1,
.page-default-section h1,
.page-default-section h2,
.page-default-section h3,
.menu-page-section h2,
.menu-page-section h3,
.menu-page-section h4 { color: var(--by-text-dark); }
.page-default-section .eyebrow,
.menu-page-hero .eyebrow { color: color-mix(in srgb, var(--by-hunter) 75%, var(--by-gold)); }
.page-default-section p,
.menu-page-hero p,
.menu-page-section p { color: rgba(23,52,35,.78); }
.menu-page-section { background: var(--by-cream); padding-top: 0; }
.menu-page-grid { display: grid; gap: 46px; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.event-card {
  border: 1px solid rgba(243,234,213,.12);
  border-top: 4px solid var(--by-patio-red);
  background:
    linear-gradient(180deg, rgba(243,234,213,.08), rgba(243,234,213,.035)),
    rgba(243,234,213,.04);
  padding: 28px;
  min-height: 240px;
}
.event-kicker {
  margin-bottom: 14px;
  color: var(--by-cream-deep);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .74rem;
}
.visit-section {
  background:
    radial-gradient(ellipse at 12% 0, rgba(194,155,99,.24), transparent 28%),
    linear-gradient(180deg, var(--by-cream), #fff7e7);
  color: var(--by-text-dark);
}
.visit-section h2,
.visit-section h3,
.visit-section h4 { color: var(--by-text-dark); }
.visit-section .eyebrow { color: color-mix(in srgb, var(--by-hunter) 70%, var(--by-gold)); }
.visit-section p { color: rgba(23,52,35,.78); }
.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: 36px;
  align-items: start;
}
.visit-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: .86rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}
.btn-primary { background: var(--by-hunter); color: var(--by-cream); }
.btn-secondary { border: 1px solid rgba(23,52,35,.18); color: var(--by-hunter); }
.visit-panel-wrap { display: grid; gap: 22px; }
.visit-panel {
  border: 1px solid rgba(23,52,35,.12);
  border-top: 4px solid var(--by-gold);
  background:
    linear-gradient(90deg, rgba(223,63,50,.06), transparent 28%),
    rgba(255,255,255,.42);
  padding: 26px;
  box-shadow: 0 18px 42px rgba(23, 52, 35, 0.08);
}
.visit-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(23,52,35,.08);
}
.visit-line:last-child { border-bottom: 0; }
.visit-line strong { color: var(--by-text-dark); }
.visit-line a { color: var(--by-hunter); }
.site-footer {
  background:
    linear-gradient(90deg, rgba(223,63,50,.16), transparent 36%, rgba(194,155,99,.12)),
    var(--by-hunter);
  color: var(--by-text-soft);
  border-top: 1px solid rgba(243,234,213,.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: start;
  padding: 30px 0;
}
.footer-brand {
  font-family: Iowan Old Style, Baskerville, Georgia, serif;
  font-size: 1.8rem;
  color: var(--by-text-light);
  margin-bottom: 8px;
}
.footer-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.entry-copy > * + * { margin-top: 18px; }
.default-entry { padding: 0 0 26px; border-bottom: 1px solid rgba(23,52,35,.1); margin-bottom: 26px; }
.backyard-form-panel .gcf-form-wrap { max-width: none; margin: 0; }
.backyard-form-panel .gcf-label {
  color: var(--by-text-dark) !important;
  font-size: .78rem !important;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.backyard-form-panel .gcf-input {
  border-radius: 0 !important;
  border-color: rgba(23,52,35,.18) !important;
  box-shadow: none !important;
  padding: 13px 14px !important;
}
.backyard-form-panel .gcf-input:focus {
  border-color: var(--by-hunter) !important;
  box-shadow: 0 0 0 3px rgba(23,52,35,.08) !important;
}
.backyard-form-panel .gcf-submit-btn {
  background: var(--by-hunter) !important;
  border-radius: 999px !important;
  padding: 14px 24px !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
}
.backyard-form-panel .gcf-submit-btn:hover { background: color-mix(in srgb, var(--by-hunter) 88%, black) !important; }
@media (max-width: 1100px) {
  .hero-shell,
  .menu-overview-grid,
  .visit-grid,
  .moment-row,
  .moment-row.is-reversed,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .menu-overview-copy { position: static; }
  .moment-row.is-reversed .moment-media-wrap,
  .moment-row.is-reversed .moment-copy { order: initial; }
  .events-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    border: 1px solid var(--by-border-light);
    background: rgba(16, 33, 22, .96);
    padding: 16px;
  }
  .site-nav.is-open { display: block; }
  .site-nav .menu { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-shell { min-height: 0; padding-bottom: 72px; }
  .hero-copy { min-height: 0; }
  .hero-visual { min-height: 600px; }
  .silks-band { width: 44%; height: 62px; }
  .hero-note { position: absolute; right: 0; left: auto; bottom: 8%; max-width: 300px; }
  .experience-section::before,
  .experience-section::after { display: none; }
}
@media (max-width: 640px) {
  .site-shell { width: min(100%, calc(100% - 24px)); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 78px; }
  .hero-tags { gap: 12px; }
  .race-card { grid-template-columns: 1fr; }
  .hero-actions { gap: 18px; }
  .action-link span { width: 36px; }
  .hero-visual { min-height: 520px; }
  .hero-callout {
    left: 6px;
    top: 16%;
    max-width: 220px;
  }
  .hero-note {
    left: 18px;
    right: 18px;
    max-width: none;
    bottom: 3%;
  }
  .menu-line-top,
  .visit-line { flex-direction: column; align-items: flex-start; }
  .footer-grid { gap: 20px; }
}

/* Vintage Saratoga racing-poster direction */
:root {
  --by-night: #1e324b;
  --by-night-deep: #101f31;
  --by-parchment: #f6ead2;
  --by-parchment-light: #fff6e5;
  --by-navy-ink: #1e324b;
  --by-print-red: #d14326;
  --by-aged-gold: #b1804c;
  --by-vine: #2f4b31;
}
body {
  background:
    radial-gradient(circle at 50% 0, rgba(20, 46, 74, .72), transparent 34rem),
    linear-gradient(180deg, var(--by-night) 0, var(--by-night-deep) 42rem, #07150f 100%);
}
.site-header {
  background:
    linear-gradient(90deg, rgba(185,138,69,.18), transparent 28%, rgba(201,74,63,.1)),
    rgba(3, 16, 29, .9);
}
.brand-title,
.footer-brand {
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-rail,
.menu-section-topband {
  height: 6px;
  background: linear-gradient(90deg, var(--by-aged-gold), var(--by-print-red), var(--by-navy-ink), var(--by-aged-gold));
}
.hero-section {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 11%, rgba(255,244,221,.13) 0 1px, transparent 2px) 0 0 / 34px 34px,
    linear-gradient(180deg, rgba(7,24,42,.96) 0, rgba(7,24,42,.93) 39%, transparent 39%),
    linear-gradient(180deg, var(--by-night) 0, var(--by-night-deep) 100%);
}
.hero-section::before {
  background:
    radial-gradient(ellipse at 6% 8%, rgba(185,138,69,.22), transparent 22rem),
    radial-gradient(ellipse at 96% 12%, rgba(185,138,69,.2), transparent 20rem),
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.22));
}
.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 350px;
  height: 120px;
  z-index: 1;
  background:
    radial-gradient(90% 135px at 50% 0, transparent 70%, var(--by-parchment-light) 71%),
    linear-gradient(180deg, transparent 0 34px, var(--by-parchment-light) 35px);
  border-top: 3px solid var(--by-aged-gold);
  border-bottom: 1px solid rgba(185,138,69,.55);
  pointer-events: none;
}
.vintage-night-sky {
  position: absolute;
  inset: 0 0 auto;
  height: 430px;
  z-index: 3;
  pointer-events: none;
}
.vintage-night-sky::before,
.vintage-night-sky::after {
  content: "";
  position: absolute;
  top: 28px;
  width: min(34vw, 390px);
  height: 320px;
  opacity: .72;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(76,105,61,.92) 0 28%, transparent 29%) 0 0 / 44px 30px,
    linear-gradient(115deg, transparent 0 46%, rgba(124,97,51,.7) 47% 49%, transparent 50%);
  filter: saturate(.85);
}
.vintage-night-sky::before { left: -90px; transform: rotate(8deg); }
.vintage-night-sky::after { right: -90px; transform: scaleX(-1) rotate(8deg); }
.vintage-night-sky span {
  position: absolute;
  top: 72px;
  left: 12%;
  width: 13px;
  height: 20px;
  border-radius: 999px;
  background: #ffe7a9;
  box-shadow: 0 0 18px rgba(255,218,133,.96), 0 0 42px rgba(255,218,133,.42);
}
.vintage-night-sky span::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 2px;
  height: 30px;
  background: rgba(185,138,69,.8);
}
.vintage-night-sky span:nth-child(1) { left: 12%; top: 86px; }
.vintage-night-sky span:nth-child(2) { left: 25%; top: 112px; }
.vintage-night-sky span:nth-child(3) { left: 38%; top: 90px; }
.vintage-night-sky span:nth-child(4) { left: 51%; top: 106px; }
.vintage-night-sky span:nth-child(5) { left: 64%; top: 82px; }
.vintage-night-sky span:nth-child(6) { left: 77%; top: 108px; }
.hero-shell {
  display: block;
  min-height: 0;
  padding: 78px 0 120px;
}
.hero-seal,
.menu-page-seal {
  position: relative;
  z-index: 5;
  width: 190px;
  height: 190px;
  margin: 0 auto 56px;
  border: 7px solid var(--by-rail-white);
  border-radius: 50%;
  color: var(--by-rail-white);
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(7,24,42,.5);
  box-shadow: inset 0 0 0 6px rgba(255,250,240,.18), 0 18px 44px rgba(0,0,0,.34);
}
.hero-seal::before,
.menu-page-seal::before {
  content: "";
  position: absolute;
  inset: 17px;
  border: 2px solid rgba(255,250,240,.82);
  border-radius: 50%;
}
.hero-seal span,
.menu-page-seal span {
  align-self: end;
  margin-bottom: -18px;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.hero-seal strong,
.menu-page-seal strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero-seal em,
.menu-page-seal em {
  align-self: start;
  margin-top: -12px;
  font-style: normal;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.hero-copy {
  min-height: 0;
  display: block;
  width: min(1080px, calc(100% - 16px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 76px) clamp(24px, 6vw, 86px);
  text-align: center;
  color: var(--by-navy-ink);
  border: 3px solid var(--by-aged-gold);
  border-radius: 42px 42px 10px 10px;
  background:
    radial-gradient(circle at 18% 20%, rgba(185,138,69,.1), transparent 20rem),
    radial-gradient(circle at 88% 74%, rgba(201,74,63,.08), transparent 18rem),
    repeating-linear-gradient(0deg, rgba(10,37,66,.025) 0 1px, transparent 1px 6px),
    var(--by-parchment-light);
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
}
.hero-wordmark-bg,
.hero-tags {
  display: none;
}
.hero-copy > .eyebrow,
.hero-copy > h1,
.hero-copy > .hero-text,
.hero-actions {
  max-width: none;
}
.hero-copy .eyebrow {
  color: var(--by-print-red);
  letter-spacing: .28em;
  font-size: clamp(.72rem, 1.4vw, .96rem);
  margin-top: 14px;
}
.hero-copy h1 {
  color: var(--by-navy-ink);
  font-size: clamp(3.4rem, 9vw, 7.8rem);
  line-height: .92;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 400;
  text-wrap: balance;
}
.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 10px auto 22px;
  color: var(--by-aged-gold);
}
.hero-ornament::before,
.hero-ornament::after {
  content: "";
  width: min(20vw, 190px);
  height: 1px;
  background: currentColor;
}
.hero-ornament span {
  width: 16px;
  height: 16px;
  background: currentColor;
  transform: rotate(45deg);
  box-shadow: 22px 0 0 -4px currentColor, -22px 0 0 -4px currentColor;
}
.hero-text {
  color: rgba(10,37,66,.92);
  max-width: 780px !important;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.72;
}
.race-card {
  margin: 34px auto 0;
  border: 1px solid rgba(185,138,69,.52);
  border-left: 0;
  border-right: 0;
  background: rgba(255,255,255,.28);
}
.race-card span { color: var(--by-aged-gold); }
.race-card strong { color: var(--by-navy-ink); }
.hero-actions {
  justify-content: center;
}
.action-link {
  color: var(--by-navy-ink);
}
.action-link span {
  background: var(--by-print-red);
}
.hero-visual {
  position: relative;
  z-index: 4;
  min-height: 0;
  width: min(960px, calc(100% - 32px));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.silks-band,
.hero-callout,
.hero-note {
  display: none;
}
.hero-image-primary,
.hero-image-secondary {
  position: relative;
  inset: auto;
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  clip-path: none;
  border: 9px solid var(--by-parchment-light);
  outline: 2px solid var(--by-aged-gold);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0,0,0,.34);
}
.ticker-section {
  border-block: 3px solid var(--by-aged-gold);
  background: var(--by-night-deep);
  color: var(--by-parchment);
}
.ticker-track {
  color: var(--by-parchment);
}
.section {
  background:
    radial-gradient(circle at 18% 20%, rgba(185,138,69,.08), transparent 22rem),
    repeating-linear-gradient(0deg, rgba(10,37,66,.02) 0 1px, transparent 1px 7px),
    var(--by-parchment-light);
  color: var(--by-navy-ink);
}
.section h2,
.section h3,
.section h4 {
  color: var(--by-navy-ink);
}
.section p {
  color: rgba(10,37,66,.82);
}
.section .eyebrow {
  color: var(--by-print-red);
}
.section-intro {
  text-align: center;
}
.section-intro h2 {
  letter-spacing: .08em;
  text-transform: uppercase;
}
.experience-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(185,138,69,.1), transparent 22rem),
    var(--by-parchment-light);
}
.experience-section::before,
.experience-section::after {
  background: rgba(185,138,69,.36);
}
.moment-media {
  clip-path: none;
  min-height: 480px;
  border: 10px solid var(--by-parchment);
  outline: 2px solid var(--by-aged-gold);
  border-radius: 8px;
}
.moment-row.is-reversed .moment-media {
  clip-path: none;
}
.silks-band-small {
  display: none;
}
.moment-copy {
  border: 2px solid var(--by-aged-gold);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 48px);
  background: rgba(255,246,229,.72);
}
.moment-copy h3 {
  text-transform: uppercase;
  letter-spacing: .08em;
}
.menu-overview-section,
.menu-page-section {
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(185,138,69,.45) calc(50% - 1px), rgba(185,138,69,.45) calc(50% + 1px), transparent calc(50% + 1px)),
    radial-gradient(circle at 50% 0, rgba(185,138,69,.12), transparent 22rem),
    var(--by-parchment-light);
}
.menu-overview-grid {
  align-items: start;
}
.menu-overview-copy {
  position: sticky;
  top: 120px;
  border: 2px solid var(--by-aged-gold);
  border-radius: 8px;
  padding: 34px;
  background: rgba(255,246,229,.84);
}
.menu-overview-copy h2 {
  text-transform: uppercase;
  letter-spacing: .08em;
}
.menu-group-list,
.menu-section-block {
  border: 2px solid rgba(185,138,69,.62);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255,246,229,.8);
}
.menu-group-head,
.menu-group-head-page {
  text-align: center;
  border-bottom-color: rgba(185,138,69,.45);
}
.menu-group-head h3,
.menu-group-head-page h2 {
  text-transform: uppercase;
  letter-spacing: .12em;
}
.menu-group-head::after,
.menu-group-head-page::after {
  left: 50%;
  transform: translateX(-50%);
  background: var(--by-print-red);
}
.menu-line-item,
.menu-line-item-page {
  border-bottom-color: rgba(185,138,69,.28);
}
.menu-line-item::before {
  color: var(--by-aged-gold);
}
.menu-line-top span,
.menu-page-section .menu-line-top span {
  color: var(--by-print-red);
  letter-spacing: .08em;
  font-size: 1rem;
}
.menu-line-top h3,
.menu-line-top h4 {
  text-transform: uppercase;
  letter-spacing: .05em;
}
.menu-line-item p,
.menu-page-section p {
  color: rgba(10,37,66,.76);
}
.text-link {
  color: var(--by-print-red);
}
.menu-page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  background:
    radial-gradient(circle at 50% 10%, rgba(255,244,221,.12) 0 1px, transparent 2px) 0 0 / 34px 34px,
    linear-gradient(180deg, var(--by-night) 0 50%, var(--by-parchment-light) 50% 100%);
  text-align: center;
}
.menu-page-hero::before,
.menu-page-hero::after {
  content: "";
  position: absolute;
  top: 40px;
  width: 320px;
  height: 250px;
  background: radial-gradient(ellipse at 50% 50%, rgba(76,105,61,.8) 0 28%, transparent 29%) 0 0 / 40px 28px;
  opacity: .64;
}
.menu-page-hero::before { left: -96px; }
.menu-page-hero::after { right: -96px; transform: scaleX(-1); }
.menu-page-seal {
  margin-bottom: 38px;
}
.menu-page-hero h1 {
  color: var(--by-navy-ink);
  background: var(--by-parchment-light);
  border: 3px solid var(--by-aged-gold);
  border-radius: 42px 42px 0 0;
  margin: 0 auto;
  padding: 48px 24px 18px;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.menu-page-hero .eyebrow,
.menu-page-hero .section-copy,
.menu-page-hero .menu-ornament {
  position: relative;
  z-index: 2;
  background: var(--by-parchment-light);
}
.menu-page-hero .section-copy {
  margin: 0;
  padding: 0 24px 48px;
  border-left: 3px solid var(--by-aged-gold);
  border-right: 3px solid var(--by-aged-gold);
  border-bottom: 3px solid var(--by-aged-gold);
  color: rgba(10,37,66,.82);
}
.events-section {
  background: var(--by-night-deep);
}
.events-section h2,
.events-section h3 {
  color: var(--by-parchment-light);
}
.events-section p {
  color: rgba(246,234,210,.78);
}
.event-card {
  border-color: rgba(185,138,69,.48);
  border-top-color: var(--by-print-red);
  background: rgba(246,234,210,.06);
}
.visit-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(185,138,69,.12), transparent 20rem),
    var(--by-parchment-light);
}
.visit-section h2 {
  letter-spacing: .08em;
  text-transform: uppercase;
}
.visit-panel {
  border: 2px solid var(--by-aged-gold);
  background: rgba(255,246,229,.82);
}
.btn {
  border-radius: 0;
}
.btn-primary {
  background: var(--by-navy-ink);
}
.btn-secondary {
  border-color: rgba(10,37,66,.34);
}
.site-footer {
  background: var(--by-night-deep);
  border-top: 3px solid var(--by-aged-gold);
}

@media (max-width: 900px) {
  .hero-section::after {
    top: 300px;
  }
  .hero-shell {
    padding-top: 52px;
  }
  .hero-seal,
  .menu-page-seal {
    width: 150px;
    height: 150px;
    margin-bottom: 40px;
  }
  .hero-copy h1,
  .menu-page-hero h1 {
    letter-spacing: .08em;
  }
  .hero-visual {
    grid-template-columns: 1fr;
  }
  .menu-overview-section,
  .menu-page-section {
    background: var(--by-parchment-light);
  }
}

/* Menu PDF design direction: elegant parchment card with navy, aged gold, and red accents */
:root {
  --by-menu-field: #061f17;
  --by-menu-navy: #1e324b;
  --by-menu-gold: #b1804c;
  --by-menu-red: #d14326;
  --by-menu-paper: #f7ecd4;
  --by-menu-paper-light: #fff7e7;
  --by-menu-muted: #88785f;
}
body {
  background:
    radial-gradient(ellipse at 50% 0, rgba(177,128,76,.18), transparent 46rem),
    var(--by-menu-field);
  color: var(--by-menu-navy);
}
.site-header {
  background: rgba(6,31,23,.94);
  border-bottom: 1px solid rgba(177,128,76,.45);
  backdrop-filter: blur(14px);
}
.brand-kicker {
  color: var(--by-menu-gold);
}
.brand-title,
.site-nav a,
.footer-menu a {
  color: var(--by-menu-paper-light);
}
.site-nav a:hover,
.footer-menu a:hover {
  color: var(--by-menu-gold);
}
.hero-section,
.section,
.experience-section,
.menu-overview-section,
.menu-page-section,
.visit-section {
  background: var(--by-menu-field);
}
.hero-section::before,
.hero-section::after,
.vintage-night-sky,
.hero-seal,
.menu-page-seal,
.hero-wordmark-bg,
.hero-tags,
.hero-visual,
.ticker-section {
  display: none;
}
.hero-shell {
  width: min(1160px, calc(100% - 32px));
  padding: 46px 0 76px;
}
.hero-copy,
.menu-page-hero .narrow-shell,
.menu-overview-copy,
.menu-group-list,
.menu-section-block,
.moment-copy,
.visit-panel {
  position: relative;
  overflow: hidden;
  color: var(--by-menu-navy);
  background:
    radial-gradient(circle at 10% 12%, rgba(30,50,75,.035), transparent 15rem),
    radial-gradient(circle at 88% 18%, rgba(177,128,76,.08), transparent 16rem),
    repeating-linear-gradient(0deg, rgba(30,50,75,.018) 0 1px, transparent 1px 7px),
    var(--by-menu-paper-light);
  border: 3px solid var(--by-menu-gold);
  box-shadow:
    inset 0 0 0 6px rgba(177,128,76,.16),
    0 28px 80px rgba(0,0,0,.26);
}
.hero-copy::before,
.menu-page-hero .narrow-shell::before,
.menu-overview-copy::before,
.menu-group-list::before,
.menu-section-block::before,
.visit-panel::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(177,128,76,.34);
  border-radius: inherit;
  pointer-events: none;
}
.hero-copy::after,
.menu-page-hero .narrow-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 260px;
  opacity: .16;
  background-image:
    linear-gradient(180deg, transparent 0, rgba(247,236,212,.72) 70%),
    url("../images/backyard-night-courtyard-wide.jpg");
  background-size: cover;
  background-position: center bottom;
  filter: grayscale(1) sepia(.35);
  pointer-events: none;
}
.hero-copy {
  width: 100%;
  min-height: 760px;
  padding: 96px clamp(34px, 7vw, 100px) 340px;
  border-radius: 58px 58px 28px 28px;
}
.hero-copy .eyebrow {
  color: var(--by-menu-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.9rem, 1.7vw, 1.25rem);
  letter-spacing: .34em;
  margin: 0 auto 28px;
}
.hero-copy h1 {
  color: var(--by-menu-navy);
  font-size: clamp(4.2rem, 10vw, 8.5rem);
  letter-spacing: .24em;
  font-weight: 400;
  margin-bottom: 20px;
}
.hero-copy h1::after {
  content: "Saratoga Springs";
  display: block;
  margin-top: 26px;
  color: var(--by-menu-red);
  font-size: clamp(1.45rem, 3.3vw, 2.6rem);
  letter-spacing: .32em;
  text-transform: uppercase;
}
.hero-ornament {
  color: var(--by-menu-gold);
  margin: 24px auto 30px;
}
.hero-text {
  color: rgba(30,50,75,.92);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
}
.race-card {
  width: min(680px, 100%);
  margin-top: 40px;
  border-color: rgba(177,128,76,.42);
  background: rgba(247,236,212,.48);
}
.race-card span {
  color: var(--by-menu-red);
}
.race-card strong {
  color: var(--by-menu-navy);
}
.action-link {
  color: var(--by-menu-navy);
}
.action-link span {
  background: var(--by-menu-gold);
}
.action-link-primary {
  color: var(--by-menu-red);
}
.section {
  padding: 76px 0;
}
.section-intro {
  color: var(--by-menu-paper-light);
}
.section-intro .eyebrow {
  color: var(--by-menu-gold);
}
.section-intro h2 {
  color: var(--by-menu-paper-light);
  font-size: clamp(2.3rem, 4vw, 4rem);
  letter-spacing: .16em;
}
.moment-row {
  gap: 42px;
}
.moment-media {
  border-color: var(--by-menu-paper-light);
  outline-color: var(--by-menu-gold);
  border-radius: 26px;
  filter: saturate(.82) contrast(.95);
}
.moment-copy {
  border-radius: 24px;
  padding: clamp(34px, 5vw, 64px);
  box-shadow: inset 0 0 0 6px rgba(177,128,76,.14), 0 22px 70px rgba(0,0,0,.2);
}
.moment-copy .eyebrow,
.menu-overview-copy .eyebrow,
.visit-section .eyebrow,
.menu-page-hero .eyebrow {
  color: var(--by-menu-red);
}
.moment-copy h3,
.menu-overview-copy h2,
.visit-section h2 {
  color: var(--by-menu-navy);
  letter-spacing: .12em;
}
.moment-copy p,
.menu-overview-copy p,
.visit-section p,
.visit-line,
.visit-line strong,
.visit-line a {
  color: rgba(30,50,75,.78);
}
.menu-overview-grid {
  gap: 42px;
}
.menu-overview-copy,
.menu-group-list,
.menu-section-block {
  border-radius: 24px;
}
.menu-overview-copy {
  padding: 44px;
}
.menu-group-list,
.menu-section-block {
  padding: 40px;
}
.menu-group-head,
.menu-group-head-page {
  border-bottom-color: rgba(177,128,76,.4);
}
.menu-group-head h3,
.menu-group-head-page h2 {
  color: var(--by-menu-navy);
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: .18em;
}
.menu-group-head::before,
.menu-group-head-page::before {
  content: "✣";
  position: absolute;
  left: 50%;
  bottom: -19px;
  transform: translateX(-50%);
  width: 34px;
  background: var(--by-menu-paper-light);
  color: var(--by-menu-gold);
  text-align: center;
  z-index: 2;
}
.menu-group-head::after,
.menu-group-head-page::after {
  background: var(--by-menu-gold);
  height: 2px;
  width: 190px;
}
.menu-line-top h3,
.menu-line-top h4 {
  color: var(--by-menu-navy);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .04em;
  text-transform: none;
}
.menu-line-top span,
.menu-page-section .menu-line-top span {
  color: var(--by-menu-red);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}
.menu-line-item,
.menu-line-item-page {
  border-bottom-color: rgba(177,128,76,.22);
}
.menu-line-item::before {
  display: none;
}
.menu-line-item p,
.menu-page-section p,
.menu-extras,
.menu-page-section .menu-extras {
  color: rgba(30,50,75,.78) !important;
}
.text-link {
  color: var(--by-menu-red);
}
.menu-page-hero {
  background: var(--by-menu-field);
  padding: 58px 0 0;
}
.menu-page-hero::before,
.menu-page-hero::after {
  display: none;
}
.menu-page-hero .narrow-shell {
  max-width: 1080px;
  padding: 82px clamp(32px, 6vw, 96px) 300px;
  border-radius: 54px 54px 20px 20px;
}
.menu-page-hero h1 {
  color: var(--by-menu-navy);
  border: 0;
  background: transparent;
  padding: 0;
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: .24em;
}
.menu-page-hero h1::after {
  content: "Saratoga Springs";
  display: block;
  margin-top: 24px;
  color: var(--by-menu-red);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  letter-spacing: .34em;
}
.menu-page-hero .section-copy {
  padding: 0;
  border: 0;
  background: transparent;
}
.menu-page-hero .menu-ornament {
  background: transparent;
}
.menu-page-section {
  padding-top: 74px;
}
.events-section {
  background: var(--by-menu-field);
}
.event-card {
  border-color: rgba(177,128,76,.48);
  border-top-color: var(--by-menu-red);
}
.visit-section {
  background: var(--by-menu-field);
}
.visit-grid {
  align-items: stretch;
}
.visit-copy {
  color: var(--by-menu-paper-light);
}
.visit-copy .eyebrow {
  color: var(--by-menu-gold);
}
.visit-copy h2 {
  color: var(--by-menu-paper-light);
}
.visit-copy p {
  color: rgba(255,247,231,.78);
}
.visit-panel {
  border-radius: 24px;
}
.btn-primary {
  background: var(--by-menu-navy);
  color: var(--by-menu-paper-light);
}
.btn-secondary {
  color: var(--by-menu-paper-light);
  border-color: rgba(255,247,231,.45);
}
.site-footer {
  background: var(--by-menu-field);
  border-top-color: var(--by-menu-gold);
}

@media (max-width: 900px) {
  .hero-copy,
  .menu-page-hero .narrow-shell {
    min-height: 0;
    padding-bottom: 260px;
  }
  .hero-copy h1,
  .menu-page-hero h1 {
    letter-spacing: .12em;
  }
}

@media (max-width: 640px) {
  .hero-copy,
  .menu-page-hero .narrow-shell {
    padding: 52px 24px 220px;
    border-radius: 34px 34px 16px 16px;
  }
  .hero-copy h1,
  .menu-page-hero h1 {
    font-size: clamp(3rem, 17vw, 4.4rem);
    letter-spacing: .08em;
  }
  .hero-copy h1::after,
  .menu-page-hero h1::after,
  .hero-copy .eyebrow {
    letter-spacing: .16em;
  }
  .race-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .vintage-night-sky {
    height: 320px;
  }
  .hero-section::after {
    top: 250px;
  }
  .hero-copy {
    border-radius: 24px 24px 8px 8px;
  }
  .hero-copy .eyebrow {
    letter-spacing: .16em;
  }
  .hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }
  .hero-image-primary,
  .hero-image-secondary {
    height: 240px;
  }
  .menu-group-list,
  .menu-section-block,
  .menu-overview-copy,
  .moment-copy {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .hero-copy,
  .menu-page-hero .narrow-shell {
    padding: 52px 24px 220px;
    border-radius: 34px 34px 16px 16px;
  }
  .hero-copy h1,
  .menu-page-hero h1 {
    font-size: clamp(3rem, 17vw, 4.4rem);
    letter-spacing: .08em;
  }
}

/* Menu v3 direction: light Saratoga menu board with deep green field and delicate gold trim */
:root {
  --by-menu-field: #123923;
  --by-menu-green: #0b3326;
  --by-menu-navy: #1e324b;
  --by-menu-gold: #b1804c;
  --by-menu-red: #d14326;
  --by-menu-paper: #f8edda;
  --by-menu-paper-light: #fff6e6;
  --by-menu-muted: #655b4d;
}
body {
  background: var(--by-menu-field);
}
.site-header {
  background: rgba(18,57,35,.96);
  border-bottom-color: rgba(177,128,76,.58);
}
.hero-section,
.menu-page-hero,
.menu-page-section,
.menu-overview-section,
.experience-section,
.events-section,
.visit-section,
.site-footer {
  background: var(--by-menu-field);
}
.hero-shell {
  width: min(1240px, calc(100% - 28px));
  padding: 34px 0 72px;
}
.hero-seal,
.menu-page-seal {
  display: flex;
  color: var(--by-menu-green);
  border-color: var(--by-menu-green);
  background: transparent;
  box-shadow: none;
  z-index: 5;
}
.hero-seal {
  width: 154px;
  height: 154px;
  margin: 0 auto -78px;
}
.menu-page-seal {
  width: 138px;
  height: 138px;
  margin: 0 auto 24px;
}
.hero-seal span,
.menu-page-seal span,
.hero-seal strong,
.menu-page-seal strong,
.hero-seal em,
.menu-page-seal em {
  color: var(--by-menu-green);
}
.hero-copy,
.menu-page-hero .narrow-shell {
  max-width: 1180px;
  min-height: 860px;
  margin: 0 auto;
  padding: 142px clamp(38px, 7vw, 118px) 330px;
  border: 4px solid var(--by-menu-gold);
  border-radius: 34px 34px 70px 70px;
  color: var(--by-menu-navy);
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(177,128,76,.44) calc(50% - 1px), rgba(177,128,76,.44) calc(50% + 1px), transparent calc(50% + 1px)),
    radial-gradient(circle at 16% 11%, rgba(30,50,75,.055), transparent 13rem),
    radial-gradient(circle at 86% 10%, rgba(30,50,75,.055), transparent 12rem),
    repeating-linear-gradient(0deg, rgba(30,50,75,.012) 0 1px, transparent 1px 6px),
    var(--by-menu-paper-light);
  box-shadow:
    inset 0 0 0 7px rgba(177,128,76,.2),
    inset 0 0 0 13px rgba(255,246,230,.72),
    0 30px 80px rgba(0,0,0,.22);
}
.hero-copy::before,
.menu-page-hero .narrow-shell::before {
  inset: 20px;
  border: 1px solid rgba(177,128,76,.48);
  border-radius: 24px 24px 58px 58px;
}
.hero-copy::after,
.menu-page-hero .narrow-shell::after {
  bottom: 42px;
  height: 330px;
  opacity: .18;
  background-image:
    linear-gradient(180deg, transparent 0, rgba(255,246,230,.62) 26%, rgba(255,246,230,.2) 100%),
    url("../images/backyard-night-patio-seating.jpg");
  background-size: cover;
  background-position: center bottom;
  filter: grayscale(1) sepia(.3) contrast(.9);
}
.hero-copy .eyebrow,
.menu-page-hero .eyebrow {
  color: var(--by-menu-green);
  font-size: clamp(.78rem, 1.25vw, 1rem);
  letter-spacing: .34em;
  margin-bottom: 34px;
}
.hero-copy .eyebrow::before,
.hero-copy .eyebrow::after,
.menu-page-hero .eyebrow::before,
.menu-page-hero .eyebrow::after {
  content: "";
  display: inline-block;
  width: clamp(40px, 9vw, 128px);
  height: 1px;
  margin: 0 24px .32em;
  background: rgba(177,128,76,.72);
}
.hero-copy h1,
.menu-page-hero h1 {
  color: var(--by-menu-green);
  font-size: clamp(4.2rem, 9.2vw, 8.2rem);
  letter-spacing: .28em;
  line-height: .95;
  margin: 14px 0 0;
}
.hero-copy h1::after,
.menu-page-hero h1::after {
  color: var(--by-menu-red);
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  letter-spacing: .36em;
  margin-top: 30px;
}
.hero-ornament,
.menu-ornament {
  color: var(--by-menu-gold);
  opacity: .9;
}
.hero-text,
.menu-page-hero .section-copy {
  max-width: 780px;
  color: rgba(30,50,75,.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}
.race-card {
  width: min(640px, 100%);
  margin-top: 46px;
  padding: 24px 28px;
  border-color: rgba(177,128,76,.34);
  background: rgba(255,246,230,.46);
}
.action-link-primary,
.text-link,
.menu-line-top span,
.menu-page-section .menu-line-top span,
.race-card span {
  color: var(--by-menu-red);
}
.action-link,
.race-card strong {
  color: var(--by-menu-green);
}
.section-intro h2,
.moment-copy h3,
.menu-overview-copy h2,
.visit-section h2,
.menu-group-head h3,
.menu-group-head-page h2 {
  color: var(--by-menu-navy);
}
.menu-overview-copy,
.menu-group-list,
.menu-section-block,
.moment-copy,
.visit-panel {
  background:
    radial-gradient(circle at 90% 8%, rgba(177,128,76,.07), transparent 13rem),
    repeating-linear-gradient(0deg, rgba(30,50,75,.012) 0 1px, transparent 1px 6px),
    var(--by-menu-paper-light);
  border-color: rgba(177,128,76,.88);
  box-shadow:
    inset 0 0 0 6px rgba(177,128,76,.13),
    0 20px 54px rgba(0,0,0,.18);
}
.menu-group-head h3,
.menu-group-head-page h2 {
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  letter-spacing: .22em;
}
.menu-group-head::after,
.menu-group-head-page::after {
  width: 230px;
}
.menu-line-top h3,
.menu-line-top h4 {
  color: var(--by-menu-navy);
}
.menu-line-item p,
.menu-page-section p,
.menu-extras,
.menu-page-section .menu-extras,
.moment-copy p,
.menu-overview-copy p,
.visit-line,
.visit-line strong,
.visit-line a {
  color: rgba(30,50,75,.74) !important;
}
.menu-page-hero {
  padding-top: 32px;
}
.menu-page-hero .narrow-shell {
  min-height: 740px;
  padding-top: 54px;
}
.menu-page-section {
  padding-top: 52px;
}
.section-intro {
  color: var(--by-menu-paper-light);
}
.section-intro .eyebrow,
.visit-copy .eyebrow {
  color: var(--by-menu-gold);
}
.visit-copy h2,
.visit-copy p,
.visit-copy {
  color: var(--by-menu-paper-light);
}
.btn-primary {
  background: var(--by-menu-green);
}

@media (max-width: 900px) {
  .hero-copy,
  .menu-page-hero .narrow-shell {
    min-height: 0;
    padding-top: 118px;
    padding-bottom: 290px;
    background:
      radial-gradient(circle at 16% 11%, rgba(30,50,75,.055), transparent 13rem),
      radial-gradient(circle at 86% 10%, rgba(30,50,75,.055), transparent 12rem),
      repeating-linear-gradient(0deg, rgba(30,50,75,.012) 0 1px, transparent 1px 6px),
      var(--by-menu-paper-light);
  }
  .hero-copy .eyebrow::before,
  .hero-copy .eyebrow::after,
  .menu-page-hero .eyebrow::before,
  .menu-page-hero .eyebrow::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-shell {
    width: min(100% - 18px, 1240px);
  }
  .hero-seal {
    width: 118px;
    height: 118px;
    margin-bottom: -58px;
  }
  .hero-copy,
  .menu-page-hero .narrow-shell {
    padding: 96px 22px 230px;
    border-width: 3px;
    border-radius: 24px 24px 46px 46px;
  }
  .hero-copy h1,
  .menu-page-hero h1 {
    font-size: clamp(2.9rem, 15vw, 4.2rem);
    letter-spacing: .12em;
  }
  .hero-copy h1::after,
  .menu-page-hero h1::after,
  .hero-copy .eyebrow,
  .menu-page-hero .eyebrow {
    letter-spacing: .14em;
  }
}
