/* ============================================
   Wild Stag Honey — Premium Landing Page
   ============================================ */

:root {
  --honey-gold: #D99A22;
  --honey-gold-light: #E8B84A;
  --dark-amber: #5A2E0C;
  --dark-amber-deep: #3D1E08;
  --cream: #FFF8E7;
  --white: #FFFFFF;
  --natural-green: #4A7C59;
  --natural-green-light: #5E9A6E;
  --text-dark: #2C1810;
  --text-muted: #6B5344;
  --glass-bg: rgba(255, 248, 231, 0.12);
  --glass-border: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 2px 8px rgba(90, 46, 12, 0.08);
  --shadow-md: 0 8px 32px rgba(90, 46, 12, 0.12);
  --shadow-lg: 0 16px 48px rgba(90, 46, 12, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --header-height: 80px;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* Typography */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--natural-green);
  margin-bottom: 16px;
}

.section-tag--light {
  color: var(--honey-gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  color: var(--dark-amber);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--white);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-desc--light {
  color: rgba(255, 255, 255, 0.75);
}

.section-header {
  margin-bottom: 64px;
}

.section-header--center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--honey-gold);
  color: var(--white);
  border-color: var(--honey-gold);
}

.btn--primary:hover {
  background: var(--honey-gold-light);
  border-color: var(--honey-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 154, 34, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--dark-amber);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, #F0C040 0%, #E8A820 100%);
  color: var(--dark-amber);
  border: none;
  padding: 18px 42px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(217, 154, 34, 0.35);
}

.btn--gold:hover {
  background: linear-gradient(135deg, #F5C842 0%, #F0B429 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(217, 154, 34, 0.45);
  color: var(--dark-amber-deep);
}

.btn--full {
  width: 100%;
}

/* Glass */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.header__phone {
  justify-self: end;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-amber);
  white-space: nowrap;
  transition: color var(--transition);
}

.header__phone:hover {
  color: var(--honey-gold);
}

.logo {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo__icon {
  display: flex;
  width: 32px;
  height: 32px;
}

.logo__icon svg {
  width: 100%;
  height: 100%;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark-amber);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav {
  justify-self: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--transition);
}

.nav__link--active,
.nav__link:hover {
  color: var(--dark-amber);
}

.nav__link--active::after {
  width: 100%;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--honey-gold);
  transition: width var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  justify-self: end;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark-amber);
  transition: all var(--transition);
  transform-origin: center;
}

.header--scrolled .menu-toggle span {
  background: var(--dark-amber);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   Hero — Clean Premium White Banner
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--white);
  overflow: hidden;
  padding: calc(var(--header-height) + 48px) 0 48px;
}

/* Top honey drip */
.hero__top-drip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 80px;
  animation: dripPulse 4s ease-in-out infinite;
}

.hero__top-drip svg {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes dripPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Flying bee */
.hero__bee-fly {
  position: absolute;
  top: 42%;
  left: 48%;
  width: 44px;
  height: 44px;
  z-index: 6;
  animation: beeFly 10s ease-in-out infinite;
  pointer-events: none;
}

.hero__bee-fly svg {
  width: 100%;
  height: 100%;
}

@keyframes beeFly {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(30px, -25px) rotate(8deg); }
  40% { transform: translate(-20px, -40px) rotate(-5deg); }
  60% { transform: translate(40px, -15px) rotate(6deg); }
  80% { transform: translate(-10px, -30px) rotate(-3deg); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 200px);
  position: relative;
  z-index: 2;
}

.hero__content {
  text-align: left;
  max-width: 520px;
  padding-left: clamp(0px, 4vw, 40px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--dark-amber);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero__desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 400px;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.hero__circle,
.hero__glow {
  position: absolute;
  width: clamp(300px, 40vw, 440px);
  height: clamp(300px, 40vw, 440px);
  border-radius: 50%;
  z-index: 1;
}

.hero__glow {
  background: radial-gradient(circle, rgba(245, 200, 66, 0.35) 0%, rgba(232, 168, 32, 0.12) 45%, transparent 70%);
  animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}

.hero__jar-wrap {
  position: relative;
  z-index: 3;
  animation: jarFloat 5s ease-in-out infinite;
}

.hero__jar-img {
  width: clamp(260px, 32vw, 400px);
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 24px 48px rgba(90, 46, 12, 0.22));
  display: block;
}

@keyframes jarFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Bottom feature icons */
.hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid rgba(90, 46, 12, 0.08);
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

.hero__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hero__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.hero__feature-icon svg {
  width: 100%;
  height: 100%;
}

.hero__feature p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-top: 6px;
}

/* ============================================
   About
   ============================================ */
.about {
  background: var(--cream);
  padding-top: 100px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about__text p:first-child {
  font-size: 1.15rem;
  color: var(--text-dark);
}

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(217, 154, 34, 0.1);
  transition: all var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--honey-gold);
}

.stat-card__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  color: var(--natural-green);
}

.stat-card__icon svg {
  width: 100%;
  height: 100%;
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--honey-gold);
  line-height: 1;
}

.stat-card__suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--honey-gold);
}

