/* =====================================================
   ALLIANCE STREET ORGANIC FARMS — MAIN STYLESHEET
   ===================================================== */

/* --- Custom Properties --- */
:root {
  --color-primary:        #1a3a14;
  --color-primary-mid:    #2d5a27;
  --color-primary-dark:   #0d2409;
  --color-bg-deep:        #0f1e0c;
  --color-bg-darker:      #0a1508;
  --color-bg-black:       #0f0a04;
  --color-bg-dark-modal:  #122b0e;
  --color-muted-green:    #e8f0e4;
  --color-accent-green:   #7a9e6d;
  --color-secondary:      #c8962a;
  --color-warm-bg:        #faf6ef;
  --color-body-text:      #5c3d1e;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Lato', sans-serif; font-weight: 400; color: var(--color-body-text); background: #fff; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
.font-heading { font-family: 'Playfair Display', serif; }
.font-script  { font-family: 'Dancing Script', cursive; }

/* --- Keyframes --- */
@keyframes particleDrift {
  from { transform: translateY(0);       opacity: 0.3; }
  to   { transform: translateY(-100vh);  opacity: 0;   }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideDown {
  from { transform: translateY(-80px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0);   }
  50%       { transform: translateY(6px); }
}

/* --- Scroll Progress Bar --- */
.progress-bar {
  position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 200;
  background: linear-gradient(to right, #c8962a, #e8b848, #c8962a);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.05s linear;
}

/* --- Navbar --- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  animation: slideDown 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}
.site-header.scrolled {
  background: rgba(15,30,12,0.96); backdrop-filter: blur(16px);
  padding: 0.75rem 0; box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-brand img { height: 44px; width: auto; object-fit: contain; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: #fff; line-height: 1.2; letter-spacing: 0.02em; }
.nav-brand-sub  { font-size: 0.6rem; letter-spacing: 0.3em; color: rgba(200,150,42,0.8); text-transform: uppercase; font-weight: 700; }
.nav-links { display: none; align-items: center; gap: 0.25rem; }
.nav-link {
  position: relative; padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.7); transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active { color: var(--color-secondary); }
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0.75rem; right: 0.75rem; height: 1px;
  background: var(--color-secondary); transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
}
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-order-btn {
  margin-left: 1rem; padding: 0.5rem 1.25rem; border-radius: 9999px;
  border: 1px solid var(--color-secondary); color: var(--color-secondary);
  font-size: 0.875rem; font-weight: 700; transition: background 0.3s, color 0.3s;
}
.nav-order-btn:hover { background: var(--color-secondary); color: #fff; }
.nav-hamburger { background: none; border: none; cursor: pointer; color: #fff; padding: 0.5rem; display: flex; align-items: center; }
.nav-hamburger svg { width: 22px; height: 22px; }
.mobile-menu {
  display: none; flex-direction: column; align-items: center; padding: 2rem 0; gap: 0.25rem;
  background: rgba(10,21,8,0.98); backdrop-filter: blur(16px); border-top: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  width: 100%; text-align: center; padding: 0.75rem 1rem; font-size: 1rem;
  color: rgba(255,255,255,0.8); transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--color-secondary); font-weight: 700; }
.mobile-menu .mobile-order-btn {
  margin-top: 1rem; padding: 0.75rem 2rem; border-radius: 9999px;
  border: 1px solid var(--color-secondary); color: var(--color-secondary); font-weight: 700;
}
.mobile-menu .mobile-order-btn:hover { background: var(--color-secondary); color: #fff; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
}

/* --- Fade-in on scroll --- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.7s ease; }
.fade-in.visible { opacity: 1; }

/* --- Section Utility --- */
.section-label {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.section-label-line { display: block; height: 1px; width: 40px; background: rgba(200,150,42,0.6); }
.section-label-text { color: var(--color-secondary); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 700; }
.section-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; will-change: transform;
}
.hero-bg img {
  width: 100%; height: 115%; object-fit: cover; object-position: center;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,31,8,0.8), rgba(26,58,20,0.7), rgba(13,36,9,0.9));
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-particle {
  position: absolute; bottom: 0; width: 1px; height: 1px;
  border-radius: 50%; background: rgba(200,150,42,0.3);
}
.hero-content {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; z-index: 10; padding: 6rem 1.5rem 3rem; text-align: center;
}
.hero-label-row {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease 0.3s both;
}
.hero-label-line { display: block; height: 1px; width: 48px; background: rgba(200,150,42,0.7); }
.hero-label-text { color: var(--color-secondary); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; }
.hero-script {
  font-family: 'Dancing Script', cursive; font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--color-secondary); margin-bottom: 1rem; drop-shadow: 0 2px 8px rgba(0,0,0,0.3);
  animation: fadeUp 0.6s ease 0.4s both;
}
.hero-headline {
  font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 7vw, 5rem);
  color: #fff; line-height: 1.1; max-width: 900px; margin: 0 auto 1rem;
  animation: fadeUp 0.7s ease 0.5s both;
}
.hero-headline .gold { color: var(--color-secondary); font-style: italic; }
.hero-divider {
  width: 96px; height: 2px; margin: 1.5rem auto;
  background: linear-gradient(to right, transparent, var(--color-secondary), transparent);
  animation: fadeIn 0.8s ease 0.65s both;
}
.hero-desc {
  color: rgba(255,255,255,0.75); font-size: 1.125rem; max-width: 640px; margin: 0 auto 2.5rem;
  line-height: 1.7; font-weight: 300; animation: fadeUp 0.6s ease 0.7s both;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2rem; animation: fadeUp 0.6s ease 0.8s both; }
