:root {
  color-scheme: dark;
  --cream-paper: #f2ecda;
  --cream-warm: #fff8ea;
  --cream-soft: #e8dfc7;
  --forest-950: #07271a;
  --forest-925: #082e1f;
  --forest-900: #0a3d28;
  --forest-700: #105a3c;
  --gold-700: #a1803c;
  --gold-500: #c9a14e;
  --gold-300: #eed7a2;
  --rose-300: #eecbc5;
  --ink-strong: #1c1a14;
  --ink-body: #423e32;
  --ink-muted: #7c7665;
  --line-cream: rgba(242, 236, 218, 0.18);
  --line-gold: rgba(201, 161, 78, 0.48);
  --shadow-warm: 0 24px 62px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(201, 161, 78, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --font-body: "Mulish", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--forest-950);
  color: var(--cream-paper);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-color: rgba(238, 215, 162, 0.64);
  text-underline-offset: 4px;
}

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

h1,
h2,
p,
ul {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  text-wrap: balance;
}

p,
a,
li,
span {
  text-wrap: pretty;
}

.baluchon-page {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(520px, 1.22fr);
  grid-template-areas:
    "hero menu"
    "footer footer";
  align-items: center;
  column-gap: clamp(30px, 5vw, 72px);
  row-gap: 6px;
  padding: 28px clamp(32px, 5vw, 76px) 10px;
  background: var(--forest-950);
  overflow: hidden;
}

.baluchon-page::before,
.baluchon-page::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.baluchon-page::before {
  inset: 16px 16px 8px;
  z-index: -1;
  border: 1px solid rgba(201, 161, 78, 0.16);
  border-radius: var(--radius-lg);
}

.baluchon-page::after {
  inset: 0 0 0 auto;
  z-index: -3;
  width: 46%;
  background: var(--forest-900);
  border-left: 1px solid rgba(201, 161, 78, 0.16);
}

.deer-watermark {
  width: min(48vw, 620px);
  height: auto;
  position: absolute;
  right: clamp(-80px, 3vw, 70px);
  top: clamp(20px, 7vh, 82px);
  z-index: -2;
  opacity: 0.045;
  filter: saturate(0.85);
  pointer-events: none;
}

.hero {
  grid-area: hero;
  min-width: 0;
  position: relative;
  display: grid;
  align-content: center;
  gap: clamp(16px, 1.8vw, 24px);
}

.hero-brand {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding-top: 30px;
}

