/* ================================================
   BREWLAB — MAIN STYLESHEET
   Mobile-first. Modern. Premium.
   ================================================ */

/* ─── FONTS ──────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

/* ─── TOKENS ─────────────────────────────────── */
:root {
  --espresso:     #2C1A0E;
  --espresso-mid: #3D2314;
  --black:        #0F0D0C;
  --beige:        #F2E8D9;
  --beige-light:  #FAF6EF;
  --beige-dark:   #E4D5BF;
  --green:        #4A6B3A;
  --green-light:  #698F57;
  --green-muted:  #D4E4CB;
  --cream:        #FEFAF4;
  --text-dark:    #1A1209;
  --text-mid:     #5C4A35;
  --text-muted:   #8C7A65;
  --white:        #FFFFFF;

  --font-body:    'Inter', system-ui, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;

  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    28px;
  --radius-xl:    48px;

  --shadow-sm:    0 2px 12px rgba(44,26,14,.08);
  --shadow-md:    0 8px 32px rgba(44,26,14,.12);
  --shadow-lg:    0 24px 64px rgba(44,26,14,.18);

  --transition:   0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET & BASE ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--black);
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────── */
.display-xl {
  font-size: clamp(2.8rem, 12vw, 9rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -0.03em;
}

.display-lg {
  font-size: clamp(2.2rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
}

.display-md {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.heading-md {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
}

.heading-sm {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.body-lg {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  font-weight: 400;
}

.body-md {
  font-size: 1rem;
  line-height: 1.65;
}

.caption {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* ─── UTILITIES ──────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 80px 0;
}

.section-pad-lg {
  padding: 120px 0;
}

.text-espresso  { color: var(--espresso); }
.text-green     { color: var(--green); }
.text-beige     { color: var(--beige); }
.text-muted     { color: var(--text-muted); }
.text-cream     { color: var(--cream); }
.text-white     { color: var(--white); }

.bg-espresso    { background: var(--espresso); }
.bg-black       { background: var(--black); }
.bg-beige       { background: var(--beige); }
.bg-beige-light { background: var(--beige-light); }
.bg-cream       { background: var(--cream); }
.bg-green       { background: var(--green); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pill-dark   { background: var(--espresso); color: var(--beige); }
.pill-beige  { background: var(--beige); color: var(--espresso); }
.pill-green  { background: var(--green-muted); color: var(--green); }
.pill-outline { border: 1px solid currentColor; background: transparent; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-dark {
  background: var(--espresso);
  color: var(--beige);
}
.btn-dark:hover {
  background: var(--espresso-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--beige);
  border: 1.5px solid rgba(242,232,217,.4);
}
.btn-outline-light:hover {
  background: rgba(242,232,217,.08);
  border-color: var(--beige);
}

.btn-beige {
  background: var(--beige);
  color: var(--espresso);
}
.btn-beige:hover {
  background: var(--beige-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.divider {
  width: 48px;
  height: 2px;
  background: currentColor;
  opacity: 0.3;
}

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── SCROLL ANIMATIONS ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ─── NAV ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: rgba(254,250,244,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav.scrolled {
  background: rgba(254,250,244,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(44,26,14,.08);
  box-shadow: var(--shadow-sm);
}

.nav.dark-nav {
  background: rgba(10,7,5,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav.dark-nav.scrolled {
  background: rgba(15,13,12,.92);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-mark {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--espresso);
}

.dark-nav .nav-logo-mark {
  color: var(--beige);
}

.nav.scrolled .nav-logo-mark {
  color: var(--espresso);
}

.dark-nav.scrolled .nav-logo-mark {
  color: var(--beige);
}

.nav-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.dark-nav .nav-logo-sub {
  color: rgba(242,232,217,.5);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 20px;
  transition: var(--transition-fast);
  color: var(--text-mid);
}

.dark-nav .nav-link {
  color: rgba(242,232,217,.75);
}

.nav-link:hover,
.nav-link.active {
  background: var(--beige);
  color: var(--espresso);
}

.dark-nav .nav-link:hover,
.dark-nav .nav-link.active {
  background: rgba(242,232,217,.12);
  color: var(--beige);
}

.nav-cta {
  display: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--espresso);
  color: var(--beige);
  margin-left: 8px;
  transition: var(--transition-fast);
}

.nav-cta:hover {
  background: var(--espresso-mid);
  transform: translateY(-1px);
}

.dark-nav .nav-cta {
  background: var(--beige);
  color: var(--espresso);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  background: transparent;
  border: none;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--espresso);
  transition: var(--transition-fast);
}

.dark-nav .nav-toggle span {
  background: var(--beige);
}

.nav.scrolled .nav-toggle span {
  background: var(--espresso);
}

.dark-nav.scrolled .nav-toggle span {
  background: var(--beige);
}

.nav-toggle span:nth-child(1) { width: 24px; }
.nav-toggle span:nth-child(2) { width: 18px; }
.nav-toggle span:nth-child(3) { width: 22px; }

.nav-toggle.open span:nth-child(1) {
  width: 22px;
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) {
  width: 22px;
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu panel */
.nav-panel {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--beige-dark);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.nav-panel.open {
  transform: translateY(0);
}

.nav-panel-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.nav-panel-link:hover,
.nav-panel-link.active {
  background: var(--beige);
  color: var(--espresso);
}

.nav-panel-link svg {
  opacity: .4;
}

.nav-panel-footer {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--beige-dark);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--beige);
  padding: 64px 20px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 48px;
}

.footer-brand-name {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--beige);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(242,232,217,.5);
  margin-top: 8px;
  font-size: 0.95rem;
}

.footer-desc {
  margin-top: 16px;
  font-size: 0.875rem;
  color: rgba(242,232,217,.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,232,217,.35);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(242,232,217,.65);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--beige);
}

.footer-email {
  font-size: 0.85rem;
  color: rgba(242,232,217,.65);
  word-break: break-all;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(242,232,217,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: rgba(242,232,217,.55);
  font-size: 0.8rem;
  font-weight: 700;
}

.social-icon:hover {
  border-color: rgba(242,232,217,.35);
  color: var(--beige);
  background: rgba(242,232,217,.06);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(242,232,217,.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.footer-bottom-text {
  font-size: 0.75rem;
  color: rgba(242,232,217,.3);
}

.footer-method-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  opacity: .6;
}


/* ────────────────────────────────────────────────
   HOME PAGE
   ──────────────────────────────────────────────── */

/* Hero */
.hero {
  min-height: 100svh;
  background: var(--espresso);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg-img.loaded {
  transform: scale(1);
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--espresso) 0%,
    rgba(44,26,14,.7) 50%,
    rgba(44,26,14,.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-headline {
  font-size: clamp(3rem, 13vw, 10rem);
  font-weight: 900;
  font-style: normal;
  line-height: .9;
  letter-spacing: -0.04em;
  color: var(--beige);
  margin-bottom: 32px;
}

.hero-headline em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: rgba(242,232,217,.55);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(242,232,217,.65);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(242,232,217,.35);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(242,232,217,.35));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: .35; }
  50% { transform: scaleY(.6); opacity: .15; }
}

.hero-scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* Intro strip */
.intro-strip {
  background: var(--beige-light);
  padding: 40px 20px;
  border-bottom: 1px solid var(--beige-dark);
}

.intro-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-strip-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.intro-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--espresso);
  letter-spacing: -0.04em;
  line-height: 1;
}

.intro-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 100px;
}

/* Method Section */
.method-section {
  background: var(--cream);
  padding: 80px 20px;
}

.method-header {
  max-width: 1280px;
  margin: 0 auto 56px;
}

.method-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.method-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--espresso);
  max-width: 600px;
}

.method-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
}

.method-desc {
  margin-top: 20px;
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.7;
}

.method-stages {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.stage-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: var(--transition);
}

.stage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stage-01 { background: var(--espresso); }
.stage-02 { background: var(--black); }
.stage-03 { background: var(--green); }
.stage-04 { background: var(--beige); }

.stage-num {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  opacity: .1;
  position: absolute;
  top: 20px;
  right: 24px;
  color: currentColor;
}

.stage-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.stage-01 .stage-icon { background: rgba(242,232,217,.12); }
.stage-02 .stage-icon { background: rgba(242,232,217,.06); }
.stage-03 .stage-icon { background: rgba(255,255,255,.15); }
.stage-04 .stage-icon { background: rgba(44,26,14,.08); }

.stage-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: .7;
}

.stage-01 .stage-tag,
.stage-02 .stage-tag,
.stage-03 .stage-tag { color: var(--beige); }
.stage-04 .stage-tag { color: var(--espresso); }

.stage-name {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
}

.stage-01 .stage-name,
.stage-02 .stage-name,
.stage-03 .stage-name { color: var(--beige); }
.stage-04 .stage-name { color: var(--espresso); }

.stage-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 320px;
}

