/* ============================================================
   GRANZ PEPPER SAUCE — Shared Stylesheet
   ============================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Inter:wght@400;500;600&display=swap');

/* ── Variables ── */
:root {
  --gold:      #FCCC22;
  --orange:    #D55A38;
  --red:       #8B1E1E;
  --forest:    #2F4A32;
  --charcoal:  #4A4C49;
  --cream:     #FFFDF5;
  --yellow:    #FBCD20;
  --white:     #FFFFFF;
  --black:     #111110;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-script:  'Dancing Script', cursive;

  --radius-sm: 2px;
  --radius-md: 6px;

  --shadow-warm: 0 2px 8px rgba(252,204,34,0.15), 0 8px 32px rgba(62,64,61,0.18);
  --shadow-warm-lg: 0 4px 16px rgba(252,204,34,0.2), 0 16px 48px rgba(62,64,61,0.25);

  --nav-h: 72px;
  --content-w: 1200px;
  --section-py: clamp(64px, 8vw, 112px);
  --col-gap: clamp(40px, 5vw, 80px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

/* ── Grain texture filter (applied via pseudo-element on .grain-host) ── */
.grain-host { position: relative; overflow: hidden; }
.grain-host::after {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: overlay;
}
.grain-host > * { position: relative; z-index: 2; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--charcoal);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  transform: translateZ(0); /* own GPU layer — prevents repaint flicker on scroll */
}
.nav-inner {
  width: 100%;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  animation: navFadeIn 0.45s ease forwards;
}
@keyframes navFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 101;
  transform: translateY(32px);
  transition: opacity 0.2s ease;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo img {
  height: 104px;
  width: auto;
  will-change: transform;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
.nav-links li { display: flex; align-items: center; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  display: block;
}
.nav-links a:hover { color: rgba(255,253,245,0.75); }
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s;
}
.nav-burger:hover { opacity: 0.7; }
.nav-burger:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
@media (max-width: 720px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px clamp(16px, 4vw, 40px);
    gap: 28px;
    background: var(--charcoal);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a { font-size: 1.125rem; padding: 8px 0; width: 100%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  color: rgba(255,253,245,0.6);
  padding: 56px clamp(16px, 4vw, 40px) 32px;
}
.footer-inner {
  max-width: var(--content-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-nav-cols {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.footer-logo img { height: 64px; width: auto; margin-bottom: 16px; }
.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1.2;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255,253,245,0.6);
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-col a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }
.footer-bottom {
  max-width: var(--content-w);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span { color: rgba(255,253,245,0.35); }
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav-cols { gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label.light { color: rgba(255,253,245,0.6); }

.section-rule {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--red);
  margin-top: 14px;
  border-radius: 2px;
}
.section-rule.gold { background: var(--gold); }
.section-rule.cream { background: rgba(255,253,245,0.4); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.script-accent {
  font-family: var(--font-script);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--gold);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}
.section { padding: var(--section-py) 0; }
.section-sm { padding: clamp(40px, 5vw, 64px) 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  align-items: center;
}
.two-col.align-start { align-items: start; }
@media (max-width: 840px) { .two-col { grid-template-columns: 1fr; } }

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 840px) { .three-col { grid-template-columns: 1fr; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.18s ease,
              background-color 0.18s ease,
              color 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.btn:active { transform: translateY(1px) !important; }

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(252,204,34,0.3);
}
.btn-primary:hover {
  background: #DEB41E;
  border-color: #DEB41E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252,204,34,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,253,245,0.5);
}
.btn-outline:hover {
  border-color: var(--cream);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(62,64,61,0.25);
}

.btn-red {
  background: var(--red);
  color: var(--cream);
  border-color: var(--red);
}
.btn-red:hover {
  background: #7a1a1a;
  border-color: #7a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,30,30,0.4);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* ============================================================
   INGREDIENT PILLS
   ============================================================ */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 1.5px solid var(--charcoal);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: transparent;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}
.pill.light {
  border-color: rgba(255,253,245,0.5);
  color: var(--cream);
}

/* ============================================================
   PRODUCT SPEC TABLE
   ============================================================ */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
}
.spec-table tr {
  border-bottom: 1px dashed rgba(62,64,61,0.2);
}
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
  padding: 14px 0;
  font-size: 0.9375rem;
  vertical-align: middle;
}
.spec-table td:first-child {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  width: 45%;
}
.spec-table td:last-child {
  font-weight: 600;
  color: var(--charcoal);
  text-align: right;
}

/* Spec table scroll on mobile */
.spec-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 8px;
}
.pricing-table tr { border-bottom: 1px dashed rgba(255,253,245,0.2); }
.pricing-table tr:last-child { border-bottom: none; }
.pricing-table td {
  padding: 16px 0;
  font-size: 1rem;
  vertical-align: middle;
}
.pricing-table td:first-child {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,253,245,0.55);
}
.pricing-table td:last-child {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  text-align: right;
}
.pricing-note {
  font-size: 0.8125rem;
  color: rgba(255,253,245,0.4);
  margin-top: 12px;
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull-quote {
  padding: clamp(48px, 6vw, 80px) 0;
  text-align: center;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto;
}
.pull-quote.section-orange {
  padding: clamp(20px, 3vw, 36px) 0;
}
.pull-quote.section-orange blockquote {
  max-width: none;
}
.pull-quote.section-quote-charcoal {
  background: var(--charcoal);
  padding: clamp(20px, 3vw, 36px) 0;
  position: relative;
}
.pull-quote.section-quote-charcoal::before,
.pull-quote.section-quote-charcoal::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(252,204,34,0.35), transparent);
}
.pull-quote.section-quote-charcoal::before { top: 0; }
.pull-quote.section-quote-charcoal::after  { bottom: 0; }
.pull-quote.section-quote-charcoal blockquote {
  color: var(--gold);
  max-width: none;
}
.pull-quote cite {
  display: block;
  font-family: var(--font-script);
  font-size: 1.25rem;
  font-style: normal;
  color: rgba(255,253,245,0.55);
  margin-top: 20px;
}

