/* ============================================================
   Girls Who Build AI LLC — Stylesheet
   Brand Colors:
     Navy:   #023047  (primary dark)
     Orange: #fb8500  (primary CTA)
     Gold:   #f9cf4e  (accent)
     Blue:   #0076b3  (link / secondary)
     Green:  #00aa5b  (accent)
     Amber:  #f7aa30  (warm mid-tone)
   Font: Inter (Google Fonts)
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #023047;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --navy:    #023047;
  --orange:  #fb8500;
  --gold:    #f9cf4e;
  --blue:    #0076b3;
  --green:   #00aa5b;
  --amber:   #f7aa30;
  --white:   #ffffff;
  --light:   #f6f8fa;
  --gradient: linear-gradient(135deg, #fb8500, #f9cf4e);
  --shadow:  0 4px 24px rgba(2,48,71,.12);
  --shadow-lg: 0 8px 40px rgba(2,48,71,.18);
  --radius:  12px;
  --radius-sm: 8px;
  --nav-h:   72px;
  --container: 1180px;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: 0; }
p  { font-size: 1rem; line-height: 1.7; color: #2d4a5c; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.eyebrow--hero {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--green);
}
.eyebrow--dark { color: var(--orange); }
.eyebrow--gold { color: var(--gold); }
.text-white    { color: var(--white) !important; }
.text-white-60 { color: rgba(255,255,255,0.7) !important; }

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

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-orange {
  background: var(--gradient);
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(251,133,0,.35);
}
.btn-orange:hover { box-shadow: 0 8px 28px rgba(251,133,0,.5); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(2,48,71,.25);
}
.btn-navy:hover { background: #034a6e; box-shadow: 0 8px 28px rgba(2,48,71,.35); }

.btn-full { width: 100%; }

/* ── Roots Divider ────────────────────────────────────────── */
.roots-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 90px;
  background: var(--white);
}
.roots-divider svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 6px rgba(0,170,91,.3));
}

/* Divider that appears between dark hero → light section */
.roots-divider--flip { background: var(--light); }

/* Divider between light sections */
.roots-divider--inline {
  height: 60px;
  background: transparent;
  margin: 2rem 0;
}

/* Divider between light → dark */
.roots-divider--light-bg { background: var(--light); }

