/* ============================================================
   I ON THE PRIZE — Spice Co. | Inglewood, CA
   Design system + global styles
   ============================================================ */

:root {
  /* Brand palette (pulled from the logo) */
  --green-900: #16291f;
  --green-800: #1f3b2e;
  --green-700: #2c4a3b;
  --green-600: #355c46;
  --green-500: #41705a;

  --cream:      #f4efe3;
  --cream-50:   #faf6ea;
  --cream-200:  #e7ddc8;

  --gold:       #c6a24c;
  --gold-300:   #d8bd77;
  --gold-700:   #9c7e34;

  --rust:       #a14e2a;
  --mustard:    #c69a3a;
  --olive:      #7e8a4f;
  --paprika:    #b8623a;

  --ink:        #20251f;
  --muted:      #6c6f64;
  --line:       rgba(31, 59, 46, 0.14);

  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(22, 41, 31, 0.06), 0 4px 14px rgba(22, 41, 31, 0.06);
  --shadow-md: 0 10px 30px rgba(22, 41, 31, 0.12);
  --shadow-lg: 0 24px 60px rgba(22, 41, 31, 0.20);

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 0.4em;
  color: var(--green-800);
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-700);
  margin: 0 0 14px;
}

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--green-700); color: var(--cream-50); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-800); box-shadow: var(--shadow-md); }

.btn--gold { background: var(--gold); color: var(--green-900); }
.btn--gold:hover { background: var(--gold-300); }

.btn--ghost { border-color: var(--green-700); color: var(--green-800); }
.btn--ghost:hover { background: var(--green-700); color: var(--cream-50); }

.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 10px 20px; font-size: 0.82rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 227, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img, .brand svg { height: 52px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-800);
  font-size: 1.18rem;
}
.brand-text span {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-800);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--green-900); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.cart-btn {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green-700);
  color: var(--cream-50);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.cart-btn:hover { background: var(--green-800); transform: translateY(-2px); }
.cart-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 22px; height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-900);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.74rem;
  display: grid; place-items: center;
  transform: scale(0);
  transition: transform 0.3s var(--ease);
}
.cart-count.show { transform: scale(1); }

.menu-toggle { display: none; width: 44px; height: 44px; color: var(--green-800); }
.menu-toggle svg { width: 28px; height: 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(198, 162, 76, 0.18), transparent 60%),
    linear-gradient(160deg, var(--green-800) 0%, var(--green-900) 100%);
  color: var(--cream-50);
  overflow: hidden;
  padding: 110px 0 120px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(244,239,227,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero .eyebrow { color: var(--gold-300); }
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.98;
  color: var(--cream-50);
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--gold-300); }
.hero p.lead {
  font-size: 1.18rem;
  color: rgba(244, 239, 227, 0.84);
  max-width: 52ch;
  margin: 22px 0 34px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 38px; margin-top: 52px; }
.hero-stats div strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-300);
  display: block;
  line-height: 1;
}
.hero-stats div span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(244, 239, 227, 0.7);
}

.hero-emblem {
  display: grid;
  place-items: center;
  position: relative;
}
.hero-emblem .ring {
  width: min(420px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, var(--cream-50), var(--cream) 70%);
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg), inset 0 0 0 10px var(--green-700), inset 0 0 0 14px var(--cream-50), inset 0 0 0 16px var(--gold);
  animation: floaty 6s ease-in-out infinite;
}
.hero-emblem .ring img { width: 78%; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* marquee strip */
.marquee {
  background: var(--gold);
  color: var(--green-900);
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid var(--green-800);
  border-bottom: 3px solid var(--green-800);
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  padding: 14px 0;
  animation: scroll 28s linear infinite;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  font-size: 0.95rem;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 40px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   FEATURE / STORY SECTIONS
   ============================================================ */
.section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--green-700);
  color: var(--gold-300);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.4rem; }
.feature-card p { color: var(--muted); margin: 0; }