.hero-cta-primary {
  padding: 1rem 2.25rem; border-radius: 9999px; font-weight: 600; font-size: 1rem;
  background: linear-gradient(to right, #c8962a, #a37920); color: #fff;
  box-shadow: 0 8px 24px rgba(200,150,42,0.3); transition: box-shadow 0.3s, transform 0.2s;
}
.hero-cta-primary:hover { box-shadow: 0 12px 32px rgba(200,150,42,0.5); transform: translateY(-2px); }
.hero-cta-secondary {
  padding: 1rem 2.25rem; border-radius: 9999px; font-weight: 600; font-size: 1rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: #fff;
  backdrop-filter: blur(4px); transition: background 0.3s, transform 0.2s;
}
.hero-cta-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; animation: fadeIn 0.8s ease 0.9s both; }
.hero-badge {
  padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 500;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}
.hero-stats {
  position: relative; z-index: 10;
  background: rgba(0,0,0,0.3); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeIn 0.8s ease 1s both;
}
.hero-stats-inner {
  max-width: 900px; margin: 0 auto; padding: 0 1rem;
  display: grid; grid-template-columns: repeat(2, 1fr);
}
.hero-stat {
  text-align: center; padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:nth-child(2n) { border-right: none; }
.hero-stat-value { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--color-secondary); }
.hero-stat-label { color: rgba(255,255,255,0.6); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.25rem; }
.hero-scroll {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  pointer-events: none; animation: fadeIn 1s ease 1.4s both;
}
.hero-scroll-text { color: rgba(255,255,255,0.3); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); animation: bounce 1.5s ease-in-out infinite; }

@media (min-width: 768px) {
  .hero-stats-inner { grid-template-columns: repeat(4, 1fr); }
  .hero-stat { border-right: 1px solid rgba(255,255,255,0.1); }
  .hero-stat:last-child { border-right: none; }
}

/* ===================================================
   PRODUCTS SECTION
   =================================================== */
.products-section { padding: 7rem 0; background: var(--color-warm-bg); position: relative; }
.products-section::before {
  content: ''; position: absolute; inset: 0; opacity: 0.02; pointer-events: none;
  background-image: linear-gradient(45deg, #1a3a14 1px, transparent 1px);
  background-size: 20px 20px;
}
.products-header { text-align: center; margin-bottom: 5rem; }
.products-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--color-primary); }
.products-header p { margin-top: 1rem; color: rgba(92,61,30,0.7); font-size: 1.125rem; font-weight: 300; }
.products-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.product-card {
  position: relative; border-radius: 16px; overflow: hidden; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.18); }
