/* Saturdays — Redesigned label-style aesthetic */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

:root {
  --paper: #f3efe6;
  --paper-2: #efe8d8;
  --ink: #111111;
  --ink-2: #1a1a1a;
  --muted: rgba(17, 17, 17, 0.62);
  --line: rgba(17, 17, 17, 0.14);
  --shadow: 0 18px 40px rgba(17, 17, 17, 0.18);

  --amber: #c79a4b;
  --glass: #7c3f1b;
  --cap: #c7a04b;

  --radius: 18px;
}

body {
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Page reveal */
.main-content {
  min-height: 100vh;
  opacity: 0;
  animation: fade-in 650ms ease-out 200ms forwards;
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(243, 239, 230, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--paper);
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
}

.logo-mark::after {
  content: "S";
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1;
}

.logo-text {
  letter-spacing: 0.08em;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: transform 140ms ease, background 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: rgba(17, 17, 17, 0.04);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--ink);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--ink-2);
}

.button-ghost {
  border-color: rgba(17, 17, 17, 0.42);
}

.button-minimal {
  border: none;
  background: transparent;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.button-minimal:hover {
  background: rgba(17, 17, 17, 0.06);
  transform: none;
}

/* Full-Width Hero */
.hero-full {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 24px;
  position: relative;
}

.hero-bottle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottle-mock {
  position: relative;
  width: min(240px, 35vw);
  height: 520px;
}



.bottle-neck {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 66px;
  height: 130px;
  transform: translateX(-50%);
  border-radius: 34px 34px 14px 14px;
  background: linear-gradient(180deg, 
    rgba(124, 63, 27, 0.85) 0%, 
    rgba(95, 46, 21, 0.90) 40%,
    rgba(70, 34, 16, 0.93) 100%);
  border: 1px solid rgba(17, 17, 17, 0.25);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 2;
}


.bottle-body {
  position: absolute;
  top: 168px;
  left: 50%;
  transform: translateX(-50%);
  width: 185px;
  height: 340px;
  border-radius: 75px 75px 32px 32px;
  background: linear-gradient(180deg, 
    rgba(124, 63, 27, 0.85) 0%, 
    rgba(100, 48, 22, 0.87) 25%,
    rgba(80, 39, 18, 0.90) 50%,
    rgba(65, 32, 15, 0.92) 75%,
    rgba(55, 26, 12, 0.94) 100%);
  border: 1px solid rgba(17, 17, 17, 0.25);
  box-shadow: var(--shadow), inset 0 2px 8px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 1;
}

.bottle-glass-highlight {
  position: absolute;
  left: 15%;
  top: 10%;
  width: 35%;
  height: 60%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.25) 0%, 
    rgba(255, 255, 255, 0.08) 50%,
    transparent 100%);
  border-radius: 0 50% 50% 0;
  pointer-events: none;
  z-index: 1;
}

.bottle-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.12)),
              radial-gradient(120px 240px at 28% 35%, rgba(255, 255, 255, 0.12), transparent 60%),
              radial-gradient(140px 260px at 70% 50%, rgba(0, 0, 0, 0.10), transparent 62%);
  opacity: 0.75;
  pointer-events: none;
}

.bottle-body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px 120px at 50% 0%, rgba(255, 255, 255, 0.12), transparent 70%),
              radial-gradient(180px 120px at 50% 100%, rgba(0, 0, 0, 0.18), transparent 75%);
  opacity: 0.7;
  pointer-events: none;
}

.bottle-label {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 100px;
  bottom: 28px;
  background: #f3efe6;
  border: 1.5px solid rgba(17, 17, 17, 0.25);
  border-radius: 12px;
  padding: 16px 14px 12px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  box-shadow: 0 8px 16px rgba(17, 17, 17, 0.12), 0 2px 4px rgba(17, 17, 17, 0.08);
  z-index: 2;
}