/* ============================================================
   PAGE HEADER BAND
   ============================================================ */
.page-header {
  background: var(--charcoal);
  padding: clamp(28px, 3.5vw, 44px) 0 clamp(20px, 2.5vw, 32px);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(252,204,34,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139,30,30,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.page-header .container { position: relative; }
.page-header .section-label { color: rgba(252,204,34,0.8); }
.page-header h1 { color: var(--cream); }
.page-header .section-rule { background: var(--gold); }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) clamp(16px, 4vw, 40px) 80px;
}

/* Gradient-only hero (no banner image) */
.hero-gradient {
  background:
    radial-gradient(ellipse at 25% 30%, rgba(252,204,34,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(139,30,30,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(47,74,50,0.2) 0%, transparent 60%),
    var(--charcoal);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-top: -64px;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7.5vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #E06900;
  margin-bottom: 24px;
}
.hero-sub {
  font-family: var(--font-script);
  font-size: clamp(1.375rem, 3vw, 2.125rem);
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.hero-teaser {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #ffffff;
  line-height: 1.75;
  max-width: 900px;
  margin: 0 auto 8px;
}

/* ============================================================
   HOME — SECTIONS
   ============================================================ */
.section-cream { background: var(--cream); }
.section-charcoal {
  background: var(--charcoal);
  color: var(--cream);
}
.section-gold {
  background: #FCCC22;
  color: var(--charcoal);
}
/* Pull quote in forest */
.section-forest .pull-quote,
.pull-quote.section-forest {
  background: var(--forest);
}
.pull-quote.section-story-quote {
  background: var(--charcoal);
}
.pull-quote.section-story-quote blockquote,
.pull-quote.section-story-quote cite {
  color: var(--gold);
}
.section-orange {
  background: var(--orange);
  color: var(--cream);
}
.section-red {
  background: var(--red);
  color: var(--cream);
}
.section-forest {
  background: var(--forest);
  color: var(--cream);
}

/* Teaser on home */
.brand-teaser {
  max-width: 680px;
}
.brand-teaser p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: var(--charcoal);
}

/* ============================================================
   STORY PAGE
   ============================================================ */
.heritage-photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/2.8;
  box-shadow: var(--shadow-warm-lg);
}
.heritage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: sepia(0.2) contrast(1.05);
}
.heritage-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(47,74,50,0.35) 100%);
  pointer-events: none;
}