.badge,
.kicker,
.section-label {
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.badge {
  width: max-content;
  max-width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  padding: 7px 13px;
  border: 1px solid rgba(238, 215, 162, 0.34);
  border-radius: 999px;
  background: rgba(242, 236, 218, 0.035);
}

.wordmark {
  width: clamp(168px, 18vw, 258px);
  height: auto;
  margin-left: -8px;
}

.hero-copy {
  max-width: 560px;
  display: grid;
  gap: 10px;
}

.kicker,
.section-label {
  text-transform: uppercase;
}

.hero-copy h1 {
  color: var(--cream-warm);
  font-size: clamp(46px, 4.8vw, 70px);
  font-weight: 600;
  line-height: 0.92;
}

.hero-copy p:not(.kicker) {
  max-width: 520px;
  color: rgba(255, 248, 234, 0.86);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.45;
}

.hero-bottom {
  display: grid;
  gap: 12px;
}

.weekend-line {
  width: max-content;
  max-width: 100%;
  margin: 2px 0 3px;
  padding: 8px 0;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  color: var(--cream-warm);
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 700;
  line-height: 1.02;
}

.facebook-panel {
  width: min(100%, 490px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  text-align: center;
  gap: 5px 13px;
  padding: 12px 14px;
  border: 1px solid rgba(238, 215, 162, 0.34);
  border-radius: var(--radius-md);
  background: rgba(242, 236, 218, 0.052);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.facebook-panel > :not(.facebook-motion) {
  position: relative;
  z-index: 1;
}

.facebook-motion {
  grid-column: 1;
  grid-row: 1 / span 3;
  width: 64px;
  aspect-ratio: 1;
  position: relative;
  z-index: 0;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--gold-300);
}

.facebook-motion-ring,
.facebook-motion-glow {
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  pointer-events: none;
}

.facebook-motion-ring {
  border: 1px solid rgba(238, 215, 162, 0.58);
  animation: deer-ring-loop 5.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.facebook-motion-glow {
  background: rgba(238, 215, 162, 0.14);
  filter: blur(8px);
  opacity: 0.42;
  transform: scale(0.72);
  animation: deer-glow-loop 5.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.facebook-motion-deer {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.86;
  filter: brightness(0) saturate(100%) invert(89%) sepia(19%) saturate(699%) hue-rotate(351deg) brightness(104%) contrast(88%);
  animation: deer-float-loop 5.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.facebook-panel p {
  grid-column: 2;
  color: var(--cream-warm);
  font-family: var(--font-display);
  font-size: clamp(21px, 1.7vw, 26px);
  font-weight: 700;
  line-height: 1.04;
}

.facebook-panel small {
  grid-column: 2;
  color: rgba(255, 248, 234, 0.74);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.4;
}

.menu-board {
  grid-area: menu;
  min-width: 0;
  width: min(100%, 820px);
  justify-self: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: clamp(16px, 1.9vw, 22px);
  align-self: center;
  padding: clamp(24px, 2.8vw, 38px);
  border: 1px solid rgba(201, 161, 78, 0.34);
  border-radius: var(--radius-lg);
  background: var(--cream-paper);
  color: var(--ink-strong);
  box-shadow: var(--shadow-warm);
}

.menu-board > :not(.menu-deer) {
  position: relative;
  z-index: 1;
}

.menu-deer {
  position: absolute;
  z-index: 0;
  width: clamp(140px, 15vw, 210px);
  height: auto;
  right: -28px;
  top: 18px;
  opacity: 0.075;
  filter: saturate(0.82);
  pointer-events: none;
}

.price-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(201, 161, 78, 0.72);
  border-bottom: 1px solid rgba(201, 161, 78, 0.72);
}

.price-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.price-name {
  min-width: 0;
  color: var(--forest-900);
  font-family: var(--font-display);
  font-size: clamp(27px, 2.3vw, 36px);
  font-weight: 700;
  line-height: 1.05;
}

.price-copy small {
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.price {
  color: var(--gold-500);
  font-family: var(--font-display);
  font-size: clamp(56px, 5.4vw, 84px);
  font-weight: 700;
  line-height: 0.86;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 24px;
}

.menu-group {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 9px;
}

.menu-group h2,
.mocktail-panel h2 {
  color: var(--forest-900);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.03;
}

.menu-group ul {
  display: grid;
  gap: 6px;
}

.menu-group li,
.pairing-band p {
  color: var(--ink-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.42;
}

.mocktail-panel {
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(0, 1fr);
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 90, 60, 0.18);
}

.mocktail-panel > div:first-child {
  display: grid;
  align-content: start;
  gap: 5px;
}

.menu-board .section-label {
  color: var(--gold-700);
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 1;
}

.mocktail-list {
  display: grid;
  align-content: center;
  gap: 9px;
}

.mocktail-list p {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}

.mocktail-list strong {
  color: var(--forest-900);
  font-weight: 800;
}

.mocktail-list span,
.pairing-band span {
  display: block;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.pairing-band {
  display: grid;
  grid-template-columns: minmax(170px, 0.36fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.price-band-small {
  grid-template-columns: 1fr;
  gap: 4px;
  text-align: center;
}

.price-band-small .price-name {
  font-size: 20px;
}

.price-band-small .price {
  font-size: clamp(44px, 4vw, 56px);
}

.site-footer {
  grid-area: footer;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  min-width: 0;
  color: rgba(255, 248, 234, 0.76);
  font-size: 14px;
  line-height: 1.4;
}

.site-footer p {
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.footer-follow {
  color: rgba(255, 248, 234, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.facebook-cta {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  justify-self: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(238, 215, 162, 0.86);
  border-radius: 999px;
  background: var(--cream-paper);
  color: var(--forest-950);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  animation: cta-warm-pulse 5.8s cubic-bezier(0.45, 0, 0.55, 1) 1.25s infinite;
}

.facebook-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: block;
}

.facebook-icon-mark {
  fill: currentColor;
}

.facebook-icon-glyph {
  fill: var(--cream-paper);
}

.facebook-cta:hover {
  background: var(--cream-warm);
  border-color: var(--gold-300);
}

@keyframes deer-float-loop {
  0% {
    transform: translateY(0) scale(1);
  }

  42% {
    transform: translateY(-3px) scale(1.035);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes deer-ring-loop {
  0% {
    opacity: 0.4;
    transform: scale(0.94);
  }

  42% {
    opacity: 0.82;
    transform: scale(1.05);
  }

  100% {
    opacity: 0.4;
    transform: scale(0.94);
  }
}

@keyframes deer-glow-loop {
  0% {
    opacity: 0.18;
    transform: scale(0.68);
  }

  42% {
    opacity: 0.42;
    transform: scale(0.92);
  }

  100% {
    opacity: 0.18;
    transform: scale(0.68);
  }
}

@keyframes cta-warm-pulse {
  0%,
  12%,
  100% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
    transform: translateY(0);
  }

  20% {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24), 0 0 0 5px rgba(238, 215, 162, 0.13);
    transform: translateY(-1px);
  }

  30% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
    transform: translateY(0);
  }
}

.footer-facebook-link {
  color: var(--cream-warm);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .baluchon-page {
    min-height: 100svh;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "hero"
      "menu"
      "footer";
    align-items: start;
    gap: 26px;
    padding: 30px 24px 22px;
    overflow: hidden;
  }

  .baluchon-page::after {
    display: none;
  }

  .hero {
    max-width: 760px;
    justify-self: center;
    justify-items: center;
    text-align: center;
  }

  .hero-brand,
  .hero-copy,
  .hero-bottom {
    justify-items: center;
  }

  .wordmark {
    margin-left: 0;
  }

  .facebook-cta {
    justify-self: center;
  }

  .menu-board {
    justify-self: center;
  }

  .menu-deer {
    width: 180px;
    right: -34px;
    top: 20px;
  }
}

@media (max-width: 860px) {
  .deer-watermark {
    width: 430px;
    right: -120px;
    top: 82px;
  }

  .menu-grid,
  .mocktail-panel,
  .pairing-band {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mocktail-panel {
    gap: 10px;
  }

  .mocktail-list p {
    grid-template-columns: minmax(0, 1fr);
    gap: 1px;
  }

  .price-band-small {
    justify-self: center;
    min-width: min(100%, 230px);
  }

  .site-footer {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .baluchon-page {
    gap: 20px;
    padding: 24px 16px 18px;
    overflow: hidden;
  }

  .baluchon-page::before {
    inset: 10px;
    border-radius: 18px;
  }

  .hero {
    gap: 13px;
  }

  .hero-brand {
    padding-top: 34px;
  }

  .wordmark {
    width: clamp(160px, 48vw, 208px);
  }

  .hero-copy {
    max-width: 34rem;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .hero-copy p:not(.kicker) {
    max-width: 35rem;
    font-size: 16px;
  }

  .weekend-line {
    font-size: clamp(28px, 9.5vw, 38px);
  }

  .facebook-panel {
    grid-template-columns: 1fr;
    padding: 14px 12px;
  }

  .facebook-motion {
    grid-column: 1;
    grid-row: auto;
    width: 70px;
  }

  .facebook-panel p,
  .facebook-panel small,
  .facebook-cta {
    grid-column: 1;
  }

  .facebook-motion-deer {
    width: 52px;
    height: 52px;
  }

  .facebook-panel p {
    font-size: clamp(22px, 6.4vw, 28px);
  }

  .facebook-panel small {
    font-size: 12px;
  }

  .facebook-cta {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
  }

  .menu-board {
    width: min(100%, 620px);
    justify-self: center;
    gap: 21px;
    padding: 24px 20px 22px;
    border-radius: var(--radius-md);
  }

  .menu-deer {
    width: 142px;
    right: -34px;
    top: 18px;
    opacity: 0.065;
  }

  .price-band {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    text-align: center;
  }

  .price {
    font-size: clamp(50px, 17vw, 68px);
  }

  .deer-watermark {
    width: 320px;
    right: -110px;
    top: 74px;
  }

  .menu-grid {
    gap: 18px;
  }

  .mocktail-panel {
    gap: 12px;
    padding-top: 0;
    border-top: 0;
  }

  .mocktail-list p {
    gap: 2px;
  }

  .pairing-band {
    gap: 14px;
  }

  .site-footer {
    gap: 7px 14px;
    font-size: 13px;
  }

  .site-footer p {
    width: 100%;
    font-size: 20px;
  }

  .footer-follow {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .facebook-motion-ring,
  .facebook-motion-glow,
  .facebook-motion-deer,
  .facebook-cta {
    animation: none;
  }

  .facebook-motion-ring {
    opacity: 0.5;
  }

  .facebook-motion-glow {
    opacity: 0.18;
  }
}
