:root {
  --bg: #15110d;
  --bg-soft: #211914;
  --paper: #f5efe5;
  --paper-muted: #d7cabb;
  --text: #fff7eb;
  --muted: #b9aa9b;
  --line: rgba(255, 247, 235, 0.14);
  --amber: #c9914c;
  --amber-dark: #8f6134;
  --charcoal: #1a1714;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.seo-h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 247, 235, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.16;
  z-index: 20;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - 1180px) / 2)) 14px;
  border-bottom: 1px solid rgba(255, 247, 235, 0.12);
  background: rgba(21, 17, 13, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  z-index: 12;
  overflow: visible;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo-mark {
  width: 54px;
  height: 28px;
  object-fit: contain;
}

.header-brand {
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.brand-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(201, 145, 76, 0.12);
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(21, 17, 13, 0.58);
  border: 1px solid rgba(255, 247, 235, 0.08);
  border-radius: 999px;
  padding: 2px;
  backdrop-filter: blur(10px);
}

.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 247, 235, 0.78);
  font-size: 14px;
  transition: color 0.28s cubic-bezier(0.16, 1, 0.3, 1), background 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 247, 235, 0.08);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 247, 235, 0.06);
  color: var(--text);
  cursor: pointer;
}

.header-marquee {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.22;
  mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
}

.header-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 34px;
  padding-left: 34px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: headerMarquee 28s linear infinite;
}

.header-marquee-track span::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 34px;
  border-radius: 50%;
  background: var(--amber);
  vertical-align: 0.18em;
}

@keyframes headerMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.menu-toggle span {
  position: absolute;
  left: calc(50% - 8px);
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-toggle span:first-child {
  top: calc(50% - 3px);
  transform: translateY(-50%);
}

.menu-toggle span:last-child {
  top: calc(50% + 3px);
  transform: translateY(-50%);
}

.site-header.is-open .menu-toggle span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(88px, 9vh, 112px) 0 clamp(34px, 5vh, 56px);
  --head-x: 0px;
  --head-y: 0px;
  --head-rotate-x: 0deg;
  --head-rotate-y: 0deg;
  --glow-x: 72%;
  --glow-y: 42%;
}

.hero-image,
.hero-glow,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  transform:
    perspective(1100px)
    translate3d(var(--head-x), var(--head-y), 0)
    rotateX(var(--head-rotate-x))
    rotateY(var(--head-rotate-y))
    scale(1.035);
  transform-origin: 74% 44%;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero.is-active .hero-image {
  transition-duration: 0.18s;
}

.hero-glow {
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(229, 177, 103, 0.24), transparent 14%),
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 247, 235, 0.1), transparent 7%),
    radial-gradient(circle at 12% 82%, rgba(201, 145, 76, 0.16), transparent 22%);
  mix-blend-mode: screen;
  opacity: 0.8;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 17, 13, 0.82) 0%, rgba(21, 17, 13, 0.64) 34%, rgba(21, 17, 13, 0.12) 72%),
    linear-gradient(180deg, rgba(21, 17, 13, 0.16) 0%, rgba(21, 17, 13, 0.52) 100%);
}

.hero-content {
  position: relative;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding-top: clamp(4px, 2.5vh, 28px);
  transform: translateY(clamp(-34px, -3.6vh, -14px));
}

.hero-logo {
  width: clamp(210px, 21vw, 340px);
  height: auto;
  margin: 0 0 clamp(24px, 4vh, 44px);
  opacity: 0.96;
  filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.32));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: clamp(64px, 10vw, 148px);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(23px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-copy {
  max-width: 520px;
  color: rgba(255, 247, 235, 0.84);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.55;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(20px, 3vh, 30px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px) scale(0.98);
}

.button-primary {
  background: var(--paper);
  color: #18120d;
}

.button-primary:hover {
  background: #fff8ec;
}

.button-ghost {
  border-color: rgba(255, 247, 235, 0.2);
  background: rgba(255, 247, 235, 0.05);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(72px, 9vw, 132px) 0;
}

.section[id],
.footer[id] {
  scroll-margin-top: 92px;
}

.section-intro {
  background: var(--paper);
  color: #211914;
}

.section-intro .eyebrow,
.section-intro p {
  color: #725b44;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.intro-text {
  padding-top: 16px;
}

.section-format {
  padding-bottom: 0;
}

.format-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.format-copy {
  position: sticky;
  top: 120px;
}

.format-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.format-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.format-item span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.format-item p {
  max-width: 620px;
  margin: 0;
  color: var(--paper-muted);
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.35;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.72fr);
  gap: 20px;
}

