:root {
  color-scheme: dark;
  --cream-paper: #f2ecda;
  --cream-warm: #fff8ea;
  --cream-soft: #e8dfc7;
  --forest-950: #07271a;
  --forest-925: #082e1f;
  --forest-900: #0a3d28;
  --forest-850: #0d432e;
  --forest-700: #105a3c;
  --gold-700: #a1803c;
  --gold-500: #c9a14e;
  --gold-300: #eed7a2;
  --ink-strong: #1c1a14;
  --ink-body: #423e32;
  --ink-muted: #7c7665;
  --line-cream: rgba(242, 236, 218, 0.16);
  --line-cream-strong: rgba(242, 236, 218, 0.28);
  --line-gold: rgba(201, 161, 78, 0.46);
  --shadow-warm: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --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,
svg {
  display: block;
}

img {
  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,
h3,
p,
ul {
  margin: 0;
}

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

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

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

.keep-together {
  white-space: nowrap;
}

.baluchon-page {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  padding: clamp(18px, 3vw, 34px);
  background: var(--forest-950);
}

.baluchon-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background-color: var(--forest-950);
  background-image: url("/textures/chalet-wood-grain.svg");
  background-size: 520px 520px;
  opacity: 0.46;
}

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

.deer-watermark {
  width: min(88vw, 760px);
  height: auto;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: -3;
  opacity: 0.04;
  filter: saturate(0.8);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.page-shell {
  width: min(100%, 920px);
  min-height: calc(100svh - clamp(36px, 6vw, 68px));
  margin: 0 auto;
  position: relative;
  display: grid;
  gap: clamp(22px, 4vw, 46px);
  padding: clamp(18px, 4vw, 38px);
  border: 1px solid rgba(201, 161, 78, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(7, 39, 26, 0.72);
  box-shadow: var(--shadow-warm);
}

.hero {
  min-width: 0;
  position: relative;
  display: grid;
  justify-items: center;
  gap: clamp(14px, 2.4vw, 22px);
  padding-top: clamp(28px, 5vw, 54px);
  text-align: center;
  animation: soft-rise 700ms ease both;
}

.badge,
.kicker,
.section-label,
.menu-number {
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.badge {
  width: max-content;
  max-width: min(100%, 180px);
  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.045);
  text-align: center;
  text-transform: none;
}

.wordmark {
  width: clamp(178px, 38vw, 300px);
  height: auto;
  margin-top: clamp(6px, 1.8vw, 18px);
}

.hero-copy {
  width: min(100%, 660px);
  display: grid;
  justify-items: center;
  gap: 10px;
}

.weekend-line {
  width: max-content;
  max-width: 100%;
  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(28px, 7vw, 46px);
  font-weight: 700;
  line-height: 1;
}

.hero-copy h1 {
  color: var(--cream-warm);
  font-size: clamp(48px, 11vw, 82px);
  font-weight: 650;
  line-height: 0.9;
}

.hero-copy p:not(.kicker):not(.weekend-line) {
  max-width: 46rem;
  color: rgba(255, 248, 234, 0.84);
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 650;
  line-height: 1.5;
}

.facebook-panel,
.offer-card,
.signature-card {
  border: 1px solid rgba(238, 215, 162, 0.26);
  border-radius: var(--radius-lg);
}

.facebook-panel {
  width: min(100%, 920px);
  justify-self: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  padding: clamp(14px, 2.8vw, 20px);
  border-color: rgba(238, 215, 162, 0.4);
  background: rgba(15, 67, 46, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 248, 234, 0.08), 0 16px 46px rgba(0, 0, 0, 0.18);
  animation: soft-rise 700ms ease 90ms both;
}

.facebook-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/textures/chalet-wood-grain.svg");
  background-size: 420px 420px;
  opacity: 0.16;
  pointer-events: none;
}

.facebook-panel::after {
  content: "";
  position: absolute;
  inset: 11px;
  z-index: -1;
  border: 1px solid rgba(238, 215, 162, 0.16);
  border-radius: calc(var(--radius-lg) - 7px);
  pointer-events: none;
}

.facebook-motion {
  width: 68px;
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  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-logo {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  border: 1px solid rgba(238, 215, 162, 0.3);
  border-radius: 999px;
  background: rgba(242, 236, 218, 0.045);
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 0.76;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  animation: deer-float-loop 5.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.facebook-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.facebook-copy p {
  color: var(--cream-warm);
  font-family: var(--font-display);
  font-size: clamp(25px, 4.6vw, 34px);
  font-weight: 750;
  line-height: 1.02;
}

.facebook-copy small {
  color: rgba(255, 248, 234, 0.74);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.facebook-cta,
.sticky-facebook a,
.location-action {
  touch-action: manipulation;
}

.facebook-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  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: 950;
  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;
  white-space: nowrap;
}

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

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

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

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

.offer-card {
  display: grid;
  justify-items: center;
  gap: clamp(14px, 2.6vw, 22px);
  padding: clamp(26px, 5vw, 44px) clamp(18px, 4vw, 34px);
  background: rgba(242, 236, 218, 0.06);
  text-align: center;
  animation: soft-rise 700ms ease 160ms both;
}

.offer-card h2 {
  max-width: 720px;
  color: var(--cream-warm);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 650;
  line-height: 1.02;
}

.offer-sub,
.offer-note {
  color: rgba(255, 248, 234, 0.74);
  font-weight: 800;
}

.offer-sub {
  font-size: 14px;
}

.offer-note {
  font-size: 13px;
}

.price-spotlight {
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 14px 0 16px;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}

.price-spotlight span {
  color: rgba(255, 248, 234, 0.74);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.price {
  color: var(--gold-500);
  font-family: var(--font-display);
  font-size: clamp(64px, 13vw, 92px);
  font-weight: 750;
  line-height: 0.88;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.menu-choices {
  display: grid;
  gap: 18px;
  animation: soft-rise 700ms ease 230ms both;
}

.menu-header {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.section-marked-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 0;
}

.section-icon {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(238, 215, 162, 0.34);
  border-radius: 999px;
  background: rgba(242, 236, 218, 0.055);
  color: var(--gold-300);
}

.section-icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.72;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-header h2,
.signature-card h2 {
  color: var(--cream-warm);
  font-size: clamp(30px, 5.8vw, 42px);
  font-weight: 650;
  line-height: 1;
}

.menu-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-cream);
  border-radius: var(--radius-lg);
  background: var(--line-cream);
}

.menu-group {
  --menu-accent: var(--gold-300);
  --menu-accent-soft: rgba(238, 215, 162, 0.12);
  min-width: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 72px 22px auto;
  align-content: start;
  gap: 8px;
  padding: clamp(20px, 3.5vw, 28px);
  background: rgba(7, 39, 26, 0.92);
}

.menu-group:nth-child(2) {
  --menu-accent: #dbc37f;
  --menu-accent-soft: rgba(219, 195, 127, 0.11);
}

.menu-group:nth-child(3) {
  --menu-accent: var(--gold-500);
  --menu-accent-soft: rgba(201, 161, 78, 0.12);
}

.menu-group::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 7px;
  background: var(--menu-accent);
  opacity: 0.8;
}

.menu-group-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.menu-role {
  width: max-content;
  max-width: 100%;
  padding: 5px 9px;
  border: 1px solid rgba(238, 215, 162, 0.22);
  border-radius: 999px;
  background: var(--menu-accent-soft);
  color: rgba(255, 248, 234, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-number {
  color: var(--menu-accent);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.menu-group h3 {
  color: var(--cream-warm);
  font-size: clamp(25px, 3vw, 32px);
  font-weight: 680;
  line-height: 0.98;
  align-self: start;
}

.menu-group h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin-top: 12px;
  background: var(--menu-accent);
  opacity: 0.65;
}

.menu-helper {
  color: rgba(255, 248, 234, 0.62);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  align-self: start;
}

.menu-group ul {
  display: grid;
  gap: 0;
  align-self: start;
  margin-top: 9px;
}

.menu-group li {
  position: relative;
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(242, 236, 218, 0.12);
  color: rgba(255, 248, 234, 0.9);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.35;
}

.menu-group li::before {
  content: "";
  width: 6px;
  aspect-ratio: 1;
  border: 1px solid var(--menu-accent);
  border-radius: 999px;
  background: var(--menu-accent-soft);
}

.menu-group li:last-child {
  border-bottom: 0;
}

.signature-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(24px, 4.5vw, 38px);
  background: rgba(16, 90, 60, 0.35);
  animation: soft-rise 700ms ease 300ms both;
}

.menu-deer {
  position: absolute;
  z-index: -1;
  width: clamp(150px, 24vw, 230px);
  height: auto;
  right: -34px;
  top: -28px;
  opacity: 0.075;
  filter: saturate(0.82);
  pointer-events: none;
}

.signature-head {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.mocktail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 30px);
}

.mocktail-list p {
  display: grid;
  gap: 4px;
}

.mocktail-list strong {
  color: var(--cream-warm);
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 31px);
  font-style: italic;
  font-weight: 650;
  line-height: 1;
}

.mocktail-list span,
.pairing-band span,
.pairing-band p {
  color: rgba(255, 248, 234, 0.72);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.45;
}

.pairing-band {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line-cream);
}

.price-band-small {
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 12px 0;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  text-align: center;
}

.price-band-small span {
  color: rgba(255, 248, 234, 0.72);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}

.price-band-small strong {
  color: var(--gold-500);
  font-family: var(--font-display);
  font-size: clamp(38px, 8vw, 52px);
  font-weight: 750;
  line-height: 0.9;
}

.pairing-band p {
  color: var(--cream-warm);
  font-weight: 900;
}

.pairing-band p span {
  display: block;
  margin-top: 2px;
}

.location-section {
  width: min(100%, 920px);
  justify-self: center;
  position: relative;
  padding: 0;
  animation: soft-rise 700ms ease 370ms both;
}

.location-section .location-card {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  grid-template-columns: minmax(320px, 0.98fr) minmax(270px, 0.82fr);
  gap: clamp(16px, 3vw, 30px);
}

.location-section .location-illustration {
  min-height: clamp(340px, 38vw, 455px);
  border-color: rgba(238, 215, 162, 0.34);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.location-section .location-details {
  padding: clamp(8px, 1.6vw, 18px) 0;
}

.location-section .location-details h2 {
  font-size: clamp(40px, 5.4vw, 62px);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  padding: 10px 0 2px;
  color: rgba(255, 248, 234, 0.74);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

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

.footer-follow {
  font-size: 13px;
  font-weight: 800;
}

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

.sticky-facebook {
  display: none;
}

@keyframes soft-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@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);
  }
}