.stage-01 .stage-desc,
.stage-02 .stage-desc,
.stage-03 .stage-desc { color: rgba(242,232,217,.65); }
.stage-04 .stage-desc { color: var(--text-mid); }

.stage-bar {
  height: 3px;
  border-radius: 2px;
  margin-top: 28px;
  transition: width var(--transition);
  width: 40%;
}

.stage-card:hover .stage-bar { width: 80%; }

.stage-01 .stage-bar { background: rgba(242,232,217,.3); }
.stage-02 .stage-bar { background: rgba(74,107,58,.6); }
.stage-03 .stage-bar { background: rgba(242,232,217,.4); }
.stage-04 .stage-bar { background: rgba(44,26,14,.2); }

/* Drinks Preview */
.drinks-section {
  background: var(--beige-light);
  padding: 80px 20px;
}

.section-header {
  max-width: 1280px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.drink-cards {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.drink-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.drink-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.drink-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.drink-card:hover .drink-card-img {
  transform: scale(1.04);
}

.drink-card-body {
  padding: 20px 22px 24px;
}

.drink-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.drink-card-name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.drink-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.drink-card-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--espresso);
}

/* Atmosphere */
.atmo-section {
  padding: 80px 20px;
  background: var(--espresso);
}

.atmo-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.atmo-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
}

