/* =====================
   RESET & BASE
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAF6EE;
  --warm-white: #FFFDF8;
  --ink: #1C1A14;
  --ink-soft: #4A4538;
  --tan: #E8D9BC;
  --tan-light: #F2EAD8;
  --green: #4A7A30;
  --green-light: #6A9A48;
  --blue-egg: #7AAEC8;
  --blue-egg-light: #B8D8EE;
  --gold: #D4860A;
  --gold-light: #F0A820;
  --red: #C83020;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 32px rgba(28,26,20,0.10);
  --shadow-lg: 0 12px 64px rgba(28,26,20,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* =====================
   NAV
===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,246,238,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--tan);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-svg { width: 36px; height: 36px; }

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-soft);
  transition: color 0.2s;
}

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

.btn-nav {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.88rem !important;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}

.btn-nav:hover {
  background: var(--green) !important;
  transform: scale(1.03);
}

/* =====================
   BUTTONS
===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 16px rgba(28,26,20,0.18);
}

.btn-primary:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74,122,48,0.28);
}

.btn-primary.large { padding: 17px 36px; font-size: 1.05rem; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 16px rgba(37,211,102,0.25);
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}

.btn-whatsapp.large { padding: 17px 36px; font-size: 1.05rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--ink);
  padding: 13px 26px;
  border-radius: 100px;
  border: 1.5px solid var(--tan);
  font-size: 0.95rem;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--tan-light);
  transform: translateY(-1px);
}

/* =====================
   HERO
===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 28px 60px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
}

.hero-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.c1 {
  width: 600px; height: 600px;
  background: #B8D8EE;
  top: -200px; right: -100px;
}

.c2 {
  width: 400px; height: 400px;
  background: #C8E0A8;
  bottom: 100px; left: -100px;
}

.c3 {
  width: 300px; height: 300px;
  background: #F0D098;
  bottom: -100px; right: 200px;
}

.hero-content {
  flex: 1;
  max-width: 560px;
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--green);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 440px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tan-light);
  border: 1px solid var(--tan);
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 0.83rem;
  color: var(--ink-soft);
  font-weight: 400;
}

.delivery-badge svg { color: var(--green); flex-shrink: 0; }

.hero-visual {
  flex: 0 0 340px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.9s 0.15s ease both;
}

.egg-showcase {
  text-align: center;
}

.egg-main svg {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(122,174,200,0.4));
  animation: float 5s ease-in-out infinite;
}

.egg-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 12px;
  color: var(--ink);
}

.egg-tag {
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================
   SECTION SHARED
===================== */
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 52px;
}

/* =====================
   PRODUCTS
===================== */
.products {
  padding: 100px 0;
  background: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  border: 1px solid var(--tan);
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card.featured {
  border-color: var(--blue-egg);
  background: linear-gradient(135deg, #EEF6FC 0%, #FAFCFF 100%);
}

.product-icon svg {
  width: 80px;
  height: 80px;
}

.product-badge {
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--blue-egg-light);
  color: #2A5F7A;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 6px;
}

.product-info h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.product-price {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  font-family: 'Cormorant Garamond', serif;
  margin-top: 8px;
  margin-bottom: 2px;
}

.egg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 4px;
}

.plan-price-line {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.plan-value-note {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 500;
  margin-top: 4px;
}

.delivery-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  transition: transform 0.15s, opacity 0.2s;
  width: fit-content;
}

.social-btn:hover { transform: translateY(-2px); opacity: 0.88; }

.social-btn.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.social-btn.facebook {
  background: #1877F2;
  color: white;
}

.social-btn.whatsapp-social {
  background: #25D366;
  color: white;
}

.footer-social {
  display: flex;
  gap: 20px;
  margin: 8px 0;
}

.footer-social a {
  color: rgba(250,246,238,0.5);
  transition: color 0.2s, transform 0.15s;
  display: flex;
}

.footer-social a:hover {
  color: var(--cream);
  transform: translateY(-2px);
}

.product-unit {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =====================
   PLANS
===================== */
.plans {
  padding: 100px 0;
}

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

.plan-card {
  background: var(--cream);
  border: 1.5px solid var(--tan);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.plan-card.best {
  border-color: var(--green);
  background: linear-gradient(135deg, #EFF7E8 0%, #FAFFF6 100%);
}

.plan-best-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.plan-header {
  text-align: center;
}

.plan-icon { font-size: 2.2rem; display: block; margin-bottom: 8px; }

.plan-header h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.plan-freq {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-deal {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.8);
}

.plan-you-get {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
}

.big-label {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.plan-free-tag {
  font-size: 0.88rem;
  color: var(--green);
}

.plan-free-tag strong { font-weight: 600; }

.plan-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.plan-perks li {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  transition: all 0.2s;
}

.btn-plan:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-plan.primary {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.btn-plan.primary:hover {
  background: #3A6020;
  border-color: #3A6020;
}

.plans-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* =====================
   DELIVERY BANNER
===================== */
.delivery-banner {
  background: var(--ink);
  padding: 80px 28px;
}

.delivery-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.delivery-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--cream);
  margin-bottom: 10px;
}

.delivery-text p {
  color: rgba(250,246,238,0.65);
  font-size: 0.95rem;
  max-width: 440px;
}

.delivery-banner .btn-primary {
  background: var(--gold-light);
  color: var(--ink);
  box-shadow: 0 4px 24px rgba(240,168,32,0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.delivery-banner .btn-primary:hover {
  background: var(--gold);
  color: white;
}

/* =====================
   LOCATION
===================== */
.location {
  padding: 100px 0;
  background: var(--cream);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.location-info h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 32px;
}

.address-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.address-block svg { flex-shrink: 0; margin-top: 2px; color: var(--green); }

.address-block a {
  color: var(--green);
  font-weight: 500;
  font-size: 1.05rem;
}

.map-btn { margin-top: 16px; }

.map-placeholder {
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--tan);
}

/* =====================
   FOOTER
===================== */
footer {
  background: var(--ink);
  padding: 60px 28px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(250,246,238,0.5);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(250,246,238,0.4);
}

.footer-copy a { color: rgba(250,246,238,0.6); }
.footer-copy a:hover { color: var(--cream); }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 820px) {
  .hero {
    flex-direction: column;
    padding: 100px 24px 60px;
    text-align: center;
  }

  .hero-content { max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .delivery-badge { font-size: 0.78rem; }

  .hero-visual { flex: none; width: 100%; }
  .egg-main svg { width: 160px; }

  .location-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-placeholder { height: 280px; }

  .delivery-inner { justify-content: center; text-align: center; }
  .delivery-text p { margin: 0 auto; }

  .nav-links a:not(.btn-nav) { display: none; }
}

@media (max-width: 480px) {
  .plans-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
