/* ============================================================
   UPPER LOFT ENTERPRISES — Design System v2.0
   upperloftenterprises.com
   ============================================================ */

/* 1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  --midnight:    #0F3319;
  --forest:      #1A5C2A;
  --gold:        #C9A84C;
  --warm-gold:   #F5B731;
  --fire:        #E8843A;
  --cream:       #F5F0EB;
  --parchment:   #EDE4D5;
  --charcoal:    #1F1F1F;
  --warm-gray:   #6B6460;
  --white:       #FFFFFF;

  --font-display:   'Playfair Display', Georgia, serif;
  --font-serif:     'Cormorant Garamond', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;

  --nav-height: 72px;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* 2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Global paragraph spacing — applies across all pages */
.section-body + .section-body,
.section p + p,
.legal-section p + p,
.legal-section li,
.feature-card-body,
.page-hero-body {
  margin-top: 1.4em;
}

/* Generous spacing after every section-body paragraph */
.section-body {
  margin-bottom: 1.4em;
}
.section-body:last-child {
  margin-bottom: 0;
}

/* Pull quote and two-column text breathing room */
.two-col .section-body {
  margin-bottom: 1.5em;
}
.two-col .section-body:last-of-type {
  margin-bottom: 0;
}

/* 3. GRAIN TEXTURE — the secret to making flat CSS look premium
   ============================================================ */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  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='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

.grain-heavy::after { opacity: 0.06; }

/* 4. TYPOGRAPHY
   ============================================================ */
.t-display {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.t-hero {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.t-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.t-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
}
.t-serif {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
.t-serif-lg {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
}
.t-body { font-family: var(--font-body); font-size: 1rem; line-height: 1.7; }
.t-body-sm { font-family: var(--font-body); font-size: 0.9375rem; line-height: 1.65; }
.t-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* 5. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.5s var(--ease), border-bottom 0.5s;
}

.nav.scrolled {
  background: rgba(15, 51, 25, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-badge {
  width: 38px; height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-badge span {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* Real logo image in nav */
.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  transition: transform 0.3s var(--ease);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.7);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  color: var(--gold) !important;
  border: 1px solid rgba(201,168,76,0.45);
  padding: 7px 20px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--midnight) !important;
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--midnight);
  padding: 32px 48px 40px;
  border-bottom: 2px solid rgba(201,168,76,0.2);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
  z-index: 999;
}
.nav-mobile.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-mobile a {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }

/* 6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
              background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  position: relative;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.btn:active { transform: translateY(0); }

.btn-gold { background: var(--gold); color: var(--midnight); }
.btn-gold:hover { background: var(--warm-gold); }

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,235,0.35);
}
.btn-outline-cream:hover { border-color: var(--cream); background: rgba(245,240,235,0.07); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--midnight); }

/* 7. HOME HERO — editorial typographic hero
   ============================================================ */
.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0F3319;
  background-image:
    radial-gradient(ellipse 80% 60% at 15% 60%, rgba(15,51,25,0.38) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(201,168,76,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 60% 90%, rgba(15,25,15,0.25) 0%, transparent 50%),
    url('/assets/home.jpeg');
  background-position: center;
  background-size: auto, auto, auto, cover;
  background-repeat: no-repeat;
}

/* Kept for animated glow pulse */
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 20% 65%, rgba(26,92,42,0.35) 0%, transparent 55%);
  animation: glowPulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* Decorative gold vertical lines */
.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.2) 30%, rgba(201,168,76,0.2) 70%, transparent);
}
.hero-lines::before { left: 48px; }
.hero-lines::after { right: 48px; }

/* Floating gold circle — top right ornament */
.hero-ornament {
  position: absolute;
  top: 15%;
  right: 8%;
  width: clamp(240px, 28vw, 440px);
  height: clamp(240px, 28vw, 440px);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  pointer-events: none;
}
.hero-ornament::before {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.07);
}
.hero-ornament::after {
  content: '';
  position: absolute;
  inset: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.04);
}

/* Bottom left ornament */
.hero-ornament-sm {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: clamp(100px, 12vw, 180px);
  height: clamp(100px, 12vw, 180px);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
  pointer-events: none;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  width: 100%;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.hero-text { }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.hero-eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero-headline .gold { color: var(--gold); }
.hero-headline .fire { color: var(--fire); }

.hero-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,0.4), transparent);
  margin-bottom: 28px;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-style: italic;
  color: rgba(245,240,235,0.62);
  line-height: 1.5;
  margin-bottom: 8px;
  max-width: 42ch;
}