.story-body p {
  font-size: clamp(1rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.4em;
}
.story-body .lead {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--charcoal);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.pillar {
  padding: 28px 24px;
  background: rgba(252,204,34,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.pillar .pillar-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 8px;
}
.pillar h4 {
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.pillar p {
  font-size: 0.9rem;
  color: rgba(62,64,61,0.7);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   SAUCE PAGE
   ============================================================ */
.product-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-warm-lg);
}
.product-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.product-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(252,204,34,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.sauce-detail h2 { margin-bottom: 4px; }
.sauce-desc {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.8;
  color: rgba(62,64,61,0.85);
  margin-top: 24px;
}

/* Dark variant spec table (for charcoal section) */
.spec-table-dark tr { border-bottom-color: rgba(255,253,245,0.12); }
.spec-table-dark td:first-child { color: rgba(252,204,34,0.8); }
.spec-table-dark td:last-child { color: var(--cream); }

/* ============================================================
   STORY SPLIT PANEL
   ============================================================ */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  min-height: 80vh;
  padding: clamp(40px, 5vw, 72px) 0;
}
.story-img-panel {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: 14px;
}
.story-img-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  filter: sepia(0.15) contrast(1.08);
}
.story-img-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,253,245,0.55);
  z-index: 2;
  text-transform: uppercase;
}
.story-img-panel::after {
  display: none;
}
.story-text-panel {
  background: var(--charcoal);
  padding: clamp(48px, 6vw, 96px) clamp(32px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-lead {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.65;
  margin-bottom: 1.2em;
}
@media (max-width: 840px) {
  .story-split { grid-template-columns: 1fr; gap: 0; }
  .story-img-panel { aspect-ratio: 3/4; min-height: unset; }
  .story-img-panel img { position: static; width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
  .story-img-panel::after { display: none; }
  .story-text-panel { padding: clamp(40px, 6vw, 64px) clamp(16px, 4vw, 40px); }
}

/* ============================================================
   RETAILERS PAGE
   ============================================================ */
.benefit-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.6;
  color: #ffffff;
}
.benefit-item::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55em;
}

.retailer-quote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-style: italic;
  color: #ffffff;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-top: 32px;
  line-height: 1.5;
}

