/* ============================================
   BRWN LABEL, MASTER STYLESHEET
   
   SHOPIFY INTEGRATION NOTES:
   - When ready, add Shopify Buy Button JS SDK in <head>
   - Replace .shopify-buy-btn links with Shopify product URLs
   - Or embed Shopify Buy Buttons directly into product cards
   - See <!-- SHOPIFY: --> comments in HTML files
   
   TO EDIT COLORS: Update CSS variables below.
   TO EDIT FONTS: Update Google Fonts link in each HTML <head>.
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --olive-deep: #3D4A2A;
  --olive-rich: #4A5A32;
  --olive-mid: #5C6B3F;
  --olive-light: #7A8B5A;
  --olive-pale: #A4B07E;
  --olive-cream: #D4DCC4;
  --olive-ghost: #EDF1E6;

  --brown-deep: #2C1810;
  --brown-rich: #5C3A2E;
  --brown-warm: #8B5E3C;
  --brown-light: #C4956A;
  --brown-cream: #E8D5C4;

  --gold-accent: #C9A96E;
  --gold-light: #E4D4A5;

  --off-white: #FAF7F4;
  --charcoal: #1A1A1A;
  --text-dark: #2C2420;
  --text-mid: #6B5B50;
  --text-light: #9A8A7E;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
.heading-xl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.04em;
}
.heading-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
}
.heading-md {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
}
.body-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 300;
}
.tag-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive-mid);
}
em { font-style: italic; color: var(--olive-mid); }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
  background: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(61, 74, 42, 0.08);
}
nav.nav-transparent {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}
nav.scrolled {
  background: rgba(250, 247, 244, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(44, 24, 16, 0.08);
}

.nav-logo {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-logo .gold { color: #C9A96E; }

/* Hero override */
nav.nav-transparent .nav-logo { color: var(--off-white); }
nav.nav-transparent .nav-logo .gold { color: #C9A96E; }
nav.nav-transparent .nav-links a { color: rgba(250, 247, 244, 0.7); }
nav.nav-transparent .nav-links a:hover { color: var(--off-white); }
nav.nav-transparent .mobile-menu-btn span { background: var(--off-white); }

/* Override back when scrolled */
nav.scrolled .nav-logo { color: var(--charcoal); }
nav.scrolled .nav-logo .gold { color: #C9A96E; }
nav.scrolled .nav-links a { color: var(--text-mid); }
nav.scrolled .nav-links a:hover { color: var(--olive-deep); }
nav.scrolled .mobile-menu-btn span { background: var(--olive-deep); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--olive-mid);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--olive-deep); }
.nav-links a:hover::after { width: 100%; }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  background: var(--off-white);
  border: 1px solid var(--olive-cream);
  padding: 1rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--text-mid);
  transition: all 0.2s;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover {
  color: var(--olive-deep);
  background: var(--olive-ghost);
  padding-left: 1.8rem;
}

.nav-cta {
  background: var(--olive-deep) !important;
  color: var(--off-white) !important;
  padding: 0.55rem 1.5rem !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
}
.nav-cta:hover { background: var(--olive-rich) !important; }
.nav-cta::after { display: none !important; }

/* SHOPIFY: Cart icon, will connect to Shopify cart later */
.nav-cart {
  position: relative;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text-mid);
  transition: color 0.3s;
}
.nav-cart:hover { color: var(--olive-deep); }
.nav-cart::after { display: none !important; }
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--olive-deep);
  color: var(--off-white);
  font-size: 0.55rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--olive-deep);
  transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--olive-deep);
  color: var(--off-white);
  padding: 1rem 2.8rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--olive-rich);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(61, 74, 42, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--olive-deep);
  padding: 1rem 2.8rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--olive-mid);
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-block;
}
.btn-secondary:hover {
  background: var(--olive-deep);
  color: var(--off-white);
  border-color: var(--olive-deep);
}

.btn-small {
  padding: 0.65rem 1.8rem;
  font-size: 0.7rem;
}

.btn-white {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(250, 247, 244, 0.25);
  padding: 1rem 2.8rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-block;
}
.btn-white:hover {
  border-color: var(--olive-pale);
  color: var(--olive-pale);
}