.hero-byline {
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.28);
  margin-bottom: 48px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero right — vertical division list */
.hero-divisions {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(201,168,76,0.15);
  padding-left: 40px;
  min-width: 220px;
}

.hero-division-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  text-decoration: none;
  display: block;
  transition: padding-left 0.3s var(--ease);
}
.hero-division-item:last-child { border-bottom: none; }
.hero-division-item:hover { padding-left: 10px; }

.hero-division-label {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 4px;
}
.hero-division-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
  opacity: 0.35;
  animation: scrollFloat 3s ease-in-out infinite;
}
.hero-scroll span {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
}
.hero-scroll-bar {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--cream), transparent);
}

@keyframes scrollFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.2; }
}

/* 8. PRODUCT CARDS — editorial magazine tiles
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.product-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  cursor: pointer;
}

/* Background layer */
.pc-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease);
}
.product-card:hover .pc-bg { transform: scale(1.05); }

/* Gradient overlay */
.pc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,25,12,0.85) 0%,
    rgba(10,25,12,0.4) 35%,
    rgba(10,25,12,0.05) 65%,
    transparent 100%
  );
  transition: opacity 0.4s;
}
.product-card:hover .pc-overlay {
  background: linear-gradient(
    to top,
    rgba(10,25,12,0.92) 0%,
    rgba(10,25,12,0.65) 45%,
    rgba(10,25,12,0.15) 72%,
    transparent 100%
  );
}

/* Gold top accent bar — appears on hover */
.pc-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .pc-accent { transform: scaleX(1); }

/* Number */
.pc-num {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  transition: color 0.4s;
}
.product-card:hover .pc-num { color: rgba(201,168,76,0.07); }

/* Content */
.pc-content {
  position: relative;
  z-index: 2;
  padding: 36px;
  width: 100%;
}

.pc-tag {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pc-tag::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.pc-name {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.pc-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(245,240,235,0.6);
  line-height: 1.55;
  max-width: 36ch;
  margin-bottom: 24px;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 0.4s 0.05s var(--ease), transform 0.4s 0.05s var(--ease);
}
.product-card:hover .pc-desc { opacity: 1; transform: translateY(0); }

.pc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s var(--ease);
}
.product-card:hover .pc-cta { gap: 16px; }
.pc-cta-arrow { font-size: 1rem; line-height: 1; }

/* Card background themes */
.pc-bg.pc-jak {
  background-color: #0A1A0C;
  background-image: url('/assets/jakalooki.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pc-bg.pc-breezy {
  background-color: #081208;
  background-image: url('/assets/breezy-hill.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pc-bg.pc-cookbook {
  background-color: #0E0A04;
  background-image: url('/assets/cookbook.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pc-bg.pc-journey {
  background-color: #060606;
  background-image: url('/assets/journey.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 9. BRAND STRIP
   ============================================================ */
.brand-strip {
  background: var(--cream);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.brand-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.4));
}
.brand-strip::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to top, transparent, rgba(201,168,76,0.4));
}
.brand-strip-inner { max-width: 680px; margin: 0 auto; }
.brand-strip-eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.brand-strip-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.brand-strip-body {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 40px;
}

/* 10. EMAIL SIGNUP
   ============================================================ */
.signup-section {
  background: var(--midnight);
  padding: 96px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.signup-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(26,92,42,0.3) 0%, transparent 60%);
}
.signup-inner { max-width: 500px; margin: 0 auto; position: relative; z-index: 1; }
.signup-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
  opacity: 0.85;
}
.signup-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.signup-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: rgba(245,240,235,0.5);
  margin-bottom: 40px;
  line-height: 1.6;
}
.signup-form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
}
.signup-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  background: rgba(245,240,235,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 3px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.signup-form input::placeholder { color: rgba(245,240,235,0.3); }
.signup-form input:focus { border-color: rgba(201,168,76,0.5); background: rgba(245,240,235,0.1); }
.signup-form button {
  flex-shrink: 0;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--midnight);
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.signup-form button:hover { background: var(--warm-gold); }

/* 11. SECTION SYSTEM
   ============================================================ */
.section { padding: 112px 48px; }
.section-sm { padding: 72px 48px; }
.section-xs { padding: 48px 48px; }

.section-dark { background: var(--midnight); color: var(--cream); position: relative; overflow: hidden; }
.section-forest { background: var(--forest); color: var(--cream); }
.section-cream { background: var(--cream); color: var(--charcoal); }
.section-parchment { background: var(--parchment); color: var(--charcoal); }
.section-charcoal { background: var(--charcoal); color: var(--cream); }

.container { max-width: 1180px; margin: 0 auto; }
.container-sm { max-width: 800px; margin: 0 auto; }
.container-xs { max-width: 620px; margin: 0 auto; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Section labels */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.on-dark { color: var(--cream); }
.on-dark.section-body-text { color: rgba(245,240,235,0.65); }
.on-light { color: var(--charcoal); }

.section-body {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--warm-gray);
}
.section-body.on-dark { color: rgba(245,240,235,0.62); }

/* 12. GOLD RULE
   ============================================================ */
.gold-rule {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 20px 0;
  opacity: 0.7;
}
.gold-rule.centered { margin: 20px auto; }

/* 13. FEATURE CARDS
   ============================================================ */
.feature-card {
  padding: 32px;
  border-radius: 4px;
}
.feature-card-dark {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.1);
  border-top: 2px solid rgba(201,168,76,0.3);
}
.feature-card-light {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-top: 2px solid rgba(201,168,76,0.4);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.feature-card-icon {
  font-size: 1.625rem;
  margin-bottom: 16px;
  display: block;
}
.feature-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card-body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.65;
}