/* Story */
.story { background: var(--cream-50); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-grid h2 { font-size: clamp(2rem, 4vw, 3rem); }
.story-grid p { color: var(--muted); }
.story-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background:
    radial-gradient(900px 400px at 30% 10%, rgba(198,162,76,0.25), transparent 60%),
    linear-gradient(150deg, var(--green-700), var(--green-900));
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.story-visual img { width: 70%; }
.story-visual img.story-photo { width: 100%; height: 100%; object-fit: cover; }
.story-visual .badge-float {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--cream-50);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
}
.story-visual .badge-float strong { display: block; color: var(--green-800); font-size: 1.4rem; }
.story-visual .badge-float span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-700); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.page-banner {
  background:
    radial-gradient(900px 400px at 85% -20%, rgba(198,162,76,0.2), transparent 60%),
    linear-gradient(160deg, var(--green-800), var(--green-900));
  color: var(--cream-50);
  padding: 90px 0 80px;
  text-align: center;
}
.page-banner h1 { font-family: var(--font-serif); color: var(--cream-50); font-size: clamp(2.4rem, 5vw, 3.8rem); }
.page-banner h1 em { color: var(--gold-300); font-style: italic; }
.page-banner p { color: rgba(244,239,227,0.82); max-width: 56ch; margin: 14px auto 0; font-size: 1.1rem; }

.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-chip {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--green-800);
  background: var(--cream-50);
  transition: all 0.25s var(--ease);
}
.filter-chip:hover { border-color: var(--green-600); }
.filter-chip.active { background: var(--green-700); color: var(--cream-50); border-color: var(--green-700); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}
.product-card {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-thumb {
  position: relative;
  aspect-ratio: 1;
  display: grid; place-items: center;
  overflow: hidden;
}
.product-thumb svg { width: 64%; height: 64%; }
.product-thumb.has-photo { padding: 0; aspect-ratio: 4 / 5; }   /* taller frame suits the portrait jars */
.product-thumb.has-photo img {
  width: 100%; height: 100%;
  object-fit: contain;            /* show the WHOLE product, never cropped */
  object-position: center;
  padding: 14px;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-thumb.has-photo img { transform: scale(1.04); }
.product-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-900);
}
.product-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-body .heat {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 6px;
}
.product-body h3 { font-size: 1.32rem; margin-bottom: 6px; }
.product-body p { color: var(--muted); font-size: 0.95rem; margin: 0 0 18px; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--green-800); }
.price span { font-size: 0.78rem; color: var(--muted); font-weight: 400; }
.add-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-700); color: var(--cream-50);
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.8rem; font-weight: 500;
  padding: 11px 18px; border-radius: 999px;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}
.add-btn:hover { background: var(--green-800); }
.add-btn:active { transform: scale(0.95); }
.add-btn svg { width: 16px; height: 16px; }
.add-btn.added { background: var(--gold); color: var(--green-900); }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(22, 41, 31, 0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease);
  z-index: 90;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed; top: 0; right: 0;
  height: 100%; width: min(440px, 100%);
  background: var(--cream);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 26px;
  background: var(--green-800);
  color: var(--cream-50);
}
.cart-header h3 { color: var(--cream-50); margin: 0; font-size: 1.4rem; }
.cart-close { color: var(--cream-50); width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; transition: background 0.25s var(--ease); }
.cart-close:hover { background: rgba(244,239,227,0.15); }
.cart-close svg { width: 24px; height: 24px; }

