:root {
  --bg: #0a0203;
  --bg-soft: #1a1312;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-faint: rgba(255, 255, 255, 0.5);
  --red: #f04e23;
  --orange: #ec9123;
  --yellow: #ffcb05;
  --cyan: #74cee2;
  --violet: #937cb9;
  --max-width: 1240px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  background:
    radial-gradient(circle at top, rgba(240, 78, 35, 0.16), transparent 34%),
    linear-gradient(180deg, #140705 0%, #0a0203 35%, #120d0d 100%);
  color: var(--text);
}

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

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

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

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(10, 2, 3, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner,
.footer-inner,
.section-inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-lockup img {
  width: 136px;
  height: auto;
}

.brand-meta {
  display: grid;
  gap: 2px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-meta strong {
  font-size: 1.1rem;
}

.brand-meta span {
  font-size: 0.9rem;
  color: var(--text-faint);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.section {
  position: relative;
  padding: 88px 0;
}

.section.compact {
  padding: 56px 0;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
}

.display {
  margin: 0;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-title {
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.lede,
.body-copy {
  max-width: 720px;
  font-size: 1.35rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.body-copy {
  font-size: 1.2rem;
}

.hero {
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 2, 3, 0.82) 0%, rgba(10, 2, 3, 0.7) 42%, rgba(10, 2, 3, 0.35) 100%),
    url("assets/posters/ohm-pale-ale-poster.png") center top / cover no-repeat;
  opacity: 0.48;
}

.hero-bottle-stage {
  position: relative;
  min-height: 720px;
  border-radius: 36px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(240, 78, 35, 0.2), rgba(10, 2, 3, 0.08)),
    rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-bottle-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/posters/hooke-wheat-poster.png") center / cover no-repeat;
  opacity: 0.16;
  transform: scale(1.12);
}

.hero-bottle-stage img {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(66%, 380px);
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
}

.chip-row,
.descriptor-row,
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip,
.descriptor,
.stat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.descriptor {
  font-size: 1.25rem;
}

.stat {
  min-width: 104px;
  font-size: 1.15rem;
  color: var(--text);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--red);
  color: var(--text);
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.08);
}

.grid-two,
.grid-three,
.grid-four {
  display: grid;
  gap: 22px;
}

.grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.panel.pad {
  padding: 28px;
}

.metric-card h3,
.content-card h3,
.faq-card h3,
.legal-card h3,
.product-story h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.metric-card p,
.content-card p,
.faq-card p,
.legal-card p,
.product-story p,
.product-story li,
.empty-state p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.4;
}

.metric-value {
  margin: 0 0 10px;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 32px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--poster) center / cover no-repeat;
  opacity: 0.18;
  transition: transform 280ms ease, opacity 280ms ease;
}

.product-card:hover::before {
  transform: scale(1.05);
  opacity: 0.28;
}

.product-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: inherit;
  padding: 22px;
}

.product-card img {
  width: 58%;
  max-height: 360px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.4));
}

.product-card .product-name {
  margin: 0;
  font-size: 2.1rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.product-card .product-style {
  margin: 6px 0 0;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-faint);
}

.product-card .product-summary {
  margin: 16px 0 0;
  min-height: 68px;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--text-muted);
}

.accent {
  color: var(--accent, var(--orange));
}

.accent-border {
  border-color: color-mix(in srgb, var(--accent, var(--orange)) 45%, transparent);
}

.poster-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  min-height: 420px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(10, 2, 3, 0.15), rgba(10, 2, 3, 0.74)),
    var(--poster) center / cover no-repeat;
}

.poster-banner .poster-content {
  padding: 28px;
}

.split-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.quote-block {
  display: grid;
  gap: 24px;
  align-content: space-between;
}

.quote-line {
  font-family: "Caesar Dressing", cursive;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  color: var(--orange);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.timeline-label {
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.product-hero {
  min-height: 100vh;
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 2, 3, 0.92), rgba(10, 2, 3, 0.66)),
    var(--poster) center / cover no-repeat;
  opacity: 0.48;
}

.product-detail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.product-visual {
  position: relative;
  min-height: 760px;
  border-radius: 36px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--poster) center / cover no-repeat;
  opacity: 0.24;
  transform: scale(1.08);
}

.product-visual img {
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: min(60%, 330px);
  filter: drop-shadow(0 34px 64px rgba(0, 0, 0, 0.45));
  z-index: 1;
}

.product-story {
  display: grid;
  gap: 20px;
}

.product-story ul {
  margin: 0;
  padding-left: 20px;
}

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

.map-frame,
.form-card,
.empty-state {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 460px;
  border: 0;
}

.form-card {
  padding: 28px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 10px;
}

.field label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-faint);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 14px 16px;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.helper {
  font-size: 1rem;
  color: var(--text-faint);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  list-style: none;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.4;
}

.empty-state {
  display: grid;
  gap: 14px;
  padding: 34px;
}

.empty-state strong {
  font-size: 2rem;
  text-transform: uppercase;
}

.footer {
  padding: 44px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.24);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand img {
  width: 140px;
}

.footer-note {
  max-width: 520px;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--text);
}

.legal-copy {
  display: grid;
  gap: 18px;
}

.notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

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

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .header-inner,
  .footer-inner,
  .hero-grid,
  .split-showcase,
  .product-detail-grid,
  .content-grid,
  .grid-three,
  .grid-four,
  .grid-two,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .header-inner {
    padding: 12px 0;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-bottle-stage,
  .product-visual {
    min-height: 560px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  .header-inner,
  .footer-inner,
  .section-inner {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .brand-lockup img {
    width: 108px;
  }

  .site-nav a {
    padding: 8px 12px;
    font-size: 1rem;
  }

  .hero-bottle-stage,
  .product-visual {
    min-height: 460px;
  }

  .product-card {
    min-height: 500px;
  }

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

  .descriptor,
  .stat,
  .chip {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