@media (min-width: 980px) {
  .page-shell {
    width: min(100%, 1160px);
  }

  .hero {
    padding-left: 120px;
    padding-right: 120px;
  }

  .offer-card,
  .menu-choices,
  .signature-card {
    width: min(100%, 920px);
    justify-self: center;
  }
}

@media (max-width: 820px) {
  .baluchon-page {
    padding: 10px;
  }

  .page-shell {
    gap: 18px;
    padding: 16px 12px 22px;
    border-radius: 20px;
  }

  .hero {
    padding-top: 44px;
  }

  .wordmark {
    width: clamp(174px, 58vw, 235px);
  }

  .hero-copy h1 {
    font-size: clamp(42px, 11.5vw, 58px);
  }

  .facebook-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 16px 12px;
  }

  .facebook-panel::after {
    inset: 9px;
  }

  .facebook-copy p {
    font-size: clamp(25px, 7vw, 31px);
  }

  .facebook-cta {
    width: min(100%, 360px);
  }

  .price {
    margin-top: 2px;
  }

  .menu-choice-grid,
  .mocktail-list,
  .pairing-band {
    grid-template-columns: 1fr;
  }

  .menu-group {
    grid-template-rows: none;
    gap: 10px;
  }

  .menu-group h3 {
    font-size: clamp(25px, 8vw, 32px);
  }

  .pairing-band {
    gap: 16px;
  }

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

  .location-section .location-card {
    grid-template-columns: 1fr;
  }

  .location-section .location-details {
    padding: 0;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 82px;
  }

  .badge {
    right: 2px;
  }

  .offer-card,
  .signature-card {
    padding: 22px 18px;
  }

  .sticky-facebook {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(7, 39, 26, 0.94);
    border-top: 1px solid rgba(238, 215, 162, 0.18);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 16px));
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .sticky-facebook.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sticky-facebook a {
    width: 100%;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(238, 215, 162, 0.86);
    border-radius: 14px;
    background: var(--cream-paper);
    color: var(--forest-950);
    font-size: 15px;
    font-weight: 950;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