.cart-items { flex: 1; overflow-y: auto; padding: 18px 22px; }
.cart-empty { text-align: center; color: var(--muted); padding: 70px 20px; }
.cart-empty svg { width: 64px; height: 64px; color: var(--cream-200); margin: 0 auto 16px; }
.cart-empty p { margin: 0 0 22px; }

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item-thumb {
  width: 64px; height: 64px;
  border-radius: 12px;
  display: grid; place-items: center;
  overflow: hidden;
}
.cart-item-thumb svg { width: 60%; height: 60%; }
.cart-item-thumb.has-photo img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.98rem; color: var(--ink); margin: 0 0 4px; }
.cart-item-info .ci-price { color: var(--muted); font-size: 0.86rem; }
.qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: 999px;
  margin-top: 8px; overflow: hidden;
}
.qty button { width: 28px; height: 28px; display: grid; place-items: center; color: var(--green-800); font-size: 1.1rem; transition: background 0.2s; }
.qty button:hover { background: var(--cream-200); }
.qty span { min-width: 28px; text-align: center; font-weight: 600; font-size: 0.92rem; }
.cart-item-right { text-align: right; }
.cart-item-right .line-total { font-family: var(--font-display); font-weight: 600; color: var(--green-800); font-size: 1.05rem; }
.remove-item { color: var(--muted); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; transition: color 0.2s; }
.remove-item:hover { color: var(--rust); }

.cart-footer { padding: 22px 26px 28px; border-top: 1px solid var(--line); background: var(--cream-50); }
.cart-line { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--muted); font-size: 0.95rem; }
.cart-line.total { color: var(--green-900); font-size: 1.3rem; font-family: var(--font-display); font-weight: 600; margin: 14px 0 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.cart-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* Toast */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--green-800); color: var(--cream-50);
  padding: 14px 26px; border-radius: 999px;
  font-family: var(--font-display); letter-spacing: 0.06em;
  box-shadow: var(--shadow-md); z-index: 200;
  transition: transform 0.4s var(--ease);
  display: flex; align-items: center; gap: 10px;
}
.toast svg { width: 20px; height: 20px; color: var(--gold-300); }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.contact-info p { color: var(--muted); }
.info-list { list-style: none; padding: 0; margin: 36px 0 0; }
.info-list li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-list .ico {
  width: 48px; height: 48px; flex: none;
  border-radius: 12px; background: var(--green-700); color: var(--gold-300);
  display: grid; place-items: center;
}
.info-list .ico svg { width: 22px; height: 22px; }
.info-list strong { display: block; font-family: var(--font-display); letter-spacing: 0.04em; color: var(--green-800); }
.info-list span { color: var(--muted); font-size: 0.96rem; }

.contact-card {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.78rem; font-weight: 500; color: var(--green-800); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink); transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(53, 92, 70, 0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field.error input, .field.error textarea, .field.error select { border-color: var(--rust); }
.field .err-msg { color: var(--rust); font-size: 0.8rem; margin-top: 6px; display: none; }
.field.error .err-msg { display: block; }
.form-success {
  display: none; text-align: center; padding: 30px;
}
.form-success.show { display: block; }
.form-success svg { width: 64px; height: 64px; color: var(--green-600); margin: 0 auto 16px; }
.form-success h3 { font-size: 1.8rem; }
.form-success p { color: var(--muted); }

.map-embed {
  margin-top: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--line);
  filter: grayscale(0.2) sepia(0.1);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   CTA + FOOTER
   ============================================================ */
.cta-band {
  background: var(--gold);
  color: var(--green-900);
  text-align: center;
  padding: 80px 0;
}
.cta-band h2 { font-family: var(--font-serif); color: var(--green-900); font-size: clamp(2rem, 4.5vw, 3.2rem); }
.cta-band p { max-width: 50ch; margin: 14px auto 30px; color: var(--green-800); font-size: 1.1rem; }

.site-footer { background: var(--green-900); color: rgba(244,239,227,0.78); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .brand-text strong { color: var(--cream-50); }
.footer-brand p { font-size: 0.95rem; margin: 18px 0 0; max-width: 34ch; }
.footer-col h4 { color: var(--gold-300); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 18px; }
.footer-col a { display: block; padding: 7px 0; font-size: 0.96rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-300); }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(244,239,227,0.2); display: grid; place-items: center; transition: all 0.25s var(--ease); }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--green-900); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(244,239,227,0.14); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-emblem { order: -1; }
  .hero-cta, .hero-stats { justify-content: center; }
  .story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: absolute; top: 78px; left: 0; right: 0;
    background: var(--cream-50); padding: 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); gap: 18px;
  }
}