.atmo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: transform 0.8s ease;
}

.atmo-img-wrap:hover .atmo-img {
  transform: scale(1.04);
}

.atmo-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.atmo-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.atmo-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.atmo-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(242,232,217,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.atmo-feature-text {
  font-size: 0.9rem;
  color: rgba(242,232,217,.65);
  line-height: 1.55;
}

.atmo-feature-text strong {
  display: block;
  color: var(--beige);
  font-weight: 600;
  margin-bottom: 2px;
}

/* Location strip */
.location-strip {
  background: var(--black);
  padding: 48px 20px;
}

.location-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
}

.location-addr {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--beige);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.location-detail {
  font-size: 0.875rem;
  color: rgba(242,232,217,.45);
  line-height: 1.6;
}

/* ────────────────────────────────────────────────
   ABOUT PAGE
   ──────────────────────────────────────────────── */

.page-hero {
  min-height: 60svh;
  background: var(--espresso);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 100px 20px 52px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .15;
}

.page-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--espresso), rgba(44,26,14,.5));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
}

.page-hero-title {
  font-size: clamp(2.2rem, 9vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: .95;
  color: var(--beige);
}

.page-hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: rgba(242,232,217,.45);
}

.page-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(242,232,217,.6);
  margin-top: 20px;
  max-width: 500px;
  line-height: 1.65;
}

/* Story section */
.story-section {
  padding: 80px 20px;
  background: var(--cream);
}

.story-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.story-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.story-pull-quote {
  padding: 24px 24px 24px 20px;
  border-left: 3px solid var(--espresso);
  font-size: 1.15rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--espresso);
  line-height: 1.6;
  background: var(--beige-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.story-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* Values */
.values-section {
  background: var(--beige-light);
  padding: 80px 20px;
}

.values-grid {
  max-width: 1280px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--beige-dark);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--espresso);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.value-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 8px;
}

.value-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Method deep dive */
.method-deep {
  padding: 80px 20px;
  background: var(--espresso);
}

.method-deep-stages {
  max-width: 1280px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.method-deep-stage {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(242,232,217,.08);
  align-items: start;
}

.method-deep-stage:last-child {
  border-bottom: none;
}

.mds-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(242,232,217,.25);
  padding-top: 6px;
  text-transform: uppercase;
}

.mds-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mds-name {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--beige);
  letter-spacing: -0.03em;
}

.mds-sub {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
}

.mds-desc {
  font-size: 0.95rem;
  color: rgba(242,232,217,.55);
  line-height: 1.75;
  max-width: 560px;
}

/* ────────────────────────────────────────────────
   MENU PAGE
   ──────────────────────────────────────────────── */

.menu-page {
  background: var(--cream);
}

