@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-dark: #1a4a2e;
  --green-mid: #2d7a4f;
  --green-light: #4aaa6e;
  --green-pale: #e8f5ee;
  --gold: #c8922a;
  --gold-light: #f0c96e;
  --cream: #faf8f3;
  --dark: #1c1c1a;
  --text: #2e2e2a;
  --muted: #6b7068;
  --white: #ffffff;
  --border: rgba(45,122,79,0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(26, 74, 46, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 146, 42, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  min-width: 42px;
  height: 42px;
  background: rgb(245, 244, 242);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.nav-brand-text {
  line-height: 1.2;
}

.nav-brand-main {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

.nav-brand-sub {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Desktop links */
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--dark) !important;
}

/* Hamburger button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  width: 100%;
}

/* Animated X state */
.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown */
.nav-dropdown {
  display: none;
  flex-direction: column;
  background: rgba(20, 58, 36, 0.99);
  border-top: 1px solid rgba(200, 146, 42, 0.2);
  padding: 8px 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.nav-dropdown.open {
  max-height: 400px;
  padding: 8px 0 16px;
}

.nav-dropdown a {
  display: block;
  padding: 13px 6%;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
}

.nav-dropdown .nav-cta-mob {
  margin: 12px 6% 0;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 8px;
  text-align: center;
  font-weight: 600 !important;
  border-bottom: none !important;
}

.nav-dropdown .nav-cta-mob:hover {
  background: var(--gold-light) !important;
  color: var(--dark) !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, rgba(26, 74, 46, 0.92) 0%, rgba(26, 74, 46, 0.75) 50%, rgba(26, 74, 46, 0.55) 100%), url("https://res.cloudinary.com/drrabika6/image/upload/v1779858304/QGR_gql6nx.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 146, 42, 0.2);
  border: 1px solid rgba(200, 146, 42, 0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: "●";
  font-size: 8px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 span {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  font-size: 50%;
  font-style: italic;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--dark);
  border-color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

/* STATS BAR */
.stats-bar {
  background: var(--green-dark);
  padding: 28px 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
}

.stat-value {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* SECTIONS */
section {
  padding: 80px 5%;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  max-width: 560px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  margin-top: 16px;
  line-height: 1.8;
}

/* ABOUT */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--green-pale);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge-img {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--green-dark);
  color: var(--gold-light);
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(200, 146, 42, 0.3);
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--green-pale);
  border-radius: 12px;
  border-left: 3px solid var(--green-mid);
}

.pillar-icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--green-dark);
}

.pillar-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}

/* PRODUCTS */
.products {
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 74, 46, 0.12);
}

.product-header {
  padding: 28px 24px 20px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  position: relative;
}