/* ===== PAGE HERO (for interior pages) ===== */
.page-hero {
  padding: 10rem 3rem 5rem;
  background: var(--olive-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(164, 176, 126, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.page-hero .tag-label { color: var(--olive-pale); margin-bottom: 1rem; display: block; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1rem;
  color: var(--olive-cream);
  font-weight: 300;
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 1.2rem 3rem;
  background: var(--olive-ghost);
  border-bottom: 1px solid var(--olive-cream);
}
.breadcrumbs a {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--olive-deep); }
.breadcrumbs span {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0 0.5rem;
}
.breadcrumbs .current {
  color: var(--olive-deep);
  font-weight: 500;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  border: 1px solid var(--olive-cream);
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  background: white;
}
.product-card:hover {
  border-color: var(--olive-mid);
  box-shadow: 0 15px 50px rgba(61, 74, 42, 0.08);
  transform: translateY(-4px);
}

/* EDIT: Replace background-image URLs with actual product photos */
.product-card-img {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}
.product-card:hover .product-card-img { filter: brightness(0.92); }

/* Olive overlay on hover */
.product-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--olive-deep);
  opacity: 0;
  transition: opacity 0.4s;
}
.product-card:hover .product-card-img::after { opacity: 0.08; }

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--olive-deep);
  color: var(--off-white);
  padding: 0.3rem 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}

.product-card-body { padding: 1.5rem; }
.product-card-brand {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive-mid);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.product-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--brown-deep);
  margin-bottom: 0.4rem;
}
.product-card-price {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--olive-deep);
  margin-bottom: 1rem;
}

/* SHOPIFY: This button will link to Shopify product or trigger Buy Button */
.product-card-btn {
  width: 100%;
  padding: 0.75rem;
  background: var(--off-white);
  border: 1px solid var(--olive-cream);
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive-deep);
  cursor: pointer;
  transition: all 0.3s;
}
.product-card-btn:hover {
  background: var(--olive-deep);
  color: var(--off-white);
  border-color: var(--olive-deep);
}

/* ===== BRAND/CREATOR CARD ===== */
.brand-card {
  border: 1px solid var(--olive-cream);
  padding: 2.5rem;
  transition: all 0.4s;
  background: white;
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--olive-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.brand-card:hover::before { transform: scaleX(1); }
.brand-card:hover {
  border-color: var(--olive-mid);
  box-shadow: 0 15px 50px rgba(61, 74, 42, 0.06);
  transform: translateY(-3px);
}

.brand-card-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.5rem;
}
.brand-card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-mid);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.brand-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--brown-deep);
  margin-bottom: 0.5rem;
}
.brand-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
}

/* ===== SECTION LAYOUTS ===== */
.section { padding: 6rem 3rem; max-width: 1300px; margin: 0 auto; }
.section-wide { padding: 6rem 3rem; }
.section-olive { background: var(--olive-deep); }
.section-ghost { background: var(--olive-ghost); }
.section-cream { background: var(--off-white); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.section-header .tag-label { margin-bottom: 1rem; display: block; }
.section-header h2 { color: var(--brown-deep); }
.section-olive .section-header h2 { color: var(--off-white); }
.section-olive .section-header .tag-label { color: var(--olive-pale); }

/* ===== CATEGORY CARDS (used on homepage) ===== */
.brwn-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.brwn-card {
  position: relative;
  height: 340px;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.brwn-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.6);
}
.brwn-card:hover .brwn-card-bg {
  transform: scale(1.08);
  filter: brightness(0.4);
}
.brwn-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--olive-deep);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}
.brwn-card:hover .brwn-card-overlay { opacity: 0.25; }
.brwn-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
}
.brwn-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--off-white);
  margin-bottom: 0.3rem;
}
.brwn-card h3 .brwn-prefix { color: var(--olive-pale); }
.brwn-card p {
  font-size: 0.78rem;
  color: rgba(250, 247, 244, 0.6);
  font-weight: 300;
}
.brwn-card-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(250, 247, 244, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
  font-size: 0.85rem;
  transition: all 0.4s ease;
  z-index: 3;
}
.brwn-card:hover .brwn-card-arrow {
  background: var(--olive-mid);
  border-color: var(--olive-mid);
  transform: rotate(-45deg);
}