.menu-cats {
  position: sticky;
  top: 64px;
  z-index: 100;
  background: rgba(254,250,244,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige-dark);
}

.menu-cats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 4px;
  padding: 10px 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-cats-inner::-webkit-scrollbar { display: none; }

.menu-cat-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.menu-cat-btn:hover {
  background: var(--beige);
  color: var(--espresso);
}

.menu-cat-btn.active {
  background: var(--espresso);
  color: var(--beige);
}

.menu-section-block {
  padding: 72px 20px;
  border-bottom: 1px solid var(--beige-dark);
}

.menu-section-block:last-child {
  border-bottom: none;
}

.menu-section-header {
  max-width: 1280px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-section-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brew-color   { color: var(--espresso); }
.focus-color  { color: var(--black); }
.build-color  { color: var(--green); }
.connect-color { color: #7A5C3A; }

.menu-section-name {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.menu-section-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.65;
  margin-top: 4px;
}

.menu-items {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--beige-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--beige-dark);
}

.menu-item {
  background: var(--white);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition-fast);
}

.menu-item:hover {
  background: var(--beige-light);
}

.menu-item-left {
  flex: 1;
}

.menu-item-name {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-item-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 8px;
  display: inline-block;
}

.tag-signature { background: rgba(44,26,14,.08); color: var(--espresso); }
.tag-popular   { background: rgba(74,107,58,.1); color: var(--green); }
.tag-new       { background: rgba(120,90,50,.08); color: #7A5C3A; }

.menu-item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--espresso);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ────────────────────────────────────────────────
   EXPERIENCE PAGE
   ──────────────────────────────────────────────── */

.exp-page { background: var(--cream); }

.exp-showcase {
  padding: 80px 20px;
  background: var(--cream);
}

.exp-showcase-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

.exp-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 280px;
}

.exp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.exp-card:hover .exp-card-img {
  transform: scale(1.04);
}

.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,12,.75), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.exp-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,232,217,.6);
  margin-bottom: 6px;
}

.exp-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--beige);
  letter-spacing: -0.015em;
}

/* Amenities */
.amenities-section {
  padding: 80px 20px;
  background: var(--beige-light);
}

.amenities-grid {
  max-width: 1280px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.amenity-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--beige-dark);
  transition: var(--transition);
}

.amenity-card:hover {
  border-color: var(--espresso);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.amenity-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.amenity-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.amenity-detail {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Hours blocks */
.hours-section {
  padding: 80px 20px;
  background: var(--espresso);
}

.hours-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.hours-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.hours-card {
  background: rgba(242,232,217,.05);
  border: 1px solid rgba(242,232,217,.08);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hours-day {
  font-size: 1rem;
  font-weight: 600;
  color: var(--beige);
}

.hours-time {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(242,232,217,.55);
}

.hours-time.today {
  color: var(--green-light);
  font-weight: 700;
}

/* Why section */
.why-section {
  padding: 80px 20px;
  background: var(--cream);
}

.why-list {
  max-width: 1280px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--beige-dark);
  align-items: flex-start;
}

.why-item:last-child { border-bottom: none; }

.why-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding-top: 4px;
  min-width: 32px;
}

.why-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.why-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ────────────────────────────────────────────────
   VISIT PAGE
   ──────────────────────────────────────────────── */

.visit-page { background: var(--cream); }

.visit-top {
  padding: 80px 20px;
  background: var(--cream);
}

.visit-top-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.visit-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 48px;
}

.visit-info-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.visit-info-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

.visit-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.visit-info-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.visit-email-link {
  color: var(--espresso);
  font-weight: 600;
  border-bottom: 1px solid rgba(44,26,14,.2);
  transition: border-color var(--transition-fast);
}

.visit-email-link:hover {
  border-color: var(--espresso);
}

