:root {
  --bg: #08110a;
  --bg-soft: #0f1d12;
  --surface: rgba(18, 23, 18, 0.72);
  --surface-strong: rgba(11, 14, 11, 0.88);
  --text: #f3efe4;
  --muted: rgba(243, 239, 228, 0.75);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.48);
  --accent: #c8ea11;
  --accent-2: #ffd54a;
  --accent-rgb: 200, 234, 17;
  --hero-glow: rgba(178, 231, 48, 0.25);
  --hero-secondary-glow: rgba(255, 177, 35, 0.18);
  --button-text: #0b100c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(var(--accent-rgb), 0.16), transparent 32%),
    radial-gradient(circle at 85% 12%, var(--hero-secondary-glow), transparent 22%),
    linear-gradient(180deg, #030503 0%, var(--bg) 40%, #020302 100%);
  color: var(--text);
  overflow-x: clip;
  transition:
    background 500ms ease,
    color 300ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at var(--pointer-x, 70%) var(--pointer-y, 20%), rgba(var(--accent-rgb), 0.14), transparent 18%),
    transparent;
  pointer-events: none;
  z-index: 0;
}

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

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

button {
  font: inherit;
}

.page-glow,
.noise,
.progress-bar,
.site-header,
main {
  position: relative;
  z-index: 1;
}

.page-glow {
  position: fixed;
  inset: auto auto -15rem -10rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.18), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    linear-gradient(transparent 0, rgba(255, 255, 255, 0.3) 50%, transparent 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 120px 120px, 120px 120px;
  mix-blend-mode: soft-light;
}

.progress-bar {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 24px rgba(var(--accent-rgb), 0.5);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.9rem 1rem;
  backdrop-filter: blur(18px);
  background: rgba(5, 6, 5, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease,
    padding 250ms ease;
}

.site-header.is-scrolled {
  padding: 0.55rem 1rem;
  background: rgba(4, 5, 4, 0.94);
  border-color: rgba(var(--accent-rgb), 0.16);
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.3);
}

.site-header-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  cursor: pointer;
  transition:
    border-color 250ms ease,
    background 250ms ease,
    transform 250ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.42);
}

.menu-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform 250ms ease,
    opacity 250ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 3.25rem;
  height: auto;
}

.brand span {
  display: grid;
  gap: 0.15rem;
}

.brand strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}

.brand small,
.site-nav a,
.header-cta,
.eyebrow,
.detail-item span,
.stat-card span,
.ritual-item span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

.brand small,
.site-nav a,
.header-cta {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}

.site-nav a:hover,
.header-cta:hover {
  color: var(--text);
}

.header-cta {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition:
    transform 250ms ease,
    border-color 250ms ease,
    background 250ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.45);
}

main {
  width: min(1240px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.hero {
  min-height: calc(100vh - 4.8rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--accent-2);
}

.eyebrow::before {
  content: "";
  width: 3rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
  overflow-wrap: anywhere;
}

h1,
#beerName,
#selectorTitle,
.section-heading h2,
.ritual-copy h2,
.cta-panel h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
}

h1 {
  margin-top: 0.7rem;
  font-size: clamp(4.5rem, 10vw, 8.6rem);
  text-wrap: balance;
}

.hero-text,
.section-heading p,
.selector-description,
.experience-card p,
.ritual-copy p,
.cta-panel p,
.quote {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
  overflow-wrap: anywhere;
}

.hero-copy,
.hero-stage,
.product-spotlight,
.product-copy,
.selector-content,
.selector-visual,
.selector-copy,
.ritual-copy,
.ritual-panel,
.cta-panel,
.experience-card {
  min-width: 0;
}

.hero-text {
  max-width: 38rem;
  margin: 1.2rem 0 2rem;
}

.hero-copy > *,
.selector-copy > *,
.section-heading > *,
.ritual-copy > *,
.cta-panel > * {
  max-width: 100%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    border-color 250ms ease,
    background 250ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--button-text);
  box-shadow: 0 1rem 2rem rgba(var(--accent-rgb), 0.25);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.button-secondary:hover {
  border-color: rgba(var(--accent-rgb), 0.42);
}

.ticker {
  width: min(35rem, 100%);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.ticker-track {
  display: flex;
  gap: 2.2rem;
  min-width: max-content;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--muted);
  animation: ticker 20s linear infinite;
}

.ticker-track span {
  position: relative;
}

.ticker-track span::after {
  content: "•";
  position: absolute;
  right: -1.3rem;
  color: var(--accent);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-stage,
.selector-shell,
.ritual-panel,
.cta-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  box-shadow: 0 2rem 5rem var(--shadow);
}

.hero-stage {
  position: relative;
  min-height: 45rem;
  border-radius: 2rem;
  overflow: hidden;
  padding: 2rem;
  isolation: isolate;
}

.hero-stage::before,
.selector-shell::before,
.ritual-panel::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 35%),
    radial-gradient(circle at 75% 15%, rgba(var(--accent-rgb), 0.22), transparent 24%);
  pointer-events: none;
}

