/* ============================================================
   LAYOUT — sections, grids, responsive
   ============================================================ */

/* --- Sticky header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  background: rgba(46, 31, 15, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(243, 234, 214, 0.1);
}
.site-header-logo img {
  width: clamp(100px, 12vw, 150px);
  filter: brightness(0) invert(1);
  opacity: 0.9;
  display: block;
}
.site-header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header-nav a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 234, 214, 0.88);
  transition: color 0.3s ease;
}
.site-header-nav a:hover { color: var(--accent-green); }
.nav-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* --- Numbers strip --- */
.numbers-strip {
  background: var(--accent-warm);
  padding: 28px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.number-item {
  text-align: center;
  color: var(--warm-white);
}
.number-item .num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  display: block;
}
.number-item .num-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  opacity: 0.85;
  display: block;
  margin-top: 4px;
  text-transform: uppercase;
}
.number-item .num-context {
  font-family: var(--font-body);
  font-size: 11px;
  opacity: 0.6;
  display: block;
  margin-top: 6px;
  letter-spacing: 0.02em;
  font-weight: 300;
}
.numbers-divider {
  width: 1px;
  height: 40px;
  background: rgba(243, 234, 214, 0.35);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px;
  position: relative;
  z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  width: 80px;
  background: var(--bg-dark);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 3;
}
.hero-right {
  position: relative;
  overflow: hidden;
}

/* Hero text */
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent-green);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-title {
  margin-bottom: 8px;
}
.hero-logo {
  width: clamp(200px, 30vw, 360px);
  filter: brightness(0) invert(1);
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 300;
  color: var(--hazelnut);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.hero-desc {
  font-size: 14px;
  line-height: 2.1;
  color: rgba(243, 234, 214, 0.72);
  max-width: 380px;
  margin-bottom: 52px;
  font-weight: 300;
}
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Concept section --- */
.concept {
  padding: 40px 80px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--bg-dark);
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}
.concept-body {
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-sub);
  font-weight: 300;
}
.concept .section-label { color: var(--accent-green); }
.concept .section-label::before { background: var(--accent-green); }
.concept .section-heading { color: var(--text-on-dark); }
.concept .concept-body { color: rgba(243, 234, 214, 0.72); }

/* --- Menu section --- */
.menu-section {
  padding: 120px 80px;
  background: var(--bg-primary);
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}
.menu-header {
  text-align: center;
  margin-bottom: 56px;
}
.menu-header .section-label {
  justify-content: center;
}
.menu-header .section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent-main);
}
/* --- Nut select banner (menu → concept bridge) --- */
.nut-select-banner {
  padding: 72px 40px 48px;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
}
.nut-select-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--text-on-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}
.nut-select-sub {
  font-size: 14px;
  color: rgba(243, 234, 214, 0.65);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 36px;
}
.nut-select-arrow {
  width: 1px;
  height: 48px;
  background: rgba(243, 234, 214, 0.3);
  margin: 0 auto;
  position: relative;
}
.nut-select-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid rgba(243, 234, 214, 0.5);
}

/* --- EC section --- */
.ec-section {
  background: var(--bg-primary);
  padding: 64px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}
.ec-section .section-label { color: var(--accent-warm); }
.ec-section .section-label::before { background: var(--accent-warm); }
.ec-section .section-heading { color: var(--text-primary); }
.ec-section .concept-body { color: var(--text-sub); }

.ec-step-label {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 16px;
}
.ec-step-label .section-label {
  justify-content: center;
}
.ec-step-label .section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent-main);
}
.ec-left  { display: flex; flex-direction: column; }
.ec-right { display: grid; grid-template-columns: 1fr; gap: 16px; }

.jar-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin-top: 24px;
}

/* --- Location section --- */
.location-section {
  padding: 120px 80px;
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* --- CTA section --- */
.cta-section {
  background: var(--accent-main);
  padding: 100px 80px;
  text-align: center;
}
.cta-section .section-heading {
  color: var(--warm-white);
  margin-bottom: 20px;
}
.cta-section p {
  color: rgba(250, 245, 236, 0.88);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 48px;
  font-weight: 300;
}

/* --- Step 3 section --- */
.step3-section {
  background: var(--bg-primary);
  padding: 100px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.step3-inner { max-width: 800px; width: 100%; }
.step3-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--text-primary);
  margin: 20px 0 16px;
}
.step3-body {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 56px;
}
.step3-cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.step3-card {
  flex: 1;
  max-width: 300px;
  padding: 40px 32px;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
}
.step3-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 12px;
}
.step3-card-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 24px;
}
.step3-divider {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--text-muted);
  padding: 0 32px;
}

/* --- Footer --- */
footer {
  background: var(--bg-dark);
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
/* Footer logo — slightly larger than hero overlay */
.footer-logo img {
  width: clamp(100px, 10vw, 140px);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(243, 234, 214, 0.72);
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--accent-green); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(243, 234, 214, 0.3);
  letter-spacing: 0.1em;
}
.footer-allergy {
  width: 100%;
  font-size: 11px;
  color: rgba(243, 234, 214, 0.35);
  line-height: 1.8;
  border-top: 1px solid rgba(243, 234, 214, 0.1);
  padding-top: 20px;
  margin-top: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .site-header { padding: 12px 20px; }
  .site-header-nav { gap: 20px; }
  .site-header-nav a { font-size: 10px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 100px 32px 60px; }
  .hero-left::after { display: none; }
  .hero-right { height: 360px; }
  .hero-slideshow .slide-logo { width: clamp(80px, 22vw, 120px); }

  .numbers-strip { padding: 28px 32px; gap: 24px; }
  .numbers-divider { display: none; }

  .concept,
  .ec-section,
  .location-section { grid-template-columns: 1fr; padding: 80px 32px; gap: 48px; }
  .menu-section { padding: 80px 32px; }
  .cta-section  { padding: 80px 32px; }
  footer { padding: 40px 32px; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .nut-cell-overlay { min-height: unset; padding: 6px 8px; }
  .step3-section { padding: 80px 32px; }
  .step3-cta-group { flex-direction: column; gap: 16px; }
  .step3-divider { padding: 8px 0; }
  .step3-card { max-width: 100%; width: 100%; }
}