.product-card-img { position: relative; height: 224px; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-card-img img { transform: scale(1.1); }
.product-card-overlay {
  position: absolute; inset: 0; opacity: 0.6; transition: opacity 0.3s;
}
.product-card:hover .product-card-overlay { opacity: 0.7; }
.product-card-hover-hint {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .product-card-hover-hint { opacity: 1; }
.product-card-hover-hint span {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  background: rgba(200,150,42,0.9); color: #fff; padding: 0.25rem 0.75rem; border-radius: 9999px;
}
.product-card-tag {
  position: absolute; top: 12px; right: 12px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  background: rgba(0,0,0,0.5); color: #fff; padding: 0.25rem 0.5rem; border-radius: 9999px;
}
.product-card-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; color: #fff;
}
.product-card-info h3 { font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.product-card-info p { color: rgba(255,255,255,0.75); font-size: 0.75rem; line-height: 1.5; }

@media (min-width: 640px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .products-grid { grid-template-columns: repeat(5, 1fr); } }

/* ===================================================
   BREEDS SECTION
   =================================================== */
.breeds-section { padding: 6rem 0; background: #fff; }
.breeds-header { text-align: center; margin-bottom: 4rem; }
.breeds-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--color-primary); }
.breeds-tabs { display: flex; justify-content: center; margin-bottom: 3rem; }
.breeds-tab-container {
  display: flex; background: #fff; border-radius: 9999px; padding: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05);
  position: relative;
}
.tab-btn {
  position: relative; z-index: 1; padding: 0.625rem 1.5rem; border-radius: 9999px;
  font-size: 0.9rem; font-weight: 600; cursor: pointer; border: none; background: none;
  color: #888; transition: color 0.2s; white-space: nowrap;
}
.tab-btn.active { color: #fff; }
.tab-pill {
  position: absolute; top: 6px; height: calc(100% - 12px); border-radius: 9999px;
  background: var(--color-secondary); box-shadow: 0 2px 8px rgba(200,150,42,0.4);
  transition: left 0.3s ease, width 0.3s ease; z-index: 0;
}
.breeds-info-banner {
  background: rgba(26,58,20,0.05); border: 1px solid rgba(26,58,20,0.2);
  color: var(--color-primary); border-radius: 12px; padding: 1rem 1.5rem;
  margin-bottom: 2rem; text-align: center; font-size: 0.875rem; font-weight: 500;
  display: none;
}
.breeds-info-banner.show { display: block; }
.breeds-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.breeds-grid-panel { display: none; }
.breeds-grid-panel.active { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.breed-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.05);
  cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.breed-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); border-color: rgba(200,150,42,0.2); }
.breed-card-img { position: relative; height: 200px; overflow: hidden; }
.breed-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.breed-card:hover .breed-card-img img { transform: scale(1.05); }
.breed-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); }
.breed-card-badge {
  position: absolute; top: 10px; right: 10px;
  background: #fbbf24; color: #78350f; font-size: 0.6rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: 9999px; box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.breed-card-name-overlay {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
  color: #fff; font-size: 0.6rem; padding: 0.2rem 0.5rem;
  border-radius: 9999px; border: 1px solid rgba(255,255,255,0.3);
}
.breed-card-body { padding: 1.25rem; }
.breed-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--color-primary); margin-bottom: 0.5rem; }
.breed-card-body p { color: rgba(92,61,30,0.7); font-size: 0.8rem; line-height: 1.5; margin-bottom: 0.75rem; }
.breed-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.breed-tag { font-size: 0.65rem; background: rgba(26,58,20,0.08); color: var(--color-primary); padding: 0.2rem 0.6rem; border-radius: 6px; font-weight: 500; }

