:root {
  --honey: #F5A623;
  --honey-dark: #C77D0A;
  --honey-light: #FFF3D6;
  --honey-glow: #FCEABB;
  --brown-dark: #3B2312;
  --brown: #5C3A1E;
  --brown-mid: #7A5230;
  --brown-light: #8B6240;
  --cream: #FFF9EF;
  --cream-dark: #F5EDE0;
  --white: #FFFFFF;
  --text: #2C1810;
  --text-light: #6B5344;
  --text-muted: #9B8577;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  padding: 6px 0;
  letter-spacing: 0.3px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a {
  color: var(--honey-glow);
  text-decoration: none;
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--honey); }

/* ===== HEADER ===== */
header {
  background: var(--white);
  border-bottom: 3px solid var(--honey);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(59,35,18,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img { width: 52px; height: auto; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.1;
}
.logo-text small {
  font-size: 10px;
  font-weight: 400;
  color: var(--brown-light);
  display: block;
  letter-spacing: 2.5px;
  font-family: 'Inter', sans-serif;
  margin-top: 3px;
  text-transform: uppercase;
}

nav { display: flex; gap: 2px; align-items: center; }
nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
nav a:hover { background: var(--honey-light); color: var(--brown-dark); }
nav a.active { background: var(--honey); color: var(--brown-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--brown-dark);
  display: block;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #4A2E1A 40%, var(--brown) 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--honey), var(--honey-glow), var(--honey));
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--honey);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero h1 span { color: var(--honey); }
.hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 30px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--honey);
  color: var(--brown-dark);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  border: 2px solid var(--honey);
}
.btn-primary:hover { background: var(--honey-dark); border-color: var(--honey-dark); color: #fff; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--honey-glow);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid rgba(245,166,35,0.4);
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--honey); color: var(--honey); background: rgba(245,166,35,0.08); }
.hero-visual {
  flex-shrink: 0;
  width: 380px;
  position: relative;
}
.hero-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(245,166,35,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.hero-img-wrap img { width: 100%; display: block; }
.hero-stat {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--honey-dark);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.3;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--cream-dark);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--honey-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.3px;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-light { background: var(--white); }
.section-cream { background: var(--cream); }
.section-accent { background: var(--cream-dark); }
.section-dark {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #4A2E1A 100%);
  color: rgba(255,255,255,0.8);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--honey-dark);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--brown-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-dark .section-title { color: var(--white); }
.section-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}
.section-dark .section-sub { color: rgba(255,255,255,0.6); }

/* ===== ABOUT / HISTORY ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--brown-dark);
  margin-bottom: 6px;
  line-height: 1.2;
}
.about-content .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--honey-dark);
  margin-bottom: 10px;
  display: block;
}
.about-content p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(59,35,18,0.85);
  backdrop-filter: blur(8px);
  color: var(--honey);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}
.timeline {
  display: flex;
  gap: 0;
  margin-top: 24px;
}
.timeline-item {
  flex: 1;
  position: relative;
  padding: 16px 16px 0 0;
  border-top: 3px solid var(--cream-dark);
}
.timeline-item::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--honey);
  border-radius: 50%;
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--honey-dark);
  margin-bottom: 4px;
}
.timeline-text {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== WAX MOTH EXTRACT ===== */
.moth-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.moth-content .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--honey-dark);
  margin-bottom: 10px;
  display: block;
}
.moth-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--brown-dark);
  margin-bottom: 6px;
  line-height: 1.2;
}
.moth-content p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.8;
}
.moth-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.moth-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(139,98,64,0.1);
}
.moth-mechanism {
  background: var(--honey-light);
  border-left: 4px solid var(--honey);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin-top: 32px;
}
.moth-mechanism h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.moth-mechanism p {
  font-size: 14px;
  color: var(--brown);
  line-height: 1.8;
  margin-bottom: 8px;
}
.moth-mechanism p:last-child { margin-bottom: 0; }

.indications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.indication-card {
  background: var(--white);
  border-radius: 10px;
  padding: 20px 16px;
  border: 1px solid rgba(139,98,64,0.08);
  transition: all 0.3s;
}
.indication-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59,35,18,0.08);
}
.indication-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--honey);
  color: var(--brown-dark);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.indication-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 6px;
}
.indication-card p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