.stat-card__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-amber);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.stat-card__label--solo {
  font-size: 1rem;
  margin-top: 4px;
}

.stat-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   Products
   ============================================ */
.products {
  background: var(--cream);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__image img {
  transform: scale(1.1);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(90, 46, 12, 0.4), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__content {
  padding: 28px;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-amber);
  margin-bottom: 12px;
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--honey-gold);
  transition: color var(--transition);
}

.product-card__link:hover {
  color: var(--dark-amber);
}

/* ============================================
   Quality / Features
   ============================================ */
.quality {
  background: var(--white);
  position: relative;
}

.quality::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--honey-gold), transparent);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  padding: 36px 28px;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1px solid transparent;
  transition: all var(--transition);
}

.feature-card:hover {
  background: var(--white);
  border-color: rgba(217, 154, 34, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-gold-light));
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--white);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-amber);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   Packaging
   ============================================ */
.packaging {
  background: var(--cream);
}

.packaging__scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pack-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.pack-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pack-card__image {
  height: 220px;
  overflow: hidden;
}

.pack-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pack-card:hover .pack-card__image img {
  transform: scale(1.08);
}

.pack-card__body {
  padding: 28px;
  flex: 1;
}

.pack-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--natural-green);
  background: rgba(74, 124, 89, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.pack-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark-amber);
  margin-bottom: 10px;
}

.pack-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   Global Export
   ============================================ */
.export {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.export__map {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1642067958050-bfba120a57e2?w=1920&q=80') center/cover no-repeat;
  opacity: 0.15;
}

.export__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark-amber-deep) 0%, var(--dark-amber) 50%, rgba(74, 124, 89, 0.8) 100%);
}

.export__content {
  position: relative;
  z-index: 2;
}

.export__countries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.country-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition);
}

.country-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px);
  border-color: var(--honey-gold);
}

.country-card__flag {
  font-size: 3rem;
  margin-bottom: 16px;
}

.country-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.country-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ============================================
   Contact
   ============================================ */
.contact {
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  padding: 40px;
  background: var(--cream);
  border: 1px solid rgba(217, 154, 34, 0.15);
  border-radius: var(--radius-lg);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-amber);
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  color: var(--honey-gold);
  box-shadow: var(--shadow-sm);
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--natural-green);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-item a {
  color: var(--dark-amber);
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--honey-gold);
}

.contact__form {
  padding: 40px;
  background: var(--cream);
  border: 1px solid rgba(217, 154, 34, 0.15);
  border-radius: var(--radius-lg);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-amber);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid rgba(90, 46, 12, 0.15);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--honey-gold);
  box-shadow: 0 0 0 3px rgba(217, 154, 34, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  margin-top: 16px;
  padding: 14px;
  background: rgba(74, 124, 89, 0.1);
  color: var(--natural-green);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-align: center;
}

/* ============================================
   Footer — Black Bar Style
   ============================================ */
.footer {
  background: #000000;
  color: #ffffff;
  padding: 0;
}

.footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 48px;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 1.1vw, 0.8rem);
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
  flex: 1;
}

.footer__accent {
  color: #b59461;
}

.footer__link {
  text-decoration: none;
  transition: color var(--transition);
}

.footer__link:hover {
  color: #d4b87a;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer__brand:hover {
  opacity: 0.88;
}

.footer__logo-img {
  display: block;
  width: clamp(140px, 18vw, 200px);
  height: auto;
  object-fit: contain;
}

/* ============================================
   Scroll Reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.about__cards .reveal:nth-child(2) { transition-delay: 0.1s; }
.about__cards .reveal:nth-child(3) { transition-delay: 0.2s; }
.about__cards .reveal:nth-child(4) { transition-delay: 0.3s; }

.products__grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.products__grid .reveal:nth-child(3) { transition-delay: 0.3s; }

.features__grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.features__grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.features__grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.features__grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.features__grid .reveal:nth-child(6) { transition-delay: 0.4s; }

.export__countries .reveal:nth-child(2) { transition-delay: 0.15s; }
.export__countries .reveal:nth-child(3) { transition-delay: 0.3s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .products__grid,
  .features__grid,
  .packaging__scroll,
  .export__countries {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__inner {
    gap: 32px;
  }

  .nav__list {
    gap: 18px;
  }

  .header__phone {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .header__phone {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 1000;
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    gap: 28px;
  }

  .nav__link {
    font-size: 1.1rem;
    color: var(--dark-amber);
  }

  .hero {
    padding-bottom: 32px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    min-height: auto;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
    padding-left: 0;
    order: 1;
  }

  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__visual {
    order: 2;
    min-height: 340px;
  }

  .hero__bee-fly {
    display: none;
  }

  .hero__features {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

  .hero__feature {
    justify-content: flex-start;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .products__grid,
  .features__grid,
  .packaging__scroll,
  .export__countries {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .footer__bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    gap: 20px;
  }

  .footer__copy {
    text-align: center;
  }

  .footer__brand {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about__cards {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .btn--gold {
    display: inline-flex;
  }

  .hero__circle,
  .hero__glow {
    width: 260px;
    height: 260px;
  }

  .contact-card,
  .contact__form {
    padding: 28px 20px;
  }
}