/* Divider between dark → light */
.roots-divider--dark-bg { background: var(--navy); }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--navy);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(2,48,71,.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-wrap {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 6px;
  flex-shrink: 0;
  background: transparent;
}
.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-brand {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-link:hover { color: var(--gold); }
.nav-cta {
  background: var(--gradient);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(251,133,0,.3);
  transition: box-shadow 0.2s, transform 0.2s;
}
.nav-cta:hover { box-shadow: 0 4px 20px rgba(251,133,0,.5); transform: translateY(-1px); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.dropdown-arrow { transition: transform 0.2s; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  border: 1px solid rgba(249,207,78,.15);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0;
  min-width: 190px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown-menu li { width: 100%; }
.nav-dropdown-menu .nav-link {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu .nav-link:hover {
  background: rgba(249,207,78,.1);
  color: var(--gold);
}

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

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-content { flex: 1; min-width: 0; }
.hero-content h1 {
  color: var(--navy);
  margin: 0.75rem 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--green);
  display: inline-block;
}
.hero-content .eyebrow { margin-bottom: 1rem; }
.hero-sub {
  font-size: 1.1rem;
  color: #4a6878;
  margin-bottom: 2.25rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  flex: 0 0 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-logo-frame {
  width: 340px;
  height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-glow {
  display: none;
}
.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  position: relative;
  z-index: 1;
}

/* ── UTAH SECTION ─────────────────────────────────────────── */
.utah-section {
  background: var(--light);
  padding: 80px 24px;
}
.utah-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}
.utah-text h2 { margin-bottom: 1.25rem; }
.utah-text p  { margin-bottom: 1.5rem; }

.utah-quote {
  border-left: 3px solid var(--green);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0 0;
  background: rgba(0,170,91,.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.utah-quote p {
  font-size: 1rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.utah-quote cite {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  font-style: normal;
}

.photo-placeholder {
  aspect-ratio: 4/3;
  border: 2px dashed rgba(251,133,0,.4);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(251,133,0,.04);
  padding: 2rem;
  text-align: center;
}
.photo-placeholder .ph-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin: 0;
}
.photo-placeholder .ph-hint {
  font-size: 0.8rem;
  color: #7a9aae;
  margin: 0;
  line-height: 1.4;
}

.utah-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── SECTION: LIGHT ───────────────────────────────────────── */
.section-light {
  background: var(--light);
  padding: 80px 0;
}

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin: 0.5rem 0 1rem; }
.mission-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 0.5rem 0 1.25rem;
}
.section-intro {
  max-width: 680px;
  margin: 0 auto;
  color: #4a6878;
  font-size: 1.05rem;
}
.section-header--light .section-intro { color: rgba(255,255,255,0.7); }

/* ── LEGACY FRAMEWORK ─────────────────────────────────────── */
.legacy-wrap {
  margin-bottom: 0;
}
.legacy-title {
  text-align: center;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 2rem;
  font-weight: 700;
}
.legacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.legacy-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--green);
  position: relative;
  overflow: hidden;
}
.legacy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
}
.legacy-icon {
  margin-bottom: 1.25rem;
}
.legacy-card h4 { color: var(--navy); margin-bottom: 0.5rem; }
.legacy-card p  { font-size: 0.95rem; color: #4a6878; }

/* ── FOUNDER ──────────────────────────────────────────────── */
.founder-wrap {
  padding-top: 1rem;
}
.founder-wrap .eyebrow { display: block; text-align: center; margin-bottom: 1.5rem; }
.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.founder-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.founder-photo-frame {
  width: 220px;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--white);
  border: 2px solid var(--green);
}
.founder-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.founder-photo-placeholder p {
  font-size: 0.85rem;
  font-weight: 600;
  color: #7a9aae;
  margin: 0;
}
/* Corner decorators */
.photo-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--orange);
  border-style: solid;
  border-width: 0;
}
.photo-corner--tl { top: 8px; left: 8px; border-top-width: 2px; border-left-width: 2px; border-radius: 3px 0 0 0; }
.photo-corner--br { bottom: 8px; right: 8px; border-bottom-width: 2px; border-right-width: 2px; border-radius: 0 0 3px 0; }