.effects-section { margin-top: 48px; }
.effects-section .section-header { margin-bottom: 32px; }
.effects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.effect-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(139,98,64,0.06);
}
.effect-icon {
  width: 36px;
  height: 36px;
  background: var(--honey-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.effect-icon svg { width: 18px; height: 18px; }
.effect-item h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 4px;
}
.effect-item p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

.dosage-box {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.dosage-card {
  border-radius: 12px;
  padding: 28px;
}
.dosage-card.info {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  color: rgba(255,255,255,0.85);
}
.dosage-card.info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.dosage-card.info p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}
.dosage-card.info p:last-child { margin-bottom: 0; }
.dosage-card.warning {
  background: #FEF3E4;
  border: 2px solid #F0C36D;
}
.dosage-card.warning h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #8B5E0C;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dosage-card.warning p {
  font-size: 14px;
  color: #6B4A10;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .moth-intro { grid-template-columns: 1fr; gap: 32px; }
  .indications-grid { grid-template-columns: repeat(3, 1fr); }
  .effects-grid { grid-template-columns: 1fr; }
  .dosage-box { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .moth-images img { height: 160px; }
  .indications-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== FARM FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  border: 1px solid rgba(139,98,64,0.08);
  transition: all 0.3s;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59,35,18,0.08);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--honey-light);
  border-radius: 12px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== QUEEN BREEDING ===== */
.breed-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.breed-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--brown-dark);
  margin-bottom: 6px;
}
.breed-content .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--honey-dark);
  margin-bottom: 10px;
  display: block;
}
.breed-content p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.8;
}
.breed-highlight {
  background: var(--honey-light);
  border-left: 4px solid var(--honey);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--brown);
  line-height: 1.7;
  font-style: italic;
}
.breed-media {
  position: relative;
}
.breed-media img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid rgba(139,98,64,0.1);
}
.breed-media figcaption {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}
.breed-traits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.trait {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}
.trait-dot {
  width: 8px;
  height: 8px;
  background: var(--honey);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ===== PRODUCTS PREVIEW ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(139,98,64,0.08);
  transition: all 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59,35,18,0.1);
}
.product-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.product-img img {
  max-height: 110px;
  width: auto;
  object-fit: contain;
}
.product-body {
  padding: 14px 16px 18px;
  text-align: center;
  border-top: 1px solid var(--cream-dark);
}
.product-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 4px;
}
.product-body p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== PRICING ===== */
.price-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.price-table {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(139,98,64,0.08);
}
.price-table-header {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.price-table-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.price-table-header .pt-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.price-table-header .pt-icon svg { width: 20px; height: 20px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--cream-dark);
  transition: background 0.15s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--honey-light); }
.price-row .amount {
  font-weight: 600;
  color: var(--brown-dark);
  white-space: nowrap;
}
.price-row .amount span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

.price-bio {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--brown-dark) 0%, #4A2E1A 100%);
  border-radius: 12px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.price-bio::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cpattern id='h' width='28' height='48' patternUnits='userSpaceOnUse'%3E%3Cpolygon points='14,0 28,8 28,24 14,32 0,24 0,8' fill='none' stroke='white' stroke-width='1'/%3E%3Cline x1='14' y1='32' x2='14' y2='48' stroke='white' stroke-width='1'/%3E%3C/pattern%3E%3Crect width='100%25' height='100%25' fill='url(%23h)'/%3E%3C/svg%3E");
}
.price-bio-content { position: relative; z-index: 1; }
.price-bio-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}
.price-bio-content .bio-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--honey);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.price-bio-items {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.price-bio-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  min-width: 140px;
}
.price-bio-item h4 {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  margin-bottom: 4px;
}
.price-bio-item .bio-period {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.price-bio-item .bio-price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--honey);
  line-height: 1;
}
.price-bio-item .bio-price small {
  font-size: 14px;
  font-weight: 400;
}