.feature-large,
.feature-card,
.booking-form {
  border: 1px solid var(--line);
  background: rgba(255, 247, 235, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-large {
  min-height: 430px;
  padding: clamp(28px, 5vw, 56px);
  position: relative;
  display: grid;
  align-content: end;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 145, 76, 0.18), rgba(255, 247, 235, 0.035) 52%),
    rgba(255, 247, 235, 0.055);
}

.feature-stack {
  display: grid;
  gap: 20px;
}

.feature-card {
  padding: 30px;
  min-height: 205px;
}

.feature-number {
  display: block;
  margin-bottom: auto;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.feature-large .feature-number {
  position: absolute;
  top: clamp(26px, 4vw, 48px);
  left: clamp(28px, 5vw, 56px);
  z-index: 1;
  margin-bottom: 0;
}

.feature-large h3,
.feature-large p {
  position: relative;
  z-index: 1;
}

.mix-board {
  position: absolute;
  top: clamp(24px, 3vw, 32px);
  right: clamp(24px, 4vw, 52px);
  z-index: 1;
  width: min(56%, 430px);
  min-height: 204px;
  border: 1px solid rgba(255, 247, 235, 0.12);
  background:
    radial-gradient(circle at 74% 26%, rgba(201, 145, 76, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 247, 235, 0.05), transparent 42%),
    rgba(21, 17, 13, 0.18);
  padding: 18px 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mix-board-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 247, 235, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mix-board-head span {
  color: var(--amber);
}

.mix-orbit {
  position: absolute;
  left: 44px;
  top: 52px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 247, 235, 0.16);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(255, 247, 235, 0.12) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(0deg, transparent calc(50% - 0.5px), rgba(255, 247, 235, 0.12) 50%, transparent calc(50% + 0.5px)),
    radial-gradient(circle, rgba(201, 145, 76, 0.16) 0 28%, transparent 29%);
}

.mix-core,
.mix-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mix-core {
  inset: 50% auto auto 50%;
  width: 46px;
  height: 46px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(201, 145, 76, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(201, 145, 76, 0.24), rgba(255, 247, 235, 0.04)),
    rgba(21, 17, 13, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 247, 235, 0.08);
  transform: translate(-50%, -50%) rotate(45deg);
}

.mix-node {
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(255, 247, 235, 0.1);
  background: rgba(21, 17, 13, 0.82);
  color: rgba(215, 202, 187, 0.74);
  box-shadow: none;
}

.mix-node-top {
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.mix-node-right {
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
}

.mix-node-bottom {
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.mix-node-left {
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
}

.mix-profile {
  position: absolute;
  right: 12px;
  top: 62px;
  display: grid;
  width: min(47%, 192px);
  gap: 8px;
}

.mix-profile span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 25px;
  color: rgba(255, 247, 235, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mix-profile span::after {
  content: "";
  width: 46px;
  height: 1px;
  margin-left: 12px;
  background: linear-gradient(90deg, var(--amber), rgba(255, 247, 235, 0.12));
}

.section-menu {
  padding-top: clamp(72px, 9vw, 132px);
}

.menu-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.menu-note {
  max-width: 520px;
  margin: 0;
  color: rgba(215, 202, 187, 0.74);
  font-size: 14px;
  line-height: 1.65;
}

.menu-pdf-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper-muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.menu-category {
  border: 1px solid var(--line);
  background: rgba(255, 247, 235, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: clamp(22px, 3vw, 34px);
}

.menu-category-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 58px);
  padding: clamp(20px, 2.6vw, 30px);
}

.menu-category-wide .menu-category-head {
  grid-column: 1;
  grid-row: 1;
}

.menu-category-wide .menu-list {
  grid-column: 2;
  grid-row: 1;
}

.menu-category-wide .menu-row {
  padding: 14px 0;
}

.menu-category-wide .category-note {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  margin-top: 0;
}

.menu-category-head span {
  display: block;
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-category-icon {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin: 0 0 0 12px;
  flex: 0 0 auto;
  background-color: currentColor;
  opacity: 1;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.18));
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.icon-tea {
  mask-image: url("assets/icons/tea.svg");
  -webkit-mask-image: url("assets/icons/tea.svg");
}

.icon-lemonade {
  mask-image: url("assets/icons/lemonade.svg");
  -webkit-mask-image: url("assets/icons/lemonade.svg");
}

.icon-drink {
  mask-image: url("assets/icons/drink.svg");
  -webkit-mask-image: url("assets/icons/drink.svg");
}

.icon-snacks {
  mask-image: url("assets/icons/snacks.svg");
  -webkit-mask-image: url("assets/icons/snacks.svg");
}

.menu-category-head h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.menu-list {
  display: grid;
  gap: 0;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.menu-row:first-child {
  padding-top: 0;
}

.menu-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-list.compact .menu-row {
  padding: 12px 0;
}

.menu-row span {
  color: var(--paper-muted);
}

.menu-row strong {
  white-space: nowrap;
  color: var(--text);
}

.category-note {
  margin: 22px 0 0;
  color: rgba(215, 202, 187, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.menu-guide-card {
  position: relative;
  display: grid;
  min-height: 100%;
  align-content: space-between;
  gap: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(201, 145, 76, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 247, 235, 0.08), rgba(255, 247, 235, 0.025)),
    rgba(255, 247, 235, 0.045);
}

.menu-guide-card::before {
  content: "";
  position: absolute;
  right: clamp(22px, 4vw, 48px);
  bottom: clamp(20px, 3vw, 38px);
  width: clamp(106px, 12vw, 168px);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 145, 76, 0.2);
  transform: rotate(45deg);
  opacity: 0.7;
  pointer-events: none;
}

.menu-guide-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-guide-card h3 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
}

.menu-guide-card p {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(215, 202, 187, 0.74);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.48;
}

.menu-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.menu-guide-grid span {
  display: grid;
  gap: 7px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255, 247, 235, 0.1);
  background: rgba(21, 17, 13, 0.24);
}

.menu-guide-grid strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
}

.menu-guide-grid em {
  color: rgba(215, 202, 187, 0.66);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.menu-guide-note {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(215, 202, 187, 0.68);
  font-size: 14px;
}

.gallery-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 260px;
  grid-template-areas:
    "wide wide mary"
    "art bar mary";
  gap: 14px;
}

.gallery-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(0.9) contrast(1.04);
}