.founder-badge {
  text-align: center;
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  width: 100%;
}
.badge-role {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.badge-org {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.founder-bio-col h2 { margin-bottom: 1.25rem; }
.founder-bio-col p  { margin-bottom: 1.25rem; }

.founder-quote {
  border-left: 3px solid var(--green);
  padding: 1.25rem 1.5rem;
  background: rgba(0,170,91,.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 1.5rem;
}
.founder-quote p {
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
  margin: 0;
}

/* ── SHOP: DARK SECTION ───────────────────────────────────── */
.section-dark {
  background: var(--navy);
  padding: 80px 0;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.product-card {
  background: var(--white);
  border: 1px solid #d0dde6;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  box-shadow: var(--shadow);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card--featured {
  border-color: var(--green);
  border-width: 2px;
}
.product-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gradient);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  z-index: 2;
}

/* Product image areas */
.product-img-wrap {
  padding: 1.5rem;
  background: var(--light);
  border-bottom: 1px solid #d0dde6;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tee mockup */
.tee-mockup {
  width: 160px;
  height: 180px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tee-mockup--dark  { background: #0e1e28; border: 1px solid rgba(249,207,78,.2); }
.tee-mockup--light { background: #e8eef2; border: 1px solid rgba(2,48,71,.15); }
.tee-mockup--green { background: var(--white); border: 2px solid var(--green); }

.tee-logo {
  object-fit: contain;
}
.tee-logo--center {
  width: 130px;
  height: 140px;
}
.tee-logo--chest {
  width: 80px;
  height: 90px;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}
.tee-logo--chest-lg {
  width: 110px;
  height: 120px;
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

/* Sticker display */
.sticker-display {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
.sticker-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d0dde6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticker-item--green {
  background: var(--white);
  border: 2px solid var(--green);
}
.sticker-item--lg { width: 110px; height: 110px; }
.sticker-item--sm { width: 70px;  height: 70px; }
.sticker-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Product info */
.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.product-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.product-info h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0;
}
.product-info p {
  font-size: 0.88rem;
  color: #4a6878;
  flex: 1;
  margin: 0;
}
.product-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #d0dde6;
}

/* Buy Now inline order form */
.order-form {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #d0dde6;
  background: #f8fafb;
}
.order-form-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.order-form input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.5rem;
  border: 1px solid #c0cdd6;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
}
.order-form input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(251,133,0,0.15);
}
.order-form-btns {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.order-form .btn-cancel {
  background: transparent;
  border: 1px solid #c0cdd6;
  color: #4a6878;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
}
.order-form-msg {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}
.order-form-msg.success { color: var(--green); }
.order-form-msg.error { color: #d32f2f; }

.shop-cta {
  text-align: center;
  margin-top: 1rem;
}

.btn-lg {
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin: 0.5rem 0 1.25rem; }
.contact-intro {
  color: #4a6878;
  margin-bottom: 2rem;
}

.partner-list { display: flex; flex-direction: column; gap: 1.25rem; }
.partner-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.partner-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,170,91,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0,170,91,.2);
}
.partner-item h4 { font-size: 0.95rem; margin-bottom: 0.2rem; color: var(--navy); }
.partner-item p  { font-size: 0.85rem; color: #4a6878; margin: 0; }

/* Contact form */
.contact-form-col {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--green);
}
.contact-form h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: 0.4rem; }
.contact-form > p { font-size: 0.88rem; color: #7a9aae; margin-bottom: 1.75rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d0dde6;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(251,133,0,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a8bfcc; }

.form-msg {
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  display: none;
}
.form-msg.success {
  display: block;
  background: rgba(0,170,91,.1);
  color: #007a40;
  border: 1px solid rgba(0,170,91,.25);
}
.form-msg.error {
  display: block;
  background: rgba(220,53,69,.1);
  color: #b02030;
  border: 1px solid rgba(220,53,69,.2);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}
.footer-roots {
  width: 100%;
  height: 32px;
  overflow: hidden;
  line-height: 0;
}
.footer-roots svg { width: 100%; height: 100%; }

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 3rem 24px 2rem;
  flex-wrap: wrap;
}

.footer-logo-col { max-width: 220px; }
.footer-logo-wrap {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  font-style: italic;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-nav a:hover { color: var(--gold); }

.footer-address p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin: 0 0 0.25rem;
}
.footer-email {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-email:hover { color: var(--orange); }

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero          { flex-direction: column; text-align: center; padding-top: calc(var(--nav-h) + 40px); }
  .hero-sub      { margin: 0 auto 2rem; }
  .hero-btns     { justify-content: center; }
  .hero-visual   { flex: none; }
  .hero-logo-frame { width: 280px; height: 280px; }
  .utah-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .shop-grid     { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-photo-col { flex-direction: row; justify-content: flex-start; align-items: center; gap: 1.5rem; }
  .founder-photo-frame { width: 160px; height: 190px; flex-shrink: 0; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    transform: translateY(-110%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(249,207,78,.15);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu li { width: 100%; }

  /* Mobile dropdown */
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: rgba(255,255,255,.05);
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-width: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-dropdown.open .nav-dropdown-menu { max-height: 200px; }
  .nav-dropdown-menu .nav-link { padding-left: 2.5rem; }

  .nav-link {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-cta {
    margin: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.25rem;
    text-align: center;
  }

  .hero { padding: calc(var(--nav-h) + 30px) 20px 60px; gap: 2.5rem; }
  .hero-logo-frame { width: 220px; height: 220px; }

  .legacy-grid { grid-template-columns: 1fr; }
  .shop-grid   { grid-template-columns: 1fr; }

  .contact-form-col { padding: 1.75rem; }

  .footer-inner { flex-direction: column; gap: 2rem; padding: 2rem 20px; }
  .footer-logo-col { max-width: 100%; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 1.25rem; }

  .roots-divider { height: 60px; }

  .founder-photo-col { flex-direction: column; align-items: flex-start; }
  .founder-photo-frame { width: 140px; height: 170px; }
}

@media (max-width: 480px) {
  .btn { padding: 0.7rem 1.4rem; font-size: 0.9rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .utah-cta  { flex-direction: column; }
  .product-card { max-width: 340px; margin: 0 auto; }
}