.halo {
  position: absolute;
  inset: auto auto 16% 16%;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.34), transparent 62%);
  filter: blur(10px);
}

.seal {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 8.8rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.15rem;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb), 0.52);
  color: var(--accent-2);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.66)),
    rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
  box-shadow:
    0 1.2rem 2rem rgba(0, 0, 0, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  z-index: 4;
  transition:
    transform 380ms ease,
    opacity 280ms ease,
    filter 280ms ease,
    z-index 0ms linear 220ms;
}

.product-spotlight {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 1rem;
}

.product-copy {
  max-width: 18rem;
}

.product-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  font-size: 0.76rem;
}

#beerName {
  font-size: clamp(3.6rem, 7vw, 5.7rem);
  margin-top: 0.75rem;
}

.product-tagline {
  margin: 0.35rem 0 1.4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--text);
}

.stat-grid {
  display: grid;
  gap: 0.75rem;
}

.stat-card {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.stat-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.02rem;
}

.bottle-frame {
  position: relative;
  justify-self: end;
  width: min(22rem, 100%);
  padding: 0.9rem;
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2rem 3rem rgba(0, 0, 0, 0.35);
  z-index: 2;
  transition:
    transform 380ms ease,
    box-shadow 380ms ease,
    border-color 280ms ease;
}

.bottle-frame img,
.selector-visual img {
  transform: translateY(0) rotate(-3deg);
  transform-origin: center;
  transition: transform 450ms ease, opacity 300ms ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
}

.bottle-frame img {
  width: 100%;
  border-radius: 1.25rem;
}

.is-image-swapping {
  opacity: 0;
  transform: translateY(16px) rotate(-2deg);
}

.hero-stage:hover .bottle-frame img {
  transform: translateY(-8px) rotate(-4deg) scale(1.015);
}

.hero-stage.has-bottle-focus .bottle-frame {
  transform: translateY(-10px) rotate(1.5deg);
  border-color: rgba(var(--accent-rgb), 0.28);
  box-shadow: 0 2.4rem 3.4rem rgba(0, 0, 0, 0.42);
}

.hero-stage.has-bottle-focus .bottle-frame img {
  transform: translateY(-14px) rotate(-5.5deg) scale(1.04);
}

.hero-stage.has-bottle-focus .seal {
  opacity: 0.42;
  filter: blur(1px);
  transform: translate(0.8rem, -0.3rem) scale(0.92);
  z-index: 0;
  transition:
    transform 380ms ease,
    opacity 280ms ease,
    filter 280ms ease,
    z-index 0ms linear 0ms;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.ritual-copy h2,
.cta-panel h2 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  margin: 0.8rem 0 1rem;
}

.selector-shell {
  position: relative;
  border-radius: 2rem;
  padding: 1.5rem;
  overflow: hidden;
}

.beer-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.beer-tab {
  text-align: left;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.beer-tab:hover,
.beer-tab.is-active {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.46);
  background: rgba(var(--accent-rgb), 0.11);
}

.beer-tab span {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.beer-tab small {
  color: var(--muted);
}

.selector-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
}

.selector-visual {
  min-height: 38rem;
  display: grid;
  place-items: center;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(var(--accent-rgb), 0.22), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(255, 255, 255, 0.03));
  overflow: hidden;
}

.selector-visual img {
  max-height: 40rem;
  width: min(22rem, 100%);
  object-fit: contain;
  border-radius: 1.25rem;
  box-shadow: 0 2rem 3rem rgba(0, 0, 0, 0.3);
}

.data-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}

.data-chip {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#selectorTitle {
  font-size: clamp(3.2rem, 5vw, 4.8rem);
}

.selector-description {
  margin: 0.8rem 0 1.5rem;
  max-width: 34rem;
}

.detail-list {
  display: grid;
  gap: 0.8rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.detail-item strong {
  font-size: 1.05rem;
}

.quote {
  margin: 1.4rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid rgba(var(--accent-rgb), 0.45);
  font-style: italic;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.experience-card {
  padding: 1.5rem;
  border-radius: 1.4rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.18);
}

.experience-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--accent);
}

.experience-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.ritual {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
}

.ritual-panel,
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.8rem;
  padding: 1.5rem;
}

.ritual-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ritual-item {
  position: relative;
  z-index: 1;
  padding: 1.3rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ritual-item strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem;
}

.cta-panel img {
  width: min(14rem, 34vw);
  filter: drop-shadow(0 1.4rem 2rem rgba(0, 0, 0, 0.45));
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .selector-content,
  .ritual,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .product-spotlight {
    min-height: 44rem;
    grid-template-columns: 1fr;
  }

  .product-copy {
    max-width: 23rem;
  }

  .bottle-frame {
    justify-self: center;
    width: min(24rem, 90%);
  }

  .selector-visual {
    min-height: 24rem;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 0.9rem 1rem;
  }

  .site-header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
  }

  main {
    width: min(100% - 1.5rem, 1240px);
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 1.5rem;
    gap: 1.4rem;
  }

  .beer-tabs,
  .experience-grid,
  .ritual-panel {
    grid-template-columns: 1fr;
  }

  .product-spotlight {
    min-height: auto;
    gap: 1.3rem;
  }

  .hero-stage {
    padding: 1.5rem;
  }

  .seal {
    width: 6.3rem;
    font-size: 0.62rem;
    padding: 0.8rem;
  }
}