.gallery-wide {
  grid-area: wide;
}

.gallery-tall {
  grid-area: mary;
}

.gallery-grid .gallery-item:nth-child(3) {
  grid-area: art;
}

.gallery-grid .gallery-item:nth-child(4) {
  grid-area: bar;
}

.gallery-mary {
  object-position: 50% 52%;
}

.booking-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(201, 145, 76, 0.18), transparent 34%),
    var(--bg-soft);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 0.82fr;
  gap: clamp(32px, 8vw, 112px);
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 120px;
}

.booking-logo {
  width: min(300px, 60vw);
  height: auto;
  margin: 0 0 34px;
  opacity: 0.42;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.32));
}

.booking-copy p {
  max-width: 520px;
  margin-top: 24px;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.form-pair {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.booking-form span {
  color: var(--paper);
  font-size: 14px;
  font-weight: 800;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 247, 235, 0.14);
  border-radius: var(--radius);
  background: rgba(21, 17, 13, 0.58);
  color: var(--text);
  font: inherit;
  outline: none;
  resize: vertical;
  transition: border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1), background 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-form input {
  min-height: 52px;
  padding: 0 15px;
}

.booking-form textarea {
  min-height: 116px;
  padding: 14px 15px;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: rgba(201, 145, 76, 0.82);
  background: rgba(21, 17, 13, 0.86);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-note a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: rgba(201, 145, 76, 0.72);
  text-underline-offset: 3px;
}

.form-note a:hover {
  color: #fff8ec;
}

.form-note.is-success {
  color: #d8b881;
}

.bonus-section {
  background: var(--paper);
  color: #211914;
  overflow: hidden;
}

.bonus-section .eyebrow,
.bonus-section p {
  color: #725b44;
}

.bonus-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(480px, 1.18fr);
  gap: clamp(28px, 5.4vw, 80px);
  align-items: center;
}

.bonus-copy h2 {
  max-width: 640px;
}