.bottle-label-title {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.label-figure {
  width: 100%;
  height: 100%;
  max-height: 180px;
  justify-self: center;
}

.bottle-label-bottom {
  display: grid;
  gap: 5px;
  text-align: center;
}

.bottle-label-sub {
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.bottle-label-meta {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.75rem;
}

.bottle-shadow {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 190px;
  height: 24px;
  transform: translateX(-50%);
  background: rgba(17, 17, 17, 0.25);
  filter: blur(16px);
  border-radius: 999px;
  z-index: 0;
}

.hero-content {
  display: grid;
  gap: 32px;
  align-content: center;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-brand .logo-mark {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.hero-title {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
}

.hero-subtitle {
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: rgba(17, 17, 17, 0.72);
}

.hero-slogans {
  display: grid;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.slogan-large {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(17, 17, 17, 0.72);
}

.hero-specs .dot {
  opacity: 0.5;
  font-size: 0.6rem;
}

/* Slogan Banner */
.slogan-banner {
  background: var(--ink);
  color: var(--paper);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.slogan-marquee {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.slogan-marquee span {
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--paper);
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Sections */
.section-beer,
.section-editorial,
.section-find {
  padding: 80px 0;
}

.section-title-large {
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(17, 17, 17, 0.72);
  max-width: 60ch;
  line-height: 1.6;
}

.beer-intro {
  text-align: center;
  margin-bottom: 60px;
}

.beer-details {
  max-width: 700px;
  margin: 0 auto;
}

.beer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  padding: 32px;
}

.beer-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.beer-card-header h3 {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.8rem;
}

.beer-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.8);
  margin-bottom: 24px;
}

.beer-notes {
  display: grid;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.note-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: start;
}

.note-label {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.note-value {
  color: rgba(17, 17, 17, 0.72);
  font-size: 1rem;
}

/* Editorial Section */
.section-editorial {
  background: rgba(255, 255, 255, 0.4);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.editorial-title {
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  line-height: 1.1;
}

.editorial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.8);
  margin-bottom: 20px;
}

.editorial-text strong {
  font-weight: 900;
  color: var(--ink);
}

.editorial-specs {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.spec {
  display: grid;
  gap: 4px;
}

.spec-value {
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.spec-label {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(17, 17, 17, 0.62);
}

.poster-card {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}

.poster-title {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.poster-sub {
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: rgba(17, 17, 17, 0.72);
  margin-bottom: 20px;
}

.poster-line {
  width: 60px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto 24px;
}

.poster-slogan {
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

/* Gallery */
.section-gallery {
  padding: 0;
}

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

.gallery-item {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, var(--glass) 0%, var(--amber) 100%);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item-1 {
  background: linear-gradient(135deg, #2a1810 0%, #8b4513 50%, #d4a574 100%);
}

.gallery-item-2 {
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 50%, #8b4513 100%);
}

.gallery-item-3 {
  background: linear-gradient(135deg, #8b4513 0%, #f4c430 50%, #ffd700 100%);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-slogan {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 20px;
}

/* Find Section */
.section-find {
  text-align: center;
  border-top: 1px solid var(--line);
}

.find-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid var(--line);
  padding: 60px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  margin-bottom: 40px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.footer-slogan {
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(17, 17, 17, 0.8);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: rgba(17, 17, 17, 0.72);
  transition: color 160ms ease;
}

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

.footer-legal {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(17, 17, 17, 0.62);
}

.footer-legal p {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-full {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 24px;
  }

  .hero-bottle-wrapper {
    order: -1;
  }

  .bottle-mock {
    width: min(200px, 45vw);
    height: 440px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .gallery-item {
    height: 300px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .hero-slogans {
    gap: 12px;
  }

  .slogan-large {
    font-size: 1.2rem;
  }

  .beer-card {
    padding: 24px;
  }

  .editorial-specs {
    flex-direction: column;
    gap: 20px;
  }
}