.price-note {
  text-align: center;
  margin-top: 20px;
  padding: 14px 20px;
  background: #FEF3E4;
  border: 1px solid #F0C36D;
  border-radius: 8px;
  font-size: 13px;
  color: #6B4A10;
}
.price-note strong { color: #8B5E0C; }

.price-contact {
  text-align: center;
  margin-top: 16px;
  font-size: 15px;
  color: var(--text-light);
}
.price-contact strong { color: var(--brown-dark); }

.price-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.price-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(139,98,64,0.08);
  background: var(--white);
}
.price-gallery-item img {
  width: 100%;
  aspect-ratio: 257 / 600;
  object-fit: cover;
  display: block;
}
.price-gallery-label {
  padding: 14px 16px;
  text-align: center;
  border-top: 1px solid var(--cream-dark);
}
.price-gallery-label span {
  font-size: 13px;
  color: var(--text-light);
  display: block;
  margin-bottom: 2px;
}
.price-gallery-label strong {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--honey-dark);
}

@media (max-width: 991px) {
  .price-tables { grid-template-columns: 1fr; }
  .price-bio { grid-template-columns: 1fr; }
  .price-bio-items { flex-wrap: wrap; justify-content: center; }
  .price-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .price-bio-items { flex-direction: column; align-items: stretch; }
  .price-bio-item { min-width: auto; }
  .price-gallery { grid-template-columns: 1fr 1fr; }
  .price-gallery-item img { aspect-ratio: 257 / 500; }
}

/* ===== CTA ===== */
.cta-banner {
  border-radius: 16px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cpattern id='h' width='28' height='48' patternUnits='userSpaceOnUse'%3E%3Cpolygon points='14,0 28,8 28,24 14,32 0,24 0,8' fill='none' stroke='white' stroke-width='1'/%3E%3Cline x1='14' y1='32' x2='14' y2='48' stroke='white' stroke-width='1'/%3E%3C/pattern%3E%3Crect width='100%25' height='100%25' fill='url(%23h)'/%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 1; }
.cta-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}
.cta-banner .btn-primary { position: relative; z-index: 1; flex-shrink: 0; }

/* ===== CERTIFICATIONS ===== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cert-card {
  text-align: center;
  padding: 28px 20px;
}
.cert-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.cert-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,12,6,0.92);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.92);
  transition: transform 0.3s;
}
.lightbox-overlay.active img {
  transform: scale(1);
}
.lightbox-caption {
  margin-top: 16px;
  text-align: center;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s 0.1s;
}
.lightbox-overlay.active .lightbox-caption {
  transform: translateY(0);
  opacity: 1;
}
.lightbox-caption span {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 4px;
}
.lightbox-caption strong {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--honey);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.price-gallery-item { cursor: pointer; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(139,98,64,0.08);
}
.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--brown-dark);
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--honey-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.contact-detail-text small {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.contact-detail-text a {
  color: var(--honey-dark);
  text-decoration: none;
  font-weight: 500;
}
.contact-detail-text a:hover { text-decoration: underline; }
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(139,98,64,0.08);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== PHOTO GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 2;
  background: var(--cream-dark);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-thumb:hover img { transform: scale(1.08); }
.gallery-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(59,35,18,0);
  transition: background 0.3s;
}
.gallery-thumb:hover::after { background: rgba(59,35,18,0.15); }
.gallery-thumb-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 10px 8px;
  background: linear-gradient(transparent, rgba(59,35,18,0.75));
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  text-align: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-thumb:hover .gallery-thumb-caption { opacity: 1; }

@media (max-width: 991px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo img { width: 36px; height: auto; }
.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--honey);
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--honey);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-col p, .footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 2;
  text-decoration: none;
  display: block;
}
.footer-col a:hover { color: var(--honey-glow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--honey); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero { padding: 50px 0 60px; }
  .hero h1 { font-size: 34px; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-visual { width: 320px; }
  .hero-stat { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img { order: -1; }
  .about-img img { height: 280px; }
  .breed-layout { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .hamburger { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 12px 24px 20px;
    border-bottom: 3px solid var(--honey);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  nav.open { display: flex; }
  nav a { padding: 10px 14px; width: 100%; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15px; }
  .hero-visual { width: 100%; max-width: 300px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-item::after { display: none !important; }
  .stat-number { font-size: 28px; }
  .section { padding: 50px 0; }
  .section-title { font-size: 26px; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .breed-traits { grid-template-columns: 1fr; }
  .timeline { flex-direction: column; gap: 0; }
  .timeline-item { border-top: none; border-left: 3px solid var(--cream-dark); padding: 0 0 16px 16px; }
  .timeline-item::before { top: 4px; left: -6px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}