@media (max-width: 560px) {
  .brand span,
  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    padding: 0.85rem 1rem;
  }

  .site-header.is-scrolled {
    padding: 0.7rem 0.85rem;
  }

  .brand img {
    width: 2.7rem;
  }

  .site-header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
    width: min(1240px, calc(100% - 2rem));
    max-height: 0;
    margin: 0 auto;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 280ms ease,
      opacity 220ms ease,
      padding-bottom 280ms ease;
  }

  .site-header.is-menu-open .mobile-menu {
    max-height: 24rem;
    opacity: 1;
    pointer-events: auto;
    padding-bottom: 0.65rem;
  }

  .mobile-nav {
    display: grid;
    gap: 0.7rem;
    padding: 0.75rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
      rgba(4, 5, 4, 0.96);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.24);
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    background: rgba(255, 255, 255, 0.03);
  }

  .mobile-menu-cta {
    background: linear-gradient(135deg, var(--accent-2), var(--accent)) !important;
    color: var(--button-text) !important;
    border-color: transparent !important;
    font-weight: 800;
  }

  main {
    width: 100%;
    padding: 0 0.5rem;
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4.1rem);
    line-height: 0.92;
  }

  .section-heading h2,
  .ritual-copy h2,
  .cta-panel h2,
  #selectorTitle,
  #beerName {
    font-size: clamp(2.5rem, 14vw, 3.4rem);
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .selector-shell,
  .hero-stage,
  .ritual-panel,
  .cta-panel {
    width: 100%;
    border-radius: 1.4rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .hero-copy,
  .section-heading,
  .ritual-copy,
  .cta-panel {
    text-align: center;
  }

  .eyebrow {
    width: 100%;
    justify-content: center;
    gap: 0.55rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .eyebrow::before {
    width: 1.6rem;
  }

  .hero-text,
  .section-heading p,
  .selector-description,
  .experience-card p,
  .ritual-copy p,
  .cta-panel p,
  .quote {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-text {
    width: 100%;
    margin: 1rem auto 1.35rem;
  }

  .ticker {
    display: none;
  }

  .hero-stage {
    padding: 1rem;
  }

  .halo {
    inset: auto auto 18% 50%;
    width: 14rem;
    height: 14rem;
    transform: translateX(-50%);
  }

  .seal {
    top: 0.8rem;
    right: 0.8rem;
    width: 4.8rem;
    padding: 0.5rem;
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }

  .product-spotlight {
    grid-template-columns: 1fr;
  }

  .bottle-frame {
    order: -1;
    justify-self: center;
    width: min(16.5rem, 100%);
    padding: 0.6rem;
    border-radius: 1.2rem;
  }

  .product-copy {
    max-width: none;
    text-align: center;
  }

  .product-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .product-tagline {
    font-size: 1.35rem;
    margin-bottom: 1rem;
  }

  .stat-grid {
    gap: 0.65rem;
  }

  .stat-card {
    padding: 0.85rem 0.9rem;
    border-radius: 0.9rem;
  }

  .stat-card strong {
    font-size: 0.95rem;
  }

  .selector-shell {
    padding: 1rem;
  }

  .beer-tab {
    padding: 0.9rem 1rem;
  }

  .beer-tab span {
    font-size: 1.65rem;
  }

  .beer-tab small {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.72rem;
  }

  .selector-content {
    gap: 1rem;
  }

  .selector-visual {
    min-height: auto;
    padding: 0.9rem;
    border-radius: 1.2rem;
  }

  .selector-visual img {
    width: min(16rem, 100%);
    max-height: none;
    border-radius: 1rem;
  }

  .selector-copy {
    width: 100%;
    text-align: left;
  }

  .data-chip-row {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .data-chip {
    font-size: 0.72rem;
    padding: 0.5rem 0.8rem;
  }

  .detail-item {
    padding: 0.9rem;
  }

  .detail-item strong {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .quote {
    margin-top: 1rem;
    padding-left: 0.8rem;
  }

  .experience-card,
  .ritual-item {
    padding: 1.1rem;
    border-radius: 1rem;
  }

  .cta-panel {
    gap: 1rem;
    padding: 1.4rem;
  }

  .cta-panel img {
    width: min(8.5rem, 42vw);
    margin: 0 auto;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(2.55rem, 14vw, 3.35rem);
  }

  .hero,
  .section {
    padding-top: 0;
  }

  .hero-copy {
    padding-top: 0.8rem;
  }

  .hero-stage {
    margin-top: 0.35rem;
  }

  .seal {
    display: none;
  }

  .bottle-frame {
    width: min(15rem, 100%);
  }

  .selector-visual img {
    width: min(14.5rem, 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