@media (min-width: 640px)  { .breeds-grid-panel.active { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .breeds-grid-panel.active { grid-template-columns: repeat(4, 1fr); } }

/* ===================================================
   DESI EGGS SECTION
   =================================================== */
.eggs-section { padding: 7rem 0; background: var(--color-warm-bg); overflow: hidden; position: relative; }
.eggs-section::before {
  content: ''; position: absolute; inset: 0; opacity: 0.015; pointer-events: none;
  background-image: radial-gradient(circle at 2px 2px, #1a3a14 1px, transparent 1px);
  background-size: 32px 32px;
}
.eggs-grid { display: grid; grid-template-columns: 1fr; gap: 5rem; align-items: center; }
.eggs-benefits { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.eggs-benefit { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; font-weight: 500; color: rgba(26,58,20,0.85); }
.eggs-benefit-dash { display: block; width: 16px; height: 1px; background: var(--color-secondary); flex-shrink: 0; }
.eggs-image-wrap { position: relative; height: 224px; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.eggs-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.eggs-image-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff; font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 700;
}
.eggs-compare { background: #fff; border-radius: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05); overflow: hidden; }
.eggs-compare-grid { display: grid; grid-template-columns: 1fr 1fr; }
.eggs-compare-ours { padding: 1.5rem; background: rgba(26,58,20,0.05); border-right: 1px solid rgba(0,0,0,0.05); }
.eggs-compare-theirs { padding: 1.5rem; opacity: 0.5; }
.eggs-compare-title-good { color: var(--color-primary); font-weight: 700; font-size: 0.8rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.eggs-compare-title-bad  { color: #9ca3af; font-weight: 700; font-size: 0.8rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.eggs-compare-list { display: flex; flex-direction: column; gap: 0.625rem; font-size: 0.8rem; }
.eggs-compare-ours .eggs-compare-list li { display: flex; align-items: center; gap: 0.5rem; color: rgba(26,58,20,0.8); }
.eggs-compare-ours .eggs-compare-list li::before { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--color-secondary); flex-shrink: 0; }
.eggs-compare-theirs .eggs-compare-list li { color: #9ca3af; }
.eggs-counters { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.eggs-counter-card { background: var(--color-primary); border-radius: 12px; padding: 1.5rem; text-align: center; }
.eggs-counter-value { font-family: 'Playfair Display', serif; font-size: 2.25rem; font-weight: 700; color: var(--color-secondary); margin-bottom: 0.25rem; }
.eggs-counter-label { color: rgba(255,255,255,0.6); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

@media (min-width: 1024px) { .eggs-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

/* ===================================================
   GOATS SECTION
   =================================================== */
.goats-section { padding: 7rem 0; background: #fff; position: relative; }
.goats-section::before {
  content: ''; position: absolute; inset: 0; opacity: 0.03; pointer-events: none;
  background-image: linear-gradient(90deg, #1a3a14 1px, transparent 1px), linear-gradient(#1a3a14 1px, transparent 1px);
  background-size: 24px 24px;
}
.goats-header { text-align: center; margin-bottom: 5rem; }
.goats-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--color-primary); }
.goats-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
.goat-card {
  border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08); cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.goat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.12); }
.goat-card-img { position: relative; height: 224px; overflow: hidden; }
.goat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.goat-card:hover .goat-card-img img { transform: scale(1.05); }
.goat-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); }
.goat-card-img-hover {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; background: rgba(0,0,0,0.2);
}
.goat-card:hover .goat-card-img-hover { opacity: 1; }
.goat-card-img-hover span { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 700; }
.goat-card-tag-overlay { position: absolute; top: 1rem; left: 1rem; font-size: 0.75rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 9999px; }
.goat-card-name-overlay { position: absolute; bottom: 1rem; left: 1.25rem; font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; font-weight: 700; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.goat-card-body { padding: 1.75rem; background: var(--color-warm-bg); }
.goat-card-body p { color: rgba(92,61,30,0.7); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; }
.goat-traits { display: flex; flex-direction: column; gap: 0.625rem; }
.goat-trait { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; font-weight: 500; color: var(--color-primary); }
.goat-trait-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.goat-milk-callout {
  background: var(--color-primary); border-radius: 24px; padding: 2.5rem 3.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 2.5rem;
}
.goat-milk-img { width: 128px; height: 128px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 4px solid rgba(200,150,42,0.5); box-shadow: 0 8px 24px rgba(0,0,0,0.2); ring: 4px solid rgba(200,150,42,0.1); }
.goat-milk-img img { width: 100%; height: 100%; object-fit: cover; }
.goat-milk-text { flex: 1; text-align: center; }
.goat-milk-text h3 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.goat-milk-text p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.6; margin-bottom: 1.75rem; }
.goat-milk-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.goat-milk-tag { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); font-size: 0.75rem; font-weight: 600; padding: 0.5rem 1rem; border-radius: 9999px; }

@media (min-width: 1024px) {
  .goats-grid { grid-template-columns: repeat(2, 1fr); }
  .goat-milk-callout { flex-direction: row; }
  .goat-milk-text { text-align: left; }
  .goat-milk-tags { justify-content: flex-start; }
}

/* ===================================================
   WHY ORGANIC SECTION
   =================================================== */
.why-section { padding: 7rem 0; background: var(--color-primary); color: #fff; position: relative; overflow: hidden; }
.why-section::before {
  content: ''; position: absolute; inset: 0; opacity: 0.05; pointer-events: none;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 40px 40px;
}
.why-header { text-align: center; margin-bottom: 5rem; max-width: 768px; margin-left: auto; margin-right: auto; }
.why-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 1.5rem; }
.why-header p { color: rgba(255,255,255,0.6); font-size: 1.125rem; font-weight: 300; font-style: italic; line-height: 1.7; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.why-card {
  position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; min-height: 280px;
  border: 1px solid rgba(255,255,255,0.1); transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: rgba(200,150,42,0.5); transform: translateY(-6px) scale(1.02); }
.why-card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.7s ease;
}
.why-card:hover .why-card-bg { transform: scale(1.1); }
.why-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,36,9,0.95), rgba(26,58,20,0.7), rgba(26,58,20,0.3)); }
.why-card-overlay2 { position: absolute; inset: 0; background: rgba(26,58,20,0.2); transition: background 0.4s; }
.why-card:hover .why-card-overlay2 { background: transparent; }
.why-card-content { position: relative; z-index: 10; padding: 2rem; display: flex; flex-direction: column; height: 100%; min-height: 280px; justify-content: space-between; }
.why-card-num { color: rgba(200,150,42,0.9); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1rem; }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; line-height: 1.3; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.875rem; line-height: 1.6; }
.why-card-readmore { display: flex; align-items: center; gap: 0.5rem; color: rgba(200,150,42,0.8); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0; transition: opacity 0.3s; margin-top: 1.5rem; }
.why-card:hover .why-card-readmore { opacity: 1; }