.product-phase {
  display: inline-block;
  background: rgba(200, 146, 42, 0.25);
  border: 1px solid rgba(200, 146, 42, 0.5);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.product-name {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.product-type {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.product-emoji {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 36px;
  opacity: 0.6;
}

.product-body {
  padding: 24px;
}

.product-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-benefits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.product-benefits li::before {
  content: "✓";
  color: var(--green-light);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.product-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--green-pale);
}

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ENGAGEMENTS */
.engagements {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.engagements::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.engagements .section-title {
  color: var(--white);
  max-width: 440px;
}

.engagements .section-label {
  color: var(--gold-light);
}

.engagements .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.engagement-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 28px 22px;
  transition: background 0.2s;
}

.engagement-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.engagement-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.engagement-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.engagement-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* MARQUES */
.marques {
  background: var(--white);
}

.marques-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.marque-block {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.marque-header {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.marque-header.kf {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
}

.marque-header.kfarm {
  background: linear-gradient(135deg, #2a3d4f, #3a6680);
}

.marque-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.marque-name {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.marque-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.marque-products {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.marque-product-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--green-pale);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green-dark);
}

.marque-product-item.blue {
  background: #e8f2f8;
  color: #1e4a6e;
}

/* CONTACT */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-item-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--green-dark);
  margin-top: 3px;
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
}

.form-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(45, 122, 79, 0.25);
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  background: var(--green-mid);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}

.form-submit:hover {
  background: var(--green-dark);
}

/* FOOTER */
footer {
  background: var(--dark);
  padding: 48px 5% 28px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.8;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
}

.footer-bottom-brand {
  color: var(--gold-light);
  font-weight: 600;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 0 5%;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop links */
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .nav-dropdown {
    display: flex;
  }
  .about-grid, .marques-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn-primary, .btn-outline {
    text-align: center;
  }
}
/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content > * {
  animation: fadeUp 0.7s ease both;
}

.hero-content > *:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-content > *:nth-child(2) {
  animation-delay: 0.25s;
}

.hero-content > *:nth-child(3) {
  animation-delay: 0.4s;
}

.hero-content > *:nth-child(4) {
  animation-delay: 0.55s;
}

.nav-logo-icon {
  min-height: 42px;
}
.nav-logo-icon img {
  height: 100%;
  object-fit: cover;
  padding: 2%;
  margin: 5%;
}

/* ══════════════════════════════════════════════
   KIVU AGROFEED — Product Card · Poussin
   Compatible avec le style hero existant
══════════════════════════════════════════════ */
/* ── VARIABLES (à fusionner avec vos :root existants) ── */
:root {
  --ka-ink: #1A1208;
  --ka-amber: #D4920C;
  --ka-amber-pale: #F5DFA0;
  --ka-amber-dim: rgba(212, 146, 12, 0.12);
  --ka-amber-border: rgba(212, 146, 12, 0.35);
  --ka-bark: #7A6240;
  --ka-cream: #FDF8EE;
  --ka-white-40: rgba(255, 255, 255, 0.40);
  --ka-white-55: rgba(255, 255, 255, 0.55);
  --ka-fog: rgba(26, 18, 8, 0.08);
  --ka-fog-2: rgba(26, 18, 8, 0.14);
  --ka-radius: 16px;
  --ka-radius-sm: 10px;
  --ka-radius-pill: 100px;
}

/* ══════════════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════════════ */
.products-section {
  padding: 88px 40px;
  background: var(--ka-cream);
}

.products-section-inner {
  max-width: 980px;
  margin: 0 auto;
}

.products-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ka-bark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.products-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ka-amber);
}

.products-heading {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ka-ink);
  margin-bottom: 48px;
}

.products-heading em {
  font-style: italic;
  color: var(--ka-amber);
}

/* ══════════════════════════════════════════════
   PRODUCT CARD
══════════════════════════════════════════════ */
.product-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border-radius: var(--ka-radius);
  overflow: hidden;
  border: 1px solid var(--ka-fog-2);
  background: #ffffff;
  transition: box-shadow 0.25s, transform 0.2s;
}

.product-card:hover {
  box-shadow: 0 16px 48px rgba(26, 18, 8, 0.1);
  transform: translateY(-3px);
}

/* ── LEFT: dark visual panel ── */
.card-visual {
  background: var(--ka-ink);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

/* decorative radial glow */
.card-visual::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 146, 12, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

/* diagonal grain */
.card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-55deg, transparent, transparent 48px, rgba(212, 146, 12, 0.025) 48px, rgba(212, 146, 12, 0.025) 49px);
  pointer-events: none;
}

/* product badge top-left */
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--ka-amber-border);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ka-amber-pale);
  width: fit-content;
  position: relative;
  z-index: 1;
}

.product-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ka-amber);
  animation: ka-blink 2.2s ease-in-out infinite;
}

@keyframes ka-blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.6);
  }
}
/* phase label */
.card-phase {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ka-amber);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

/* card title */
.card-title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.card-title em {
  font-style: italic;
  color: var(--ka-amber-pale);
  display: block;
}

/* card description */
.card-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ka-white-40);
  margin: 16px 0 22px;
  position: relative;
  z-index: 1;
}

/* age pill */
.card-age {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ka-amber-dim);
  border: 1px solid var(--ka-amber-border);
  border-radius: var(--ka-radius-pill);
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 400;
  color: var(--ka-amber-pale);
  width: fit-content;
  position: relative;
  z-index: 1;
}

.age-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ka-amber);
  flex-shrink: 0;
}

