:root {
  --cream: #FDF6ED;
  --warm: #F5E6CE;
  --amber: #D4875A;
  --amber-dark: #B5683C;
  --brown: #3D2314;
  --green: #4A7C59;
  --green-light: #D6E8DC;
  --gray: #7A6F66;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(253,246,237,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,135,90,0.15);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900;
  color: var(--brown); text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--amber); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--brown);
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber); }
.nav-cta {
  background: var(--amber); color: white;
  padding: 0.65rem 1.6rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--amber-dark); transform: translateY(-1px); }

/* Legal dropdown */
.legal-dropdown { position: relative; }
.legal-toggle { cursor: pointer; }
.legal-menu {
  display: none;
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: white; border-radius: 12px;
  box-shadow: 0 12px 40px rgba(61,35,20,0.14);
  padding: 0.6rem 0; min-width: 200px;
  list-style: none;
  border: 1px solid rgba(212,135,90,0.12);
  z-index: 200;
}
.legal-menu.open { display: block; }
.legal-menu li a {
  display: block; padding: 0.65rem 1.3rem;
  font-size: 0.88rem; color: var(--brown);
  text-decoration: none; transition: background 0.15s, color 0.15s;
}
.legal-menu li a:hover { background: var(--cream); color: var(--amber); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 8rem 4rem 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -10%; right: -5%;
  width: 55%; height: 110%;
  background: radial-gradient(ellipse at 60% 40%, #F5E6CE 0%, #EDD9B8 60%, transparent 100%);
  border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
  z-index: 0;
}
.hero-text { position: relative; z-index: 1; animation: fadeUp 0.8s ease both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-light); color: var(--green);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
h1 em { color: var(--amber); font-style: normal; }
.hero-sub {
  font-size: 1.15rem; color: var(--gray);
  line-height: 1.7; max-width: 480px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--amber); color: white;
  padding: 0.9rem 2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(212,135,90,0.35);
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--brown);
  padding: 0.9rem 2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600;
  text-decoration: none; border: 2px solid var(--brown);
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--brown); color: white; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(212,135,90,0.2);
}
.stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; color: var(--amber);
}
.stat-label { font-size: 0.82rem; color: var(--gray); margin-top: 0.1rem; }
.hero-visual {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-img-wrap { position: relative; width: 440px; height: 440px; }
.hero-circle {
  width: 380px; height: 380px; border-radius: 50%;
  background: linear-gradient(135deg, #EDD9B8 0%, #F5E6CE 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 10rem;
  box-shadow: 0 20px 60px rgba(61,35,20,0.1);
  animation: float 4s ease-in-out infinite;
}
.float-badge {
  position: absolute; background: white;
  border-radius: 16px; padding: 0.75rem 1.1rem;
  box-shadow: 0 8px 30px rgba(61,35,20,0.12);
  font-size: 0.85rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem;
}
.float-badge.top-left { top: 0; left: -20px; }
.float-badge.bottom-right { bottom: 20px; right: -10px; }
.float-badge .icon { font-size: 1.2rem; }

/* ── LOGOS BAR ── */
.logos-bar {
  background: var(--brown); padding: 1.8rem 4rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
}
.logos-bar p { color: rgba(255,255,255,0.5); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-right: 1rem; }
.logo-pill {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  padding: 0.4rem 1.2rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ── SECTIONS ── */
section { padding: 6rem 4rem; }
.section-label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1rem;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.subtitle { font-size: 1.1rem; color: var(--gray); line-height: 1.7; max-width: 560px; }

/* WHY */
.why { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; }
.why-card {
  background: white; border-radius: 24px; padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(212,135,90,0.1);
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(61,35,20,0.08); }
.why-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.92rem; color: var(--gray); line-height: 1.65; }

/* PRODUCTS */
.products { background: var(--brown); color: white; }
.products h2 { color: white; }
.products .subtitle { color: rgba(255,255,255,0.6); }
.products .section-label { color: var(--amber); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.product-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px; overflow: hidden;
  transition: transform 0.3s, background 0.3s;
}
.product-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.product-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 6rem; position: relative;
}
.product-img.dog { background: linear-gradient(135deg, #3D2314 0%, #5C3420 100%); }
.product-img.cat { background: linear-gradient(135deg, #1A3D26 0%, #2E5C3C 100%); }
.product-tag {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--amber); color: white;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 50px;
}
.product-info { padding: 1.8rem; }
.product-info h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.5rem; }
.product-info p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.2rem; }
.product-price { font-size: 1.5rem; font-weight: 700; color: var(--amber); }
.product-price span { font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.5); }
.product-features { list-style: none; margin: 1rem 0 1.5rem; }
.product-features li {
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
  padding: 0.3rem 0; display: flex; align-items: center; gap: 0.5rem;
}
.product-features li::before { content: '✓'; color: var(--amber); font-weight: 700; }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.3); color: white;
  padding: 0.65rem 1.5rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  display: inline-block; transition: all 0.2s;
}
.btn-outline-white:hover { background: white; color: var(--brown); }