/* 14. PULL QUOTE
   ============================================================ */
.pull-quote {
  padding: 96px 48px;
  text-align: center;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 280px;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: 0;
}
.pull-quote-inner {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto;
}
.pull-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 28px;
}
.pull-quote-attr {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* 15. PAGE HEROES (sub-pages)
   ============================================================ */
.page-hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 80px) 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-dark { background: var(--midnight); }
.page-hero-dark::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 55%, rgba(26,92,42,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 25%, rgba(201,168,76,0.07) 0%, transparent 50%);
}
.page-hero-fire {
  background: linear-gradient(155deg, #0A2010 0%, #0F3319 40%, #1C1A08 100%);
}
.page-hero-fire::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(232,132,58,0.1));
}
.page-hero-cookbook {
  background: linear-gradient(155deg, #100C04 0%, #1E1A08 50%, #1A1A0A 100%);
}
.page-hero-cookbook::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(201,168,76,0.15) 0%, transparent 60%);
}
.page-hero-charcoal { background: var(--charcoal); }
.page-hero-charcoal::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 60%);
}
.page-hero-story {
  background:
    linear-gradient(155deg, rgba(15,51,25,0.82) 0%, rgba(26,92,42,0.75) 50%, rgba(10,32,16,0.88) 100%),
    url('/assets/ourstory.jpg') center/cover no-repeat;
}
.page-hero-story::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.08) 0%, transparent 55%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
}
.page-eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0.9;
}
.page-eyebrow::before, .page-eyebrow::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.page-body {
  font-family: var(--font-serif);
  font-size: clamp(1.0625rem, 1.8vw, 1.3125rem);
  font-style: italic;
  line-height: 1.65;
  max-width: 54ch;
  margin: 0 auto 40px;
}

/* 16. PLACEHOLDERS — intentionally designed, not apologetic
   ============================================================ */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 400px;
  border-radius: 4px;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(201,168,76,0.1) 0%, transparent 55%),
    linear-gradient(160deg, #1A2A1A, #0F1F10);
  border: 1px solid rgba(201,168,76,0.12);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.photo-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(201,168,76,0.05);
  top: 25%;
}
.photo-placeholder-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.35);
  text-align: center;
  position: relative; z-index: 1;
}

.mockup-phone {
  width: 220px;
  aspect-ratio: 9/19.5;
  border-radius: 32px;
  background: linear-gradient(160deg, #1A5C2A, #0F3319);
  border: 1.5px solid rgba(201,168,76,0.2);
  box-shadow:
    0 0 0 8px rgba(15,51,25,0.6),
    0 0 0 10px rgba(201,168,76,0.06),
    0 40px 100px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.mockup-phone::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 5px;
  background: rgba(201,168,76,0.15);
  border-radius: 100px;
}
.mockup-screen-label {
  text-align: center;
  padding: 24px;
  position: relative; z-index: 1;
}
.mockup-screen-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.mockup-screen-sub {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.35);
}

.bottle-visual {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1/2.5;
  margin: 0 auto;
  border-radius: 60px 60px 32px 32px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.06) 0%, transparent 40%),
    linear-gradient(160deg, #1C3A10, #0F2A08);
  border: 1px solid rgba(232,132,58,0.2);
  box-shadow:
    -6px 0 0 rgba(0,0,0,0.25),
    0 40px 100px rgba(0,0,0,0.5),
    inset 0 0 40px rgba(232,132,58,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.bottle-label-inner {
  text-align: center;
  padding: 20px;
  position: relative; z-index: 1;
}
.bottle-label-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 6px;
}
.bottle-label-sub {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,132,58,0.5);
}

