:root {
  color-scheme: light;
  --ink: #0d0d0c;
  --smoke: #151513;
  --ash: #1f1f1d;
  --gunmetal: #2a2a26;
  --gold: #f2b04f;
  --amber: #f07d22;
  --ember: #d04422;
  --foam: #f7f2e8;
  --cloud: #efe7d6;
  --stone: #bfb7a6;
  --mint: #48d58b;
  --shadow: 0 22px 44px rgba(8, 8, 8, 0.45);
  --soft-shadow: 0 12px 30px rgba(6, 6, 6, 0.35);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, rgba(242, 176, 79, 0.2), transparent 45%),
    radial-gradient(circle at 20% 20%, rgba(240, 125, 34, 0.25), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(208, 68, 34, 0.25), transparent 45%),
    #0b0b0a;
  color: #f6f1e7;
  line-height: 1.5;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: rgba(246, 241, 231, 0.7);
  font-weight: 600;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.05rem;
  color: rgba(246, 241, 231, 0.75);
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(8, 8, 8, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 10px 18px rgba(240, 125, 34, 0.35));
}

.brand-mark svg {
  width: 42px;
  height: 42px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: rgba(246, 241, 231, 0.8);
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #2d1a0a;
  box-shadow: 0 12px 26px rgba(242, 176, 79, 0.4);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f7f2e8;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.hero {
  padding: 96px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero p {
  color: rgba(246, 241, 231, 0.78);
  font-size: 1.05rem;
}

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

.hero-badges {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.hero-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(15, 15, 14, 0.95));
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card img {
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.section-subtitle {
  color: rgba(246, 241, 231, 0.7);
  max-width: 640px;
}

.features-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.feature-card {
  background: rgba(18, 18, 16, 0.9);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--soft-shadow);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: rgba(246, 241, 231, 0.65);
  font-size: 0.95rem;
}

.screens {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.screen-card {
  background: #0f0f0e;
  border-radius: 28px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.screen-card img {
  border-radius: 18px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.stat-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(72, 213, 139, 0.2), rgba(8, 8, 8, 0.8));
  border: 1px solid rgba(72, 213, 139, 0.3);
}

.stat-card h4 {
  font-size: 1.8rem;
  margin-bottom: 6px;
  color: var(--mint);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.story-step {
  padding: 22px;
  background: rgba(12, 12, 12, 0.88);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.story-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  margin-bottom: 14px;
  background: rgba(240, 125, 34, 0.2);
  color: var(--gold);
  font-weight: 700;
}

.locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.location-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta {
  padding: 72px 0;
}

.cta-box {
  background: linear-gradient(135deg, rgba(242, 176, 79, 0.2), rgba(20, 20, 18, 0.95));
  border-radius: 30px;
  padding: 42px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.breweries-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.brewery-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--soft-shadow);
}

.brewery-card h3 {
  margin-bottom: 10px;
}

.brewery-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.brewery-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  background: #fff;
  padding: 6px;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.store-link {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact {
  padding: 72px 0;
}

.contact-card {
  background: #f7f2e8;
  color: #1a1208;
  padding: 40px;
  border-radius: 28px;
  border: 1px solid rgba(26, 18, 8, 0.12);
  box-shadow: 0 24px 48px rgba(8, 8, 8, 0.25);
}

.contact-card p {
  color: rgba(26, 18, 8, 0.7);
}

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

.rotating-text {
  display: block;
  transition: opacity 0.35s ease;
}

.rotating-text.is-fading {
  opacity: 0;
}

.footer {
  padding: 40px 0 60px;
  color: rgba(246, 241, 231, 0.6);
  font-size: 14px;
}

.schedule-hero {
  padding: 90px 0 80px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: start;
}

.schedule-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.schedule-embed {
  background: rgba(16, 16, 14, 0.9);
  border-radius: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.schedule-embed iframe {
  width: 100%;
  min-height: 620px;
  border: none;
  border-radius: 18px;
  background: #fff;
}

.schedule-fallback {
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(246, 241, 231, 0.7);
}

.schedule-fallback a {
  text-decoration: underline;
}

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

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 72px 0 60px;
  }

  .nav-cta {
    display: none;
  }

  .cta-box {
    padding: 30px;
  }
}
