@font-face {
  font-family: 'Gloock';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('fonts/gloock-v8-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('fonts/space-mono-v17-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url('fonts/space-mono-v17-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Space Mono';
  font-style: italic;
  font-weight: 400;
  font-display: optional;
  src: url('fonts/space-mono-v17-latin-italic.woff2') format('woff2');
}
/* ==========================================================================
   Design System & Base Styles
   ========================================================================== */

:root {
  --bg-cream: #F5F0E8;
  --accent-lime: #A8D832;
  --dark-forest: #1A3A1A;
  --text-dark: #111111;
  --text-light: #FFFFFF;
  --font-heading: 'Gloock', Georgia, serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
  --nav-height: 60px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: var(--font-mono);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* font-family redundant on p/label/span since html already sets it;
   kept only for input/select/button which browsers override by default */
input, select, button {
  font-family: var(--font-mono);
}

.italic-green {
  font-style: italic;
  color: var(--accent-lime);
}

.italic-only {
  font-style: italic;
}

.chapter-tag {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.body-mono {
  font-size: 1.1rem;
  line-height: 1.6;
}

.text-white  { color: var(--text-light); }
.text-lime   { color: var(--accent-lime); }
.text-dark   { color: var(--text-dark); }
.text-right  { text-align: right; }
.title-black { color: var(--text-dark); }

.container-bleed {
  padding-inline: 3rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background-color 0.3s cubic-bezier(0.19, 1, 0.22, 1),
              color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  padding: 1.25rem 2rem;
  border-radius: 0;
}

.btn-sm   { padding: 0.75rem 1.25rem; font-size: 0.75rem; }
.btn-large { padding: 1.5rem 2.5rem; font-size: 1rem; }
.full-width { width: 100%; }

.btn-black { background-color: var(--text-dark); color: var(--text-light); }
.btn-black:hover { background-color: var(--accent-lime); color: var(--text-dark); }

.btn-lime { background-color: var(--accent-lime); color: var(--text-dark); }
.btn-lime:hover { background-color: var(--text-dark); color: var(--text-light); }

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: var(--bg-cream);
  z-index: 1000;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
  font-weight: 700;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

/* removed unused .brand-emoji rule */

.nav-links {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  position: relative;
  padding-block-end: 0.25rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--text-dark);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active-nav::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger-bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  background-image: url('assets/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(17,17,17,0.25) 0%, rgba(17,17,17,0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 2rem;
}

.hero-headline {
  font-size: 5rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
  line-height: 1.1;
}

.hero-subtext {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  color: rgba(255,255,255,0.95);
  font-weight: 400;
  display: block;
  margin-top: 1rem;
  letter-spacing: -0.01em;
}

/* Proof Bar */
.proof-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 2.5rem auto;
  max-width: 900px;
  padding: 0.75rem 1.5rem;
  background-color: rgba(26,58,26,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.proof-point {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.proof-point .checkmark {
  color: var(--accent-lime);
}

.proof-separator {
  width: 1px;
  height: 14px;
  background-color: rgba(255,255,255,0.2);
}

/* Auto-Rotating Text Module */
.rotating-text-module {
  height: 60px;
  position: relative;
  margin: 2.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rotating-slide {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
  transform: translateY(10px);
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.rotating-slide div {
  font-size: 1.1rem;
  color: var(--accent-lime);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rotating-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* CTA & Microcopy */
.hero-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-btn {
  box-shadow: 0 4px 20px rgba(168,216,50,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168,216,50,0.45);
}

.hero-microcopy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.60);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* ==========================================================================
   Ticker Section
   ========================================================================== */

.ticker-wrapper {
  background-color: var(--accent-lime);
  border-top: 2px solid var(--text-dark);
  border-bottom: 2px solid var(--text-dark);
  overflow: hidden;
  position: relative;
  z-index: 10;
  padding: 1rem 0;
}

.ticker {
  display: flex;
  width: 100%;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
  will-change: transform;
}

.ticker-track span {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  word-spacing: 0.75rem;
  padding-right: 2rem;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* ==========================================================================
   Layout: Dual Panels
   ========================================================================== */

.section-split {
  display: flex;
  width: 100%;
  min-height: 80vh;
}

.panel {
  flex: 1;
  padding: 6rem 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-lime   { background-color: var(--accent-lime); color: var(--text-dark); }
.panel-forest { background-color: var(--dark-forest); color: var(--text-light); }

.panel-content { max-width: 540px; }

.panel-content.flex-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.panel-pagination {
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 4rem;
}

.location-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-lime);
  letter-spacing: 0.05em;
  margin-top: 2.5rem;
}

.section-title {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  overflow-wrap: break-word;
}

/* ==========================================================================
   Product Grid: Lineup
   ========================================================================== */

.lineup-section {
  padding: 6rem 0 0;
  background-color: var(--bg-cream);
  border-bottom: 2px solid var(--text-dark);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 4rem;
}

.header-left  { flex: 1.2; }
.header-right { flex: 0.8; max-width: 450px; }

.grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.lineup-grid { border-top: 2px solid var(--text-dark); }

.product-card {
  border-right: 2px solid var(--text-dark);
  display: flex;
  flex-direction: column;
}

.product-card:last-child { border-right: none; }

.card-img-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-bottom: 2px solid var(--text-dark);
  background-color: var(--text-dark);
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.card-info {
  padding: 3rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-cream  { background-color: var(--bg-cream); color: var(--text-dark); }
.card-lime   { background-color: var(--accent-lime); color: var(--text-dark); }
.card-forest { background-color: var(--dark-forest); color: var(--text-light); }

.card-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  margin-bottom: 1.5rem;
}

.badge-dark { background-color: var(--text-dark); color: var(--bg-cream); }
.badge-lime { background-color: var(--accent-lime); color: var(--text-dark); }

.product-name  { font-size: 2.8rem; margin-bottom: 0.25rem; }

.product-latin {
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: rgba(17,17,17,0.6);
}

.card-forest .product-latin { color: var(--accent-lime); }

.product-desc { font-size: 0.95rem; line-height: 1.5; }

/* ==========================================================================
   Timeline Grid: The Process
   ========================================================================== */

.process-section {
  background-color: var(--dark-forest);
  padding: 6rem 0;
  border-bottom: 2px solid var(--text-dark);
}

.process-section .section-title { margin-bottom: 4rem; }

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 2rem;
}

.timeline-step {
  border-right: 1px solid rgba(255,255,255,0.2);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
}

.timeline-step:last-child { border-right: none; }

.step-meta { margin-bottom: 2.5rem; }

.step-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.step-time {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
}

.time-huge {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--text-light);
  line-height: 0.8;
}

.time-ampm {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.step-label { font-size: 1.8rem; margin-bottom: 1rem; }
.step-desc  { font-size: 0.95rem; line-height: 1.6; opacity: 0.9; }

/* ==========================================================================
   Stats Grid: By The Numbers
   ========================================================================== */

.stats-section {
  padding: 6rem 0 0;
  background-color: var(--bg-cream);
  border-bottom: 2px solid var(--text-dark);
}

.stats-section .section-title { margin-bottom: 4rem; }

.stats-grid { border-top: 2px solid var(--text-dark); }

.stat-card {
  padding: 4rem 3rem;
  border-right: 2px solid var(--text-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.stat-card:last-child { border-right: none; }

.stat-white  { background-color: var(--text-light); color: var(--text-dark); }
.stat-lime   { background-color: var(--accent-lime); color: var(--text-dark); }
.stat-forest { background-color: var(--dark-forest); color: var(--text-light); }

.stat-top { display: flex; flex-direction: column; }

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: rgba(17,17,17,0.6);
}

.stat-forest .stat-label { color: var(--accent-lime); }

.stat-value-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 5.625rem;
  line-height: 0.75;
}

.stat-unit {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 2.5rem;
}

/* ==========================================================================
   2x2 Feature Grid: Why It Matters
   ========================================================================== */

.features-section { border-bottom: 2px solid var(--text-dark); }

.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

.feature-cell {
  padding: 6rem 4.5rem;
  min-height: 45vh;
  display: flex;
  align-items: center;
}

.cell-forest {
  background-color: var(--dark-forest);
  border-right: 2px solid var(--text-dark);
  border-bottom: 2px solid var(--text-dark);
}

.cell-cream { background-color: var(--bg-cream); border-bottom: 2px solid var(--text-dark); }
.cell-lime  { background-color: var(--accent-lime); }

.grid-2x2 .feature-cell:nth-child(3) {
  border-right: 2px solid var(--text-dark);
  border-bottom: none;
}

.grid-2x2 .feature-cell:nth-child(4) { border-bottom: none; }

.feature-content { max-width: 520px; }

.feature-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.feature-title { font-size: 3.5rem; margin-bottom: 1.5rem; }
.feature-desc  { font-size: 1rem; line-height: 1.6; }

/* ==========================================================================
   Trade List & Order Direct
   ========================================================================== */

.action-section { border-bottom: 2px solid var(--text-dark); }
.action-section .panel { min-height: 85vh; }

.trade-form {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-row   { display: flex; gap: 2.5rem; }

.form-group {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-input {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid var(--text-dark);
  padding: 0.75rem 0;
  font-size: 1.05rem;
  color: var(--text-dark);
  outline: none;
  border-radius: 0;
}

.form-input::placeholder { color: rgba(17,17,17,0.4); }
.form-input:focus { border-bottom-color: var(--dark-forest); }

.error-msg {
  display: none;
  font-size: 0.7rem;
  color: #c92a2a;
  font-weight: 700;
  margin-top: 0.35rem;
  position: absolute;
  bottom: -1.25rem;
  left: 0;
}

.form-group.has-error .error-msg  { display: block; }
.form-group.has-error .form-input { border-bottom-color: #c92a2a; }

.btn-submit {
  align-self: flex-start;
  margin-top: 1.5rem;
}

.form-toast {
  background-color: var(--text-dark);
  color: var(--accent-lime);
  padding: 1.25rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-top: 2rem;
  border: 1px solid var(--accent-lime);
  animation: fadeIn 0.3s ease forwards;
}

.form-toast.hidden { display: none !important; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Custom Dropdown */
.dropdown-wrapper {
  position: relative;
  margin: 3rem 0;
  width: 100%;
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background-color: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  padding: 1.25rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  outline: none;
  cursor: pointer;
  border-radius: 0;
}

.custom-select option {
  background-color: var(--dark-forest);
  color: var(--text-light);
  padding: 1rem;
}

.select-arrow {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--text-light);
  pointer-events: none;
}

.panel-bottom-notes {
  margin-top: 4rem;
  max-width: 420px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background-color: var(--bg-cream);
  padding-top: 6rem;
  color: var(--text-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 0 3rem 5rem;
  gap: 4rem;
}

.footer-col { display: flex; flex-direction: column; }
.brand-col  { padding-right: 4rem; }

.footer-brand   { font-size: 3.2rem; margin-bottom: 1rem; }

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(17,17,17,0.8);
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}

.footer-details a:hover { text-decoration: underline; }

.footer-socials {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.social-link {
  position: relative;
  padding-bottom: 0.15rem;
}

.social-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--text-dark);
  transition: width 0.3s ease;
}

.social-link:hover::after { width: 100%; }

.nav-col {
  border-left: 1px solid rgba(17,17,17,0.15);
  padding-left: 4rem;
}

.footer-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(17,17,17,0.4);
  margin-bottom: 2rem;
  display: block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-links a {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--text-dark);
}

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

.footer-bottom {
  border-top: 1px solid rgba(17,17,17,0.15);
  padding: 2.5rem 3rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-links { display: flex; gap: 2.5rem; }
.bottom-links a:hover { text-decoration: underline; }

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1200px) {
  .hero-headline  { font-size: 4.5rem; }
  .section-title  { font-size: 3.8rem; }
  .feature-title  { font-size: 2.8rem; }
  .product-name   { font-size: 2.2rem; }
  .stat-value     { font-size: 4.5rem; }
  .panel          { padding: 5rem 3rem; }
}

@media (max-width: 992px) {
  .container-bleed,
  .nav-container { padding-inline: 2rem; }

  .nav-links { gap: 2rem; }

  .section-split { flex-direction: column; }

  .panel { padding: 5rem 2rem; min-height: auto; }

  .grid-4-col,
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }

  .product-card,
  .stat-card { border-bottom: 2px solid var(--text-dark); }

  .product-card:nth-child(2n),
  .stat-card:nth-child(2n) { border-right: none; }

  .product-card:nth-child(3),
  .product-card:nth-child(4),
  .stat-card:nth-child(3),
  .stat-card:nth-child(4) { border-bottom: none; }

  .timeline-step { border-bottom: 1px solid rgba(255,255,255,0.2); }
  .timeline-step:nth-child(2n) { border-right: none; }
  .timeline-step:nth-child(3),
  .timeline-step:nth-child(4) { border-bottom: none; }

  .stat-card { min-height: 320px; }

  .grid-2x2 { grid-template-columns: 1fr; }

  .cell-forest,
  .grid-2x2 .feature-cell:nth-child(3) { border-right: none; }

  .feature-cell { padding: 5rem 2rem; min-height: auto; }

  .footer-grid { grid-template-columns: 1fr; padding: 0 2rem 4rem; gap: 3rem; }

  .brand-col { padding-right: 0; }

  .nav-col {
    border-left: none;
    border-top: 1px solid rgba(17,17,17,0.15);
    padding-left: 0;
    padding-top: 2rem;
  }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .mobile-menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background-color: var(--bg-cream);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    transition: left 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border-top: 1px solid rgba(17,17,17,0.1);
  }

  .navbar.mobile-menu-open .nav-links { left: 0; }

  .navbar.mobile-menu-open .burger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .navbar.mobile-menu-open .burger-bar:nth-child(2) { opacity: 0; }
  .navbar.mobile-menu-open .burger-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav-cta { display: none; }

  .hero-headline  { font-size: 3.2rem; }
  .section-title  { font-size: 2.8rem; }
  .feature-title  { font-size: 2.4rem; }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .header-right p { text-align: left; }

  .grid-4-col   { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }

  .product-card { border-right: none; border-bottom: 2px solid var(--text-dark); }
  .product-card:last-child { border-bottom: none; }

  .timeline-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 3rem 2rem; }
  .timeline-step:last-child { border-bottom: none; }

  .stat-card { border-right: none; border-bottom: 2px solid var(--text-dark); padding: 3rem 2rem; min-height: auto; }
  .stat-card:last-child { border-bottom: none; }

  .form-row { flex-direction: column; gap: 2.5rem; }

  .bottom-container { flex-direction: column; gap: 1.5rem; text-align: center; }
  .bottom-links { justify-content: center; width: 100%; gap: 1.5rem; }
}

.shop-notice-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #1A3A1A;
  color: #FFFFFF;
  border: 2px solid #A8D832;
  padding: 1.5rem;
  z-index: 9999;
  font-family: 'Space Mono', monospace;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  max-width: 360px;
  transition: opacity 0.5s ease;
}

.shop-notice-banner__heading {
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #A8D832;
}

.shop-notice-banner__body {
  font-size: 0.85rem;
  line-height: 1.4;
}