/* ── RIGHT: info panel ── */
.card-info {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
}

/* benefits header */
.benefits-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ka-bark);
  margin-bottom: 18px;
}

/* benefit rows */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ka-fog);
  transition: background 0.15s;
}

.benefit-item:last-of-type {
  border-bottom: none;
}

.benefit-item:hover {
  background: rgba(212, 146, 12, 0.03);
}

/* check icon */
.benefit-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #FAEEDA; /* amber-50 */
  border: 1px solid #EF9F27; /* amber-200 */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  font-size: 11px;
  color: #633806; /* amber-800 */
  line-height: 1;
}

.benefit-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ka-ink);
  line-height: 1.4;
  margin-bottom: 2px;
}

.benefit-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--ka-bark);
  line-height: 1.45;
}

/* ── CARD ACTIONS ── */
.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  flex: 1;
  min-width: 120px;
  background: var(--ka-amber);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: var(--ka-radius-pill);
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
}

.btn-primary:hover {
  background: #b87a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 146, 12, 0.3);
}

.btn-outline {
  flex: 1;
  min-width: 120px;
  background: transparent;
  color: var(--ka-bark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: var(--ka-radius-pill);
  border: 1px solid var(--ka-fog-2);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s, color 0.18s;
}

.btn-outline:hover {
  border-color: var(--ka-amber);
  color: var(--ka-amber);
}

/* ══════════════════════════════════════════════
   CARD STATS BAND (optional, inside card-info)
══════════════════════════════════════════════ */
.card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ka-fog);
  border-radius: var(--ka-radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

.card-stat {
  background: #ffffff;
  padding: 12px 10px;
  text-align: center;
}

.card-stat-number {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ka-ink);
  line-height: 1;
  margin-bottom: 3px;
}

.card-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ka-bark);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
/* Tablet — 860px */
@media (max-width: 860px) {
  .products-section {
    padding: 64px 28px;
  }
  .products-heading {
    font-size: 30px;
    margin-bottom: 36px;
  }
  .product-card {
    grid-template-columns: 1fr;
  }
  .card-visual {
    min-height: 260px;
    padding: 36px 32px;
  }
  .card-info {
    padding: 36px 32px;
  }
  .card-title {
    font-size: 36px;
  }
  .card-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Mobile — 560px */
@media (max-width: 560px) {
  .products-section {
    padding: 48px 20px;
  }
  .products-heading {
    font-size: 26px;
    margin-bottom: 28px;
  }
  .card-visual {
    padding: 28px 24px;
    min-height: 220px;
  }
  .card-title {
    font-size: 30px;
  }
  .card-info {
    padding: 28px 24px;
  }
  .card-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .card-stat-number {
    font-size: 20px;
  }
  .card-actions {
    flex-direction: column;
  }
  .btn-primary,
  .btn-outline {
    flex: unset;
    width: 100%;
    justify-content: center;
  }
  .benefit-name {
    font-size: 12px;
  }
  .benefit-note {
    font-size: 11px;
  }
}
/* Small mobile — 380px */
@media (max-width: 380px) {
  .card-visual {
    padding: 24px 18px;
  }
  .card-info {
    padding: 24px 18px;
  }
  .card-title {
    font-size: 26px;
  }
  .card-desc {
    font-size: 12px;
  }
  .card-stats {
    grid-template-columns: 1fr 1fr;
  }
  .card-stats .card-stat:last-child {
    grid-column: 1/-1;
    border-top: 1px solid var(--ka-fog);
  }
}
.chicks-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  padding: 30px;
  background: #f8f8f8;
  border-radius: 25px;
}

.gallery-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.large {
  min-height: 500px;
}

.gallery-side .gallery-card {
  height: 240px;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  color: white;
}

.overlay h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.overlay p {
  font-size: 16px;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .chicks-gallery {
    grid-template-columns: 1fr;
  }
  .large {
    min-height: 350px;
  }
  .gallery-side .gallery-card {
    height: 220px;
  }
}
a {
  text-decoration: none;
  color: inherit;
}/*# sourceMappingURL=style.css.map */