:root {
  --deep-navy: #0d1b3e;
  --dark-crimson: #6b1a1a;
  --fermented-gold: #c9a84c;
  --kraft-tan: #c8a87a;
  --aged-cream: #f0e8d0;
  --forest-dark: #1b3a2d;
  --bg: #fbfaf6;
  --surface: #ffffff;
  --ink: var(--deep-navy);
  --muted: #6e5d4a;
  --line: rgba(107, 26, 26, 0.18);
  --accent: var(--fermented-gold);
  --accent-strong: var(--dark-crimson);
  --hero-shadow: rgba(13, 27, 62, 0.56);
  --radius: 8px;
  color-scheme: light;
}

body[data-theme="stamp"] {
  --bg: #fbfaf6;
  --surface: #ffffff;
  --ink: var(--deep-navy);
  --muted: #6e5d4a;
  --line: rgba(107, 26, 26, 0.2);
  --accent: var(--fermented-gold);
  --accent-strong: var(--dark-crimson);
  --hero-shadow: rgba(13, 27, 62, 0.58);
}

body[data-theme="round"] {
  --bg: #f5f6f2;
  --surface: #ffffff;
  --ink: #102d48;
  --muted: #5d6872;
  --line: rgba(15, 45, 72, 0.15);
  --accent: #c95828;
  --accent-strong: #123b5f;
  --hero-shadow: rgba(18, 59, 95, 0.42);
}

body[data-theme="cube"] {
  --bg: #f7f5f0;
  --surface: #ffffff;
  --ink: #3d464c;
  --muted: #70777a;
  --line: rgba(61, 70, 76, 0.16);
  --accent: #e3a624;
  --accent-strong: #49545b;
  --hero-shadow: rgba(32, 40, 46, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 122px;
  height: 72px;
  overflow: hidden;
}

.brand-mark img {
  width: 120px;
  height: 72px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  font-size: 13px;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-demo-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.logo-demo-switch button {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 4px 8px 4px 5px;
  border: 1px solid transparent;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.logo-demo-switch button.is-active {
  border-color: color-mix(in srgb, var(--accent) 55%, white);
  color: var(--ink);
  background: color-mix(in srgb, var(--accent) 10%, white);
}

.logo-demo-switch img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  background: white;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  background: var(--surface);
}

.lang-switch button {
  min-width: 38px;
  height: 34px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.lang-switch button.is-active {
  color: var(--surface);
  background: var(--accent-strong);
}

.reserve-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--accent-strong);
  border-radius: var(--radius);
  font-weight: 800;
}

.reserve-link,
.button.primary {
  background: var(--accent-strong);
  color: white;
}

.button.secondary {
  background: color-mix(in srgb, var(--surface) 74%, transparent);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 116px clamp(20px, 5vw, 76px) 56px;
  color: white;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, var(--hero-shadow), rgba(0, 0, 0, 0.1) 70%), url("/assets/deck.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.88;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.hero-lede {
  width: min(720px, 100%);
  margin: 24px 0 0;
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 700;
}

.hero-badges,
.reservation-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span,
.reservation-types span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

section:not(.hero) {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 76px);
  scroll-margin-top: 86px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1fr;
  gap: clamp(28px, 5vw, 72px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.about-body p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.about-body p:first-child {
  margin-top: 0;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0 0;
}

.about-points div {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.about-points dt {
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 22px;
  font-weight: 900;
}

.about-points dd {
  margin: 0;
  color: var(--muted);
}

.theme-lab {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) 1fr;
  gap: 28px;
  align-items: start;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(30px, 4.8vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.theme-card {
  min-height: 190px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.theme-card.is-active {
  border-color: var(--accent-strong);
  outline: 3px solid color-mix(in srgb, var(--fermented-gold) 44%, transparent);
}

.theme-card img {
  width: 100%;
  height: 126px;
  object-fit: contain;
  background: white;
  border-radius: 6px;
}

.theme-card span {
  font-weight: 900;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.metric {
  min-height: 160px;
  padding: 32px clamp(20px, 4vw, 52px);
  background: var(--deep-navy);
  color: white;
}

.metric strong {
  display: block;
  font-size: 64px;
  line-height: 0.9;
  color: var(--fermented-gold);
  font-family: Georgia, "Times New Roman", serif;
}

.metric span {
  display: block;
  margin-top: 14px;
  max-width: 260px;
  font-weight: 800;
}

.video-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.video-section .section-heading p:not(.section-kicker) {
  max-width: 740px;
  color: var(--muted);
  font-size: 18px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 320px));
  justify-content: center;
  gap: clamp(14px, 3vw, 28px);
  align-items: start;
}

.video-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}

.video-grid video,
.video-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  aspect-ratio: 9 / 16;
}

.video-grid img {
  background: #000;
}

.vibe-photo:nth-of-type(2) img,
.vibe-photo:nth-of-type(4) img {
  object-position: center;
}

.vibe-photo:nth-of-type(5) img {
  object-position: center 72%;
}

.video-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.54);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  background: var(--surface);
}