.pricing-panel {
  background: var(--charcoal);
  border-radius: var(--radius-md);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--shadow-warm-lg);
}
.pricing-panel .section-label { color: rgba(252,204,34,0.8); }
.pricing-panel h3 { color: var(--cream); margin-bottom: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Contact hero band */
.contact-hero {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(28px, 3.5vw, 40px) 0 clamp(16px, 2vw, 24px);
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(252,204,34,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139,30,30,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}
.contact-hero h1 {
  color: var(--cream);
  margin-bottom: 0;
}
.contact-hero .section-rule {
  margin: 16px auto 0;
  background: var(--gold);
}

.contact-section { padding: clamp(20px, 2.5vw, 28px) 0 clamp(32px, 4vw, 48px); }

/* Desktop: wider form, columns stretch to equal height, bottoms align */
@media (min-width: 841px) {
  .contact-section .two-col {
    align-items: stretch;
    grid-template-columns: 1.4fr 1fr;
  }
  /* Left col: form card fills full column height */
  .contact-section .two-col > div:first-child {
    display: flex;
    flex-direction: column;
  }
  .contact-form-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .contact-form-wrap form {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .form-group:has(textarea) {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .form-group:has(textarea) textarea {
    flex: 1;
  }
  /* Right col: rep card pinned to bottom so its bottom edge aligns with form card */
  .contact-info-panel {
    display: flex;
    flex-direction: column;
  }
  .contact-info-panel .rep-card {
    margin-top: auto;
  }
}

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-warm);
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(62,64,61,0.2);
  border-radius: var(--radius-sm);
  background: white;
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.5;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(252,204,34,0.15);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.contact-info-panel { padding: 0; }
.contact-info-panel .section-label { color: rgba(252,204,34,0.8); }
.contact-info-panel h3 { color: var(--cream); margin-bottom: 10px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
.contact-item-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(252,204,34,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.contact-item-icon svg { width: 16px; height: 16px; fill: var(--gold); }
.contact-item-body a {
  color: rgba(255,253,245,0.75);
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: color 0.18s ease;
}
.contact-item-body a:hover { color: var(--gold); }
.contact-item-body a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }
.contact-item-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,253,245,0.4);
  margin-bottom: 4px;
}

.rep-card {
  margin-top: 16px;
  padding: 18px 22px;
  background: rgba(252,204,34,0.08);
  border: 1px solid rgba(252,204,34,0.2);
  border-radius: var(--radius-md);
}
.rep-card .section-label { color: rgba(252,204,34,0.7); margin-bottom: 8px; }
.rep-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.rep-title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,253,245,0.4);
  margin-bottom: 20px;
}
.rep-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255,253,245,0.7);
  margin-bottom: 10px;
  transition: color 0.18s ease;
}
.rep-contact a:hover { color: var(--gold); }
.rep-contact a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }
.rep-contact svg { flex-shrink: 0; width: 14px; height: 14px; fill: var(--gold); opacity: 0.7; }

/* Social links */
.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid rgba(255,253,245,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,253,245,0.7);
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.social-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }
.social-link svg { width: 15px; height: 15px; fill: currentColor; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--charcoal);
  color: #FCCC22;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: #FCCC22;
  color: var(--charcoal);
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
  transform: translateY(-2px);
}
.back-to-top:focus-visible {
  outline: 3px solid var(--charcoal);
  outline-offset: 3px;
}
.back-to-top:active { transform: translateY(0); }
.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
@media (max-width: 560px) {
  .back-to-top { bottom: 20px; right: 20px; }
}

/* ============================================================
   PAGE LOAD ANIMATIONS
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* Hero — four children staggered */
.hero-content > * {
  animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.22s; }
.hero-content > *:nth-child(3) { animation-delay: 0.38s; }
.hero-content > *:nth-child(4) { animation-delay: 0.54s; }

/* Contact hero */
.contact-hero h1 {
  animation: fadeSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.05s;
}
.contact-hero .section-rule {
  animation: fadeSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.2s;
}

/* Contact content panels */
.contact-form-wrap {
  animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.5s;
}
.contact-info-panel {
  animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.65s;
}

/* Contact form success state */
#contact-success {
  display: none;
  opacity: 0;
  text-align: center;
  padding: 8px 0;
  transition: opacity 0.45s ease;
}
#contact-success.is-visible { opacity: 1; }
#contact-success h2 {
  color: var(--charcoal);
  margin-bottom: 2px;
}
#contact-success .section-rule {
  margin-bottom: 4px;
}
#contact-success img {
  height: 260px;
  width: auto;
  display: block;
  margin: 0 auto 10px;
}
#contact-success p {
  color: rgba(62,64,61,0.72);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Anchor offset for sticky nav ── */
section[id] { scroll-margin-top: var(--nav-h); }

/* ── Scroll-reveal ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 840px) {
  .hero-tagline { letter-spacing: -0.02em; }
  .two-col > *:first-child { order: 0; }
  .two-col.img-right > *:first-child { order: 1; }
  .two-col.img-right > *:last-child { order: 0; }
  .pricing-panel { margin-top: 40px; }
}
@media (max-width: 560px) {
  .btn-group { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; text-align: center; }
}