@media (min-width: 768px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===================================================
   ABOUT SECTION
   =================================================== */
.about-section { padding: 7rem 0; background: var(--color-warm-bg); position: relative; }
.about-section::before {
  content: ''; position: absolute; inset: 0; opacity: 0.02; pointer-events: none;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, #c8962a 10px, #c8962a 11px);
}
.about-grid { display: grid; grid-template-columns: 1fr; gap: 5rem; align-items: center; }
.about-headline { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--color-primary); margin-bottom: 2rem; line-height: 1.2; }
.about-paras { display: flex; flex-direction: column; gap: 1.25rem; color: rgba(92,61,30,0.75); font-size: 1rem; line-height: 1.7; font-weight: 300; margin-bottom: 2.5rem; }
.about-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.about-value {
  display: flex; align-items: center; gap: 0.75rem;
  background: #fff; border: 1px solid rgba(26,58,20,0.1); border-radius: 12px; padding: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04); font-size: 0.875rem; font-weight: 600; color: var(--color-primary);
}
.about-image-outer { position: relative; padding: 24px; }
.about-image-inner { position: relative; border-radius: 24px; overflow: hidden; height: 480px; box-shadow: 0 16px 48px rgba(0,0,0,0.2); }
.about-image-inner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.about-image-inner:hover img { transform: scale(1.05); }
.about-image-inner-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,36,9,0.5), transparent); }
.about-badge-bl {
  position: absolute; bottom: 0; left: 0;
  background: var(--color-primary); padding: 1.5rem; border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3); max-width: 200px;
}
.about-badge-bl .badge-num { font-family: 'Playfair Display', serif; font-size: 1.875rem; font-weight: 700; color: var(--color-secondary); }
.about-badge-bl .badge-label { color: rgba(255,255,255,0.7); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 0.25rem; }
.about-badge-tr {
  position: absolute; top: 0; right: 0;
  background: var(--color-secondary); padding: 1.5rem; border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3); max-width: 200px;
}
.about-badge-tr .badge-num { font-family: 'Playfair Display', serif; font-size: 1.875rem; font-weight: 700; color: #fff; }
.about-badge-tr .badge-label { color: rgba(255,255,255,0.8); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 0.25rem; }

@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

/* ===================================================
   TEAM SECTION
   =================================================== */
.team-section { padding: 7rem 0; background: var(--color-warm-bg); position: relative; }
.team-section::before {
  content: ''; position: absolute; inset: 0; opacity: 0.02; pointer-events: none;
  background-image: radial-gradient(circle, #1a3a14 1px, transparent 1px);
  background-size: 28px 28px;
}
.team-header { text-align: center; margin-bottom: 5rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.team-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--color-primary); margin-bottom: 1.5rem; }
.team-header p { color: rgba(92,61,30,0.65); font-size: 1rem; font-weight: 300; font-style: italic; line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 900px; margin: 0 auto; }
.team-card {
  background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px;
  padding: 2.5rem; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,58,20,0.12); }