.bonus-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 20px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.bonus-button {
  width: min(100%, 330px);
  min-height: 58px;
  margin-top: 34px;
  color: #211914;
  background: linear-gradient(135deg, #fff8ec, #d8b881);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.bonus-card-frame {
  position: relative;
  margin-right: clamp(-8px, -1.8vw, -24px);
  padding: clamp(8px, 1.2vw, 14px);
  border: 1px solid rgba(33, 25, 20, 0.16);
  background:
    radial-gradient(circle at 82% 20%, rgba(201, 145, 76, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.34);
}

.bonus-card-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(33, 25, 20, 0.18);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bonus-card-frame:hover img {
  transform: translateY(-3px);
}

.footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #120f0c;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.footer p {
  max-width: 340px;
  margin: 16px 0 0;
  font-size: 14px;
}

.footer-brand {
  display: inline-flex;
}

.footer-logo {
  width: 140px;
  height: auto;
  opacity: 0.9;
}

.footer-links {
  display: grid;
  gap: 12px;
  text-align: right;
}

.footer-links a,
.footer-address {
  color: var(--paper-muted);
}

.footer-links a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 880px) {
  .site-header {
    top: 0;
    width: 100%;
    padding: 12px 14px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 10px;
    right: 10px;
    z-index: 4;
    display: grid;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(21, 17, 13, 0.92);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-header.is-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px;
  }

  .hero {
    min-height: 100dvh;
    padding: 86px 0 max(22px, env(safe-area-inset-bottom));
    align-items: end;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(21, 17, 13, 0.14) 0%, rgba(21, 17, 13, 0.42) 38%, rgba(21, 17, 13, 0.9) 100%),
      linear-gradient(90deg, rgba(21, 17, 13, 0.86), rgba(21, 17, 13, 0.18));
  }

  .hero-content {
    padding-top: clamp(118px, 24vh, 158px);
    transform: none;
  }

  .hero-logo {
    width: min(246px, 66vw);
    margin-bottom: 24px;
  }

  .hero-copy {
    font-size: clamp(17px, 4.8vw, 21px);
    line-height: 1.45;
  }

  .hero-actions,
  .footer-grid {
    flex-direction: column;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .button {
    width: 100%;
  }

  .intro-grid,
  .format-grid,
  .feature-layout,
  .menu-head,
  .bonus-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .format-copy,
  .booking-copy {
    position: static;
  }

  .menu-catalog,
  .menu-category-wide {
    grid-template-columns: 1fr;
  }

  .menu-category-wide {
    grid-column: auto;
  }

  .menu-category-wide .menu-category-head,
  .menu-category-wide .menu-list,
  .menu-category-wide .category-note {
    grid-column: auto;
    grid-row: auto;
  }

  .menu-guide-card {
    min-height: 360px;
  }

  .menu-category-icon {
    width: 30px;
    height: 30px;
  }

  .feature-large {
    min-height: auto;
    gap: 28px;
  }

  .feature-large .feature-number {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 0;
  }

  .mix-board {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-height: 214px;
  }

  .mix-profile {
    right: 18px;
    width: min(44%, 184px);
  }

  .bonus-card-frame {
    margin-right: 0;
  }

  .bonus-button {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "wide wide"
      "art bar"
      "mary mary";
    grid-auto-rows: 210px;
  }

  .gallery-tall {
    min-height: 430px;
  }

  .gallery-mary {
    object-position: 50% 50%;
  }

  .footer-links {
    text-align: left;
  }
}

@media (min-width: 881px) and (max-height: 840px) {
  .hero {
    padding-top: 82px;
    padding-bottom: 30px;
  }

  .hero-content {
    transform: translateY(-38px);
  }

  .hero-logo {
    width: clamp(205px, 19vw, 310px);
    margin-bottom: 22px;
  }

  .hero-copy {
    max-width: 500px;
    font-size: clamp(18px, 1.65vw, 21px);
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 22px;
  }
}

@media (max-width: 560px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding-left: 14px;
  }

  h1 {
    font-size: clamp(58px, 22vw, 88px);
  }

  h2 {
    font-size: clamp(31px, 11vw, 46px);
  }

  p {
    font-size: 16px;
  }

  .section {
    padding: 68px 0;
  }

  .section-menu {
    padding-top: 0;
  }

  .menu-row {
    display: grid;
    gap: 6px;
  }

  .menu-guide-card {
    min-height: auto;
  }

  .menu-guide-card h3 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .menu-guide-grid {
    grid-template-columns: 1fr;
  }

  .format-item,
  .form-pair {
    grid-template-columns: 1fr;
  }

  .format-item {
    gap: 10px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "wide"
      "art"
      "bar"
      "mary";
    grid-auto-rows: 260px;
  }

  .mix-board {
    display: grid;
    min-height: auto;
    padding: 16px;
    gap: 16px;
  }

  .mix-board-head {
    display: grid;
    gap: 6px;
  }

  .mix-orbit {
    position: relative;
    top: auto;
    left: auto;
    width: min(178px, 52vw);
    height: min(178px, 52vw);
    margin: 10px auto 4px;
  }

  .mix-profile {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
  }

  .mix-profile span {
    justify-content: flex-start;
    min-height: 22px;
    font-size: 10px;
  }

  .mix-profile span::after {
    flex: 1;
    width: auto;
    min-width: 26px;
  }

  .gallery-tall.gallery-mary {
    min-height: 520px;
    object-position: 50% 50%;
  }

  .feature-card,
  .booking-form {
    padding: 24px;
  }
}