/* ===== MARKETPLACE CARDS ===== */
.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}
.market-card {
  position: relative;
  height: 280px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--olive-cream);
  transition: border-color 0.4s;
  display: block;
}
.market-card:hover { border-color: var(--olive-mid); }
.market-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
  filter: brightness(0.65);
}
.market-card:hover .market-card-bg { transform: scale(1.06); }
.market-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--olive-deep);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}
.market-card:hover::after { opacity: 0.2; }
.market-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.market-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--off-white);
}
.market-card p {
  font-size: 0.75rem;
  color: rgba(250, 247, 244, 0.6);
  font-weight: 300;
}

/* ===== NEWSLETTER CTA ===== */
.newsletter-cta {
  padding: 6rem 3rem;
  background: var(--olive-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(164, 176, 126, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
}
.newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
  margin: 0 auto;
}
.newsletter-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.newsletter-content h2 em { color: var(--olive-pale); }
.newsletter-content p {
  font-size: 0.9rem;
  color: var(--olive-cream);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.email-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}
.email-form input {
  flex: 1;
  padding: 0.9rem 1.4rem;
  background: rgba(250, 247, 244, 0.07);
  border: 1px solid rgba(250, 247, 244, 0.15);
  border-right: none;
  color: var(--off-white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}
.email-form input::placeholder { color: rgba(250, 247, 244, 0.35); }
.email-form input:focus { border-color: var(--olive-pale); }
.email-form button {
  padding: 0.9rem 1.8rem;
  background: var(--olive-pale);
  color: var(--olive-deep);
  border: 1px solid var(--olive-pale);
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.email-form button:hover { background: var(--olive-cream); }

/* ===== FOOTER ===== */
footer {
  padding: 5rem 3rem 2.5rem;
  background: var(--charcoal);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(250, 247, 244, 0.06);
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 1.2rem; }
.footer-brand .nav-logo { color: var(--off-white); }
.footer-brand .nav-logo .gold { color: #C9A96E; }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(250, 247, 244, 0.4);
  line-height: 1.7;
  font-weight: 300;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-pale);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(250, 247, 244, 0.4);
  font-weight: 300;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--off-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2.5rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(250, 247, 244, 0.2);
  font-weight: 300;
}
.footer-socials { display: flex; gap: 1.2rem; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(250, 247, 244, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 247, 244, 0.4);
  font-size: 0.8rem;
  transition: all 0.3s;
}
.footer-socials a:hover { border-color: var(--olive-pale); color: var(--olive-pale); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== MARQUEE ===== */
.mission-strip {
  background: var(--olive-deep);
  padding: 1.2rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--olive-cream);
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 0 2rem;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 600px;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--olive-cream);
  background: white;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--olive-mid); }
.form-group textarea { min-height: 150px; resize: vertical; }

/* ===== FOUNDER PAGE ===== */
.founder-hero-img {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center top;
  /* EDIT: Replace with your founder photo */
  background-color: var(--olive-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-hero-placeholder {
  text-align: center;
  color: var(--olive-cream);
}
.founder-hero-placeholder .icon { font-size: 4rem; opacity: 0.3; margin-bottom: 1rem; }
.founder-hero-placeholder p {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.4;
}

/* ===== UTILITIES ===== */
.container { max-width: 1300px; margin: 0 auto; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .brwn-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .brwn-grid { grid-template-columns: repeat(2, 1fr); }
  .market-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--off-white);
    padding: 2rem;
    border-bottom: 1px solid var(--olive-cream);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .mobile-menu-btn { display: flex; }
  .brwn-grid { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .section, .section-wide { padding: 4rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 4rem; }
  .email-form { flex-direction: column; }
  .email-form input { border-right: 1px solid rgba(250, 247, 244, 0.15); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
  .breadcrumbs { padding: 1rem 1.5rem; }
}
</style>

/* ===== SHOPIFY OVERRIDES ===== */
/* Make the Shopify floating cart toggle subtle - positioned but small */
.shopify-buy-frame--toggle {
  z-index: 10000 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
}
/* Style the Shopify cart drawer */
.shopify-buy-frame--cart { z-index: 10001 !important; }