.book-visual {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3/4.2;
  margin: 0 auto;
  border-radius: 3px 12px 12px 3px;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(201,168,76,0.18) 0%, transparent 55%),
    linear-gradient(160deg, #1E1A08, #2A2510);
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow:
    -10px 4px 0 rgba(0,0,0,0.35),
    -14px 6px 24px rgba(0,0,0,0.4),
    0 24px 60px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
}
.book-visual::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 14px;
  background: linear-gradient(90deg, rgba(0,0,0,0.45), rgba(0,0,0,0.1));
  border-radius: 3px 0 0 3px;
}
.book-visual::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 2px;
}
.book-content {
  text-align: center;
  position: relative; z-index: 1;
}
.book-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; opacity: 0.6; }
.book-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
  margin-bottom: 8px;
}
.book-sub {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.35);
}

/* App store badges */
.app-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
  opacity: 0.55;
  cursor: not-allowed;
}
.app-badge-icon { font-size: 1.25rem; }
.app-badge-text { display: flex; flex-direction: column; }
.app-badge-soon {
  font-family: var(--font-body);
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.app-badge-store {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
}

/* Video placeholder */
.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  background: linear-gradient(135deg, #080808, #141414);
  border: 1px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.video-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
}
.video-play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid rgba(201,168,76,0.35);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s;
  position: relative; z-index: 1;
}
.video-play-btn::after {
  content: '';
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent var(--gold);
  margin-left: 3px;
  transition: border-color 0.3s;
}
.video-placeholder:hover .video-play-btn {
  background: var(--gold);
  transform: scale(1.06);
}
.video-placeholder:hover .video-play-btn::after {
  border-color: transparent transparent transparent var(--midnight);
}
.video-lbl {
  position: absolute;
  bottom: 20px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.35);
  white-space: nowrap;
  z-index: 1;
}

/* 17. CONTACT INFO & FORMS
   ============================================================ */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; opacity: 0.5; }
.contact-item-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(245,240,235,0.65);
}
.contact-item-text a { color: var(--gold); transition: opacity 0.2s; }
.contact-item-text a:hover { opacity: 0.75; }

.form-group { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.form-label.on-dark { color: rgba(245,240,235,0.4); }
.form-input, .form-textarea {
  width: 100%;
  padding: 13px 18px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-input.on-dark, .form-textarea.on-dark {
  background: rgba(245,240,235,0.05);
  border-color: rgba(201,168,76,0.15);
  color: var(--cream);
}
.form-input.on-dark::placeholder, .form-textarea.on-dark::placeholder {
  color: rgba(245,240,235,0.25);
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

/* 18. FOOTER
   ============================================================ */
.footer {
  background: var(--midnight);
  padding: 80px 48px 36px;
  border-top: 1px solid rgba(201,168,76,0.12);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 48px; right: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.2) 30%, rgba(201,168,76,0.2) 70%, transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,240,235,0.05);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.footer-brand-tag {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 20px;
  display: block;
}
.footer-brand-desc {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  color: rgba(245,240,235,0.35);
  line-height: 1.7;
  max-width: 30ch;
  font-style: italic;
}
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 20px;
  display: block;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(245,240,235,0.42);
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-links a:hover { color: rgba(245,240,235,0.8); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(245,240,235,0.22);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(245,240,235,0.22);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(245,240,235,0.5); }

/* 19. STATUS BADGE
   ============================================================ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--warm-gold);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* 20. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* 21. UTILITIES
   ============================================================ */
.text-gold    { color: var(--gold); }
.text-cream   { color: var(--cream); }
.text-center  { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-gap-2 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }

/* 22. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-divisions { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .three-col { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }
  .nav-mobile { padding: 32px 24px 40px; }

  .section, .section-sm { padding: 72px 24px; }
  .brand-strip, .signup-section, .pull-quote { padding: 72px 24px; }
  .hero-content { padding: 0 24px; }
  .hero-lines::before { left: 24px; }
  .hero-lines::after { right: 24px; }

  .products-grid { grid-template-columns: 1fr; }
  .product-card { height: 420px; }

  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.reverse { direction: ltr; }
  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }

  .footer { padding: 60px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer::before { left: 24px; right: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .signup-form { flex-direction: column; }
  .app-badges { flex-direction: column; }

  .hero-ornament { display: none; }
  .hero-ornament-sm { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(3rem, 14vw, 4.5rem); }
  .four-col { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .page-hero { min-height: 55vh; }
}