.team-avatar {
  width: 96px; height: 96px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.team-avatar span { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #fff; }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--color-primary); margin-bottom: 0.25rem; }
.team-role { color: var(--color-secondary); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.5rem; }
.team-divider { width: 40px; height: 1px; background: rgba(200,150,42,0.4); margin: 0 auto 1.5rem; }
.team-quote { color: rgba(92,61,30,0.65); font-style: italic; font-weight: 300; font-size: 0.875rem; line-height: 1.7; }

@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===================================================
   CONTACT CTA SECTION
   =================================================== */
.contact-section { padding: 7rem 0; background: var(--color-primary); position: relative; overflow: hidden; }
.contact-section::before {
  content: ''; position: absolute; inset: 0; opacity: 0.05; pointer-events: none;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 48px 48px;
}
.contact-section::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(200,150,42,0.4), transparent); }
.contact-inner { max-width: 768px; margin: 0 auto; text-align: center; position: relative; z-index: 10; padding: 0 1.5rem; }
.contact-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.75rem); color: #fff; font-weight: 700; line-height: 1.15; margin-bottom: 1.5rem; }
.contact-inner h2 span { color: var(--color-secondary); font-style: italic; }
.contact-inner > p { color: rgba(255,255,255,0.6); font-size: 1.125rem; font-weight: 300; line-height: 1.7; margin-bottom: 3rem; }
.contact-btns { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 3rem; }
.contact-btn-phone {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2rem; background: var(--color-secondary); color: #fff;
  border-radius: 9999px; font-weight: 600; font-size: 1rem;
  box-shadow: 0 8px 24px rgba(200,150,42,0.3); transition: box-shadow 0.3s, transform 0.2s;
}
.contact-btn-phone:hover { box-shadow: 0 12px 32px rgba(200,150,42,0.5); transform: translateY(-2px); }
.contact-btn-email {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; border-radius: 9999px; font-weight: 600; font-size: 1rem;
  backdrop-filter: blur(4px); transition: background 0.3s, transform 0.2s;
}
.contact-btn-email:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.contact-footer-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; color: rgba(255,255,255,0.35); font-size: 0.875rem; }
.contact-footer-tags span { display: flex; align-items: center; gap: 0.5rem; }
.contact-footer-tags span::before { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: rgba(200,150,42,0.6); }