/* Map */
.map-section {
  padding: 0;
  height: 400px;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-overlay-card {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
}

.map-overlay-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.map-overlay-addr {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.map-overlay-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  margin-right: 6px;
  animation: pulse 2s infinite;
}

/* Getting here */
.getting-here {
  padding: 80px 20px;
  background: var(--beige-light);
}

.getting-cards {
  max-width: 1280px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.getting-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--beige-dark);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.getting-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.getting-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.getting-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Social */
.social-section {
  padding: 64px 20px;
  background: var(--espresso);
  text-align: center;
}

.social-section .section-title {
  color: var(--beige);
  margin-bottom: 8px;
}

.social-section .section-sub {
  color: rgba(242,232,217, .5);
  font-size: .9rem;
  margin-bottom: 32px;
}

.social-handles {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-handle-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(242,232,217,.06);
  border: 1px solid rgba(242,232,217,.1);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  color: var(--beige);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.social-handle-card:hover {
  background: rgba(242,232,217,.1);
  border-color: rgba(242,232,217,.25);
}

.social-handle-platform {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,232,217,.4);
}


/* ────────────────────────────────────────────────
   RESPONSIVE — TABLET 768px
   ──────────────────────────────────────────────── */
@media (min-width: 768px) {
  .container { padding: 0 40px; }

  /* Nav */
  .nav { padding: 0 40px; }
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr 1fr; }

  /* Home */
  .intro-strip-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .method-stages {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .drink-cards { grid-template-columns: 1fr 1fr; }

  .atmo-inner { flex-direction: row; align-items: center; }
  .atmo-img-wrap { flex: 0 0 45%; height: 360px; }
  .atmo-content { flex: 1; }

  /* About */
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-img { height: 100%; min-height: 400px; }

  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Menu */
  .menu-items { grid-template-columns: 1fr 1fr; }

  /* Experience */
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  .hours-grid { grid-template-columns: 1fr 1fr; }
  .getting-cards { grid-template-columns: 1fr 1fr; }

  /* Visit */
  .visit-info-grid { grid-template-columns: 1fr 1fr; }
  .map-section { height: 480px; }
}

/* ────────────────────────────────────────────────
   RESPONSIVE — DESKTOP 1024px
   ──────────────────────────────────────────────── */
@media (min-width: 1024px) {
  .section-pad { padding: 120px 0; }
  .section-pad-lg { padding: 160px 0; }

  /* Nav */
  .nav { padding: 0 60px; }

  /* Hero */
  .hero { padding: 120px 60px 80px; }
  .hero-sub { max-width: 540px; }

  /* Method */
  .method-section { padding: 120px 60px; }
  .method-stages { grid-template-columns: repeat(4, 1fr); }

  /* Drinks */
  .drinks-section { padding: 120px 60px; }
  .drink-cards { grid-template-columns: repeat(3, 1fr); }

  /* Atmo */
  .atmo-section { padding: 120px 60px; }
  .atmo-img-wrap { height: 460px; }

  /* Story */
  .story-section { padding: 120px 60px; }
  .story-grid { grid-template-columns: 5fr 4fr; gap: 80px; }

  /* Method deep */
  .method-deep { padding: 120px 60px; }
  .method-deep-stage { grid-template-columns: 120px 1fr; gap: 32px; }

  /* Menu */
  .menu-section-block { padding: 80px 60px; }
  .menu-items { grid-template-columns: 1fr 1fr; }

  /* Exp */
  .exp-grid { grid-template-columns: repeat(3, 1fr); }
  .exp-card { height: 360px; }
  .why-section { padding: 120px 60px; }
  .getting-cards { grid-template-columns: repeat(3, 1fr); }

  /* Visit */
  .visit-top { padding: 120px 60px; }
  .visit-info-grid { grid-template-columns: repeat(3, 1fr); }
  .map-section { height: 560px; }
  .getting-here { padding: 80px 60px; }

  /* Footer */
  .footer { padding: 80px 60px 40px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .footer-bottom .footer-bottom-text { margin: 0; }

  /* Values */
  .values-section { padding: 120px 60px; }
  .values-grid { grid-template-columns: repeat(4, 1fr); }

  /* Hours */
  .hours-section { padding: 120px 60px; }
  .hours-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ────────────────────────────────────────────────
   ACTIVE NAV STATE
   ──────────────────────────────────────────────── */
.nav-link[href="index.html"].home-active,
.nav-link[href="about.html"].about-active,
.nav-link[href="menu.html"].menu-active,
.nav-link[href="experience.html"].exp-active,
.nav-link[href="visit.html"].visit-active {
  background: var(--beige);
  color: var(--espresso);
}

/* ─── MISC ───────────────────────────────────── */
::selection {
  background: var(--espresso);
  color: var(--beige);
}

:focus-visible {
  outline: 2px solid var(--espresso);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--beige-light); }
::-webkit-scrollbar-thumb { background: var(--beige-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