.section-copy p:not(.section-kicker),
.reservation-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.beer-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.beer-list article,
.tour-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.beer-list span,
.tour-grid span {
  color: var(--accent-strong);
  font-weight: 900;
}

.beer-list h3,
.tour-grid h3 {
  margin: 8px 0;
  font-size: 24px;
}

.beer-list p,
.tour-grid p {
  margin: 0;
  color: var(--muted);
}

.image-panel {
  margin: 0;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.tour-section {
  background: var(--deep-navy);
  color: white;
}

.tour-section .section-kicker,
.tour-section .tour-grid span {
  color: var(--fermented-gold);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.tour-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.tour-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.tour-grid span {
  margin-top: auto;
}

.split-section.reverse .reservation-types span {
  color: var(--ink);
  border-color: var(--line);
  background: var(--bg);
}

.menu-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-section .section-heading p:not(.section-kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

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

.menu-card {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.menu-card h3 {
  margin: 0 0 18px;
  font-size: 25px;
}

.menu-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-card li {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

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

.menu-card span,
.menu-card p {
  color: var(--muted);
}

.menu-card b,
.menu-card strong {
  color: var(--accent-strong);
}

.menu-label {
  margin: 0 0 10px;
  color: var(--fermented-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-menu {
  grid-column: span 2;
  min-height: 220px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  background: var(--dark-crimson);
  color: white;
}

.feature-menu h3 {
  font-size: clamp(32px, 4vw, 54px);
}

.feature-menu p,
.feature-menu .menu-label,
.feature-menu strong {
  color: white;
}

.feature-menu strong {
  flex: 0 0 auto;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
}

.menu-soon {
  background: color-mix(in srgb, var(--fermented-gold) 10%, var(--surface));
}

.reservation-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) 1fr;
  gap: clamp(28px, 5vw, 72px);
  background: var(--surface);
}

.reservation-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  padding: 10px 12px;
}

textarea {
  resize: vertical;
}

.form-submit {
  margin-top: 4px;
  min-height: 52px;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 28px;
  align-items: start;
  padding: 34px clamp(20px, 5vw, 76px);
  background: var(--deep-navy);
  color: white;
}

.site-footer p,
.site-footer address {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.legal-info p {
  margin: 4px 0 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .logo-demo-switch span {
    display: none;
  }

  .logo-demo-switch button {
    padding: 4px;
  }

  .theme-lab,
  .about-section,
  .split-section,
  .split-section.reverse,
  .reservation-section {
    grid-template-columns: 1fr;
  }

  .theme-grid,
  .about-points,
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(190px, 320px));
  }

  .feature-menu {
    grid-column: span 2;
  }

  .intro-band {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 14px;
    gap: 12px;
  }

  .brand-mark {
    width: 92px;
    height: 54px;
  }

  .brand-mark img {
    width: 90px;
    height: 54px;
  }

  .lang-switch {
    display: none;
  }

  .logo-demo-switch {
    gap: 3px;
  }

  .logo-demo-switch img {
    width: 22px;
    height: 22px;
  }

  .reserve-link {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero {
    min-height: 88svh;
    padding: 96px 18px 38px;
  }

  .hero-badges span,
  .reservation-types span {
    font-size: 12px;
  }

  section:not(.hero) {
    padding: 46px 18px;
  }

  .theme-grid,
  .about-points,
  .tour-grid,
  .menu-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .video-grid figcaption {
    left: 8px;
    bottom: 8px;
    max-width: calc(100% - 16px);
    font-size: 11px;
  }

  .feature-menu {
    grid-column: auto;
    align-items: start;
    flex-direction: column;
  }

}