@media (min-width: 640px) { .contact-btns { flex-direction: row; justify-content: center; } }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer { background: var(--color-bg-black); padding: 4rem 0; text-align: center; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--color-secondary); margin-bottom: 0.5rem; }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 2.5rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 3rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--color-secondary); }
.footer-social { display: flex; justify-content: center; gap: 2rem; margin-bottom: 3rem; }
.footer-social a { color: rgba(255,255,255,0.7); font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.footer-social a:hover { color: #fff; }
.footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.footer-contact a { color: rgba(255,255,255,0.4); font-size: 0.875rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--color-secondary); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.75rem; }

/* ===================================================
   MODALS (shared base)
   =================================================== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal-panel {
  background: #fff; border-radius: 24px; overflow: hidden;
  width: 100%; max-width: 672px; box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  transform: scale(0.95); transition: transform 0.25s ease;
  max-height: 90vh; overflow-y: auto;
}
.modal-backdrop.open .modal-panel { transform: scale(1); }
.modal-img { position: relative; height: 320px; overflow: hidden; flex-shrink: 0; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); }
.modal-close-btn {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.9); border: none; cursor: pointer; border-radius: 50%;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #333; transition: background 0.2s;
}
.modal-close-btn:hover { background: #fff; }
.modal-body { padding: 2.5rem; }

/* Product Modal */
.product-modal-name { font-family: 'Playfair Display', serif; font-size: 2.25rem; font-weight: 700; color: var(--color-primary); margin-bottom: 0.5rem; }
.product-modal-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; background: rgba(200,150,42,0.15); color: var(--color-secondary); padding: 0.25rem 0.75rem; border-radius: 9999px; margin-bottom: 1rem; }
.product-modal-desc { color: rgba(92,61,30,0.7); font-size: 1.125rem; line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }
.product-modal-attrs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.product-modal-attr { background: var(--color-warm-bg); border-radius: 12px; padding: 1rem; border: 1px solid rgba(26,58,20,0.1); }
.product-modal-attr-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-secondary); margin-bottom: 0.5rem; }
.product-modal-attr-val { font-size: 0.875rem; color: var(--color-primary); }
.product-modal-cta {
  display: block; width: 100%; padding: 1rem; text-align: center;
  background: linear-gradient(to right, var(--color-secondary), #a37920); color: #fff;
  font-weight: 700; border-radius: 12px; font-size: 1rem;
  box-shadow: 0 4px 16px rgba(200,150,42,0.2); transition: box-shadow 0.3s, transform 0.2s;
}
.product-modal-cta:hover { box-shadow: 0 8px 24px rgba(200,150,42,0.4); transform: scale(1.02); }

/* Breed Modal */
#breed-modal .modal-img { height: 224px; }
#breed-modal .modal-img-overlay { background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); }
.breed-modal-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: #fbbf24; color: #78350f; font-size: 0.75rem; font-weight: 700;
  padding: 0.3rem 0.75rem; border-radius: 9999px; box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.breed-modal-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--color-primary); margin-bottom: 0.75rem; }