/* INGREDIENTS */
.ingredients { background: var(--green-light); }
.ingredients-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ingredient-tags { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.tag {
  background: white; color: var(--green);
  padding: 0.5rem 1.1rem; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  border: 1.5px solid rgba(74,124,89,0.2);
  display: flex; align-items: center; gap: 0.4rem;
}
.no-list { list-style: none; margin-top: 2rem; }
.no-list li {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0; font-size: 0.95rem; color: var(--gray);
  border-bottom: 1px solid rgba(74,124,89,0.15);
}
.no-list li .x { color: #E05A5A; font-weight: 700; font-size: 1.1rem; }

/* HOW IT WORKS */
.how { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 4rem; position: relative; }
.steps::before {
  content: '';
  position: absolute; top: 3rem; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--amber) 0, var(--amber) 8px, transparent 8px, transparent 18px);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--amber); color: white;
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; box-shadow: 0 4px 16px rgba(212,135,90,0.35);
}
.step h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* TESTIMONIALS */
.testimonials { background: white; }
.stars { color: #F5A623; font-size: 1.1rem; letter-spacing: 0.1rem; margin-bottom: 0.5rem; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 4rem; }
.testi-card {
  background: var(--cream); border-radius: 24px; padding: 2rem;
  border: 1px solid rgba(212,135,90,0.12); transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card blockquote { font-size: 0.97rem; line-height: 1.7; color: var(--gray); margin-bottom: 1.2rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--amber); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.testi-name { font-weight: 600; font-size: 0.9rem; }
.testi-pet { font-size: 0.8rem; color: var(--gray); }

/* FAQ */
.faq { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 4rem; }
.faq-item {
  background: white; border-radius: 18px; padding: 1.5rem 2rem;
  border: 1px solid rgba(212,135,90,0.1); cursor: pointer;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 8px 30px rgba(61,35,20,0.07); }
.faq-q { font-weight: 600; font-size: 0.97rem; margin-bottom: 0.6rem; display: flex; justify-content: space-between; }
.faq-q span { color: var(--amber); font-size: 1.2rem; }
.faq-a { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  text-align: center; color: white; padding: 6rem 4rem;
}
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p { font-size: 1.15rem; opacity: 0.85; margin-bottom: 2.5rem; }
.btn-white {
  background: white; color: var(--amber-dark);
  padding: 1rem 2.5rem; border-radius: 50px;
  font-size: 1.05rem; font-weight: 700; text-decoration: none;
  display: inline-block; transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.cta-guarantee { font-size: 0.85rem; opacity: 0.7; margin-top: 1.2rem; }

/* FOOTER */
footer { background: var(--brown); color: rgba(255,255,255,0.7); padding: 4rem; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.footer-logo { color: white !important; display: block; margin-bottom: 1rem; font-size: 1.6rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer-legal-info p { font-size: 0.88rem; line-height: 1.8; }
.footer-legal-info strong { color: white; }
.footer-legal-links { display: flex; gap: 1.5rem; margin-top: 1.2rem; flex-wrap: wrap; }
.footer-legal-links a { color: var(--amber); text-decoration: none; font-size: 0.88rem; font-weight: 600; transition: opacity 0.2s; }
.footer-legal-links a:hover { opacity: 0.75; }
.footer-bottom {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.4); font-size: 0.82rem; flex-wrap: wrap; gap: 0.5rem;
}

/* ══ MODALS ══ */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(30,15,5,0.65);
  backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 2rem;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: white; border-radius: 24px;
  max-width: 680px; width: 100%;
  max-height: 85vh; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 80px rgba(30,15,5,0.3);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 2.2rem 1.4rem;
  border-bottom: 1px solid rgba(212,135,90,0.15);
  flex-shrink: 0;
}
.modal-header h2 {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  margin: 0; letter-spacing: -0.01em;
}
.modal-close {
  background: var(--cream); border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1rem; color: var(--brown);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--warm); }
.modal-body {
  padding: 1.8rem 2.2rem; overflow-y: auto; flex: 1;
}
.modal-company { font-weight: 600; font-size: 0.88rem; color: var(--amber); }
.modal-date { font-size: 0.82rem; color: var(--gray); margin-bottom: 1.8rem; }
.modal-body h3 {
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
  margin: 1.6rem 0 0.5rem; color: var(--brown);
}
.modal-body p { font-size: 0.92rem; color: var(--gray); line-height: 1.75; margin-bottom: 0.5rem; }
.modal-body ul { padding-left: 1.3rem; margin: 0.5rem 0 1rem; }
.modal-body ul li { font-size: 0.92rem; color: var(--gray); line-height: 1.7; margin-bottom: 0.3rem; }
.modal-body strong { color: var(--brown); }

/* ── ANIMATIONS ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; text-align: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  section { padding: 4rem 1.5rem; }
  .why-grid, .products-grid, .testi-grid, .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .ingredients-inner { grid-template-columns: 1fr; gap: 2rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .logos-bar { padding: 1.5rem; }
  .modal-box { max-height: 92vh; }
}