.breed-modal-desc { color: rgba(92,61,30,0.7); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.breed-modal-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.breed-modal-tag { background: rgba(26,58,20,0.1); color: var(--color-primary); font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 9999px; }
.breed-modal-cta {
  display: block; width: 100%; padding: 0.75rem; text-align: center;
  background: var(--color-secondary); color: #fff; font-weight: 700; border-radius: 12px;
  font-size: 0.9rem; transition: opacity 0.2s;
}
.breed-modal-cta:hover { opacity: 0.9; }

/* Goat Modal */
#goat-modal .modal-panel { max-width: 672px; }
#goat-modal .modal-img { height: 240px; }
.goat-modal-tag { position: absolute; top: 1rem; left: 1rem; font-size: 0.75rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 9999px; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.goat-modal-name-block { position: absolute; bottom: 1.25rem; left: 1.5rem; right: 1.5rem; }
.goat-modal-name-block h3 { font-family: 'Playfair Display', serif; font-size: 1.875rem; color: #fff; font-weight: 700; text-shadow: 0 1px 4px rgba(0,0,0,0.5); margin-bottom: 0.25rem; }
.goat-modal-name-block p { color: rgba(255,255,255,0.7); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.goat-modal-scroll { padding: 1.75rem; display: flex; flex-direction: column; gap: 1.5rem; }
.goat-modal-fullDesc { color: rgba(92,61,30,0.75); font-size: 0.875rem; line-height: 1.7; }
.goat-modal-section-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--color-primary); margin-bottom: 0.75rem; }
.goat-facts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.goat-fact-card { border-radius: 12px; padding: 0.875rem; }
.goat-fact-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; margin-bottom: 0.25rem; }
.goat-fact-value { font-size: 0.875rem; font-weight: 600; color: var(--color-primary); }
.goat-nutrition-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.goat-nutrition-card { text-align: center; border-radius: 12px; padding: 0.75rem 0.5rem; border: 1px solid rgba(0,0,0,0.06); }
.goat-nutrition-value { font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 700; }
.goat-nutrition-label { font-size: 0.7rem; font-weight: 600; color: var(--color-primary); margin-top: 0.25rem; }
.goat-nutrition-per { font-size: 0.6rem; color: rgba(92,61,30,0.5); }
.goat-traits-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.goat-trait-item { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; font-weight: 500; color: var(--color-primary); }
.goat-products-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.goat-product-tag { font-size: 0.75rem; font-weight: 600; padding: 0.4rem 0.875rem; border-radius: 9999px; border-width: 1px; border-style: solid; }
.goat-why-callout { border-radius: 16px; padding: 1.25rem; }
.goat-why-title { font-family: 'Playfair Display', serif; font-size: 0.875rem; font-weight: 700; margin-bottom: 0.5rem; }
.goat-why-text { font-size: 0.875rem; line-height: 1.6; color: rgba(26,58,20,0.75); }
.goat-modal-close-wrap { padding: 1rem 1.75rem; border-top: 1px solid rgba(0,0,0,0.06); flex-shrink: 0; }
.goat-modal-close-btn { width: 100%; padding: 0.75rem; border-radius: 12px; font-weight: 600; color: #fff; font-size: 0.875rem; border: none; cursor: pointer; transition: opacity 0.2s; }
.goat-modal-close-btn:hover { opacity: 0.85; }

/* Why Organic Modal */
#why-modal .modal-panel { background: #122b0e; border: 1px solid rgba(255,255,255,0.1); max-height: 90vh; overflow-y: auto; }
#why-modal .modal-img { height: 224px; }
#why-modal .modal-img-overlay { background: linear-gradient(to top, #122b0e, rgba(18,43,14,0.3), transparent); }
#why-modal .modal-close-btn { background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2); color: #fff; }
#why-modal .modal-close-btn:hover { background: rgba(0,0,0,0.8); }
.why-modal-num-overlay { position: absolute; bottom: 1rem; left: 2rem; right: 2rem; }
.why-modal-num { color: rgba(200,150,42,0.8); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; }
.why-modal-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-top: 0.25rem; }
.why-modal-body { padding: 2rem; }
.why-modal-body p { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.7; margin-bottom: 0.75rem; }
.why-modal-bullets { list-style: none; margin-top: 0.5rem; margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.why-modal-bullets li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.why-modal-bullets li::before { content: '✦'; color: var(--color-secondary); flex-shrink: 0; margin-top: 0.1rem; }
.why-modal-actions { display: flex; gap: 0.75rem; margin-top: 2rem; }
.why-modal-talk-btn {
  flex: 1; background: var(--color-secondary); color: var(--color-primary);
  font-size: 0.875rem; font-weight: 700; padding: 0.75rem 1.5rem;
  border-radius: 9999px; text-align: center; transition: opacity 0.2s;
}
.why-modal-talk-btn:hover { opacity: 0.9; }
.why-modal-close-action {
  padding: 0.75rem 1.5rem; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7); font-size: 0.875rem; background: none; cursor: pointer; transition: background 0.2s;
}
.why-modal-close-action:hover { background: rgba(255,255,255,0.05); }
