*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --beige: #F3E7D3; --beige-light: #FAF4EC; --beige-dark: #E8D5B7;
  --rose: #E8B4B8; --rose-dark: #C9878C; --rose-pale: #F5DFE0;
  --brown: #3D2314; --brown-mid: #6B3A2A; --brown-light: #A0623A;
  --white: #FFFDF9; --text: #2C1810; --text-light: #7A5C4E;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); 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: 1rem 2rem; background: rgba(255,253,249,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(61,35,20,0.08); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--brown); text-decoration: none; flex-shrink: 0; }
.nav-logo span { color: var(--rose-dark); }
.nav-links { display: flex; align-items: center; gap: 1.2rem; list-style: none; }
.nav-links a { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brown); text-decoration: none; position: relative; transition: color 0.2s; white-space: nowrap; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--rose-dark); transform: scaleX(0); transition: transform 0.3s ease; }
.nav-links a:hover { color: var(--rose-dark); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-instagram { display: flex; align-items: center; }
.nav-instagram svg { width: 16px; height: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--brown); transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--brown); text-decoration: none; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--rose-dark); }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--brown); color: var(--white); padding: 0.9rem 2rem; border-radius: 50px; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em; text-decoration: none; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--brown-mid); transform: translateY(-2px); }
.btn-primary.btn-light { background: var(--beige); color: var(--brown); }
.btn-primary.btn-light:hover { background: var(--white); }
.btn-secondary { display: inline-flex; align-items: center; gap: 0.6rem; background: transparent; color: var(--brown); padding: 0.9rem 2rem; border-radius: 50px; border: 1.5px solid var(--brown); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em; text-decoration: none; transition: all 0.2s; }
.btn-secondary:hover { background: var(--brown); color: var(--white); transform: translateY(-2px); }
.btn-wa-small { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--brown); color: var(--white); padding: 0.55rem 1.1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 500; text-decoration: none; transition: background 0.2s; }
.btn-wa-small:hover { background: var(--brown-mid); }

/* HERO */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding-top: 80px; background: var(--beige-light); overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(232,180,184,0.25) 0%, transparent 70%); pointer-events: none; }
.hero-content { padding: 4rem 3rem 4rem 6rem; z-index: 1; }
.hero-tag { display: inline-block; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-dark); margin-bottom: 1.5rem; position: relative; padding-left: 2rem; }
.hero-tag::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1.4rem; height: 1px; background: var(--rose-dark); }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 700; line-height: 1.12; color: var(--brown); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--rose-dark); }
.hero-sub { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 300; color: var(--text-light); line-height: 1.7; margin-bottom: 2.5rem; max-width: 420px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { position: relative; height: 100vh; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; bottom: 3rem; left: -2rem; background: var(--white); border-radius: 1rem; padding: 1.2rem 1.5rem; box-shadow: 0 8px 32px rgba(61,35,20,0.12); display: flex; align-items: center; gap: 0.8rem; z-index: 2; }
.hero-badge-icon { font-size: 1.8rem; }
.hero-badge-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--brown); }
.hero-badge-text span { font-size: 0.78rem; color: var(--text-light); }

/* SECTIONS */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag { display: inline-block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-dark); margin-bottom: 0.8rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--brown); line-height: 1.2; }
.section-title em { font-style: italic; color: var(--rose-dark); }
.section-sub { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--text-light); margin-top: 0.8rem; font-weight: 300; }

/* HIGHLIGHTS */
.highlights { padding: 6rem 2rem; background: var(--white); }
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.highlight-card { background: var(--beige-light); border-radius: 1.5rem; padding: 2rem 1.5rem; text-align: center; border: 1px solid var(--beige-dark); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.highlight-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(61,35,20,0.1); }
.highlight-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.highlight-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--brown); margin-bottom: 0.5rem; }
.highlight-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* WHY US */
.why-us { padding: 6rem 2rem; background: var(--beige-light); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.why-item { text-align: center; padding: 2rem; }
.why-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.why-item h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--brown); margin-bottom: 0.4rem; }
.why-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* FEATURED */
.featured { padding: 6rem 2rem; background: var(--white); }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; max-width: 1100px; margin: 0 auto; }
.cookie-card { background: var(--white); border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--beige-dark); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.cookie-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(61,35,20,0.12); }
.cookie-img { width: 100%; height: 220px; object-fit: cover; }
.cookie-body { padding: 1.5rem; }
.cookie-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--brown); margin-bottom: 0.4rem; }
.cookie-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; margin-bottom: 1rem; }
.cookie-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--rose-dark); font-weight: 600; }
.cookie-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 0.8rem; padding-top: 0.8rem; border-top: 1px solid var(--beige-dark); }
.luxe-badge { font-size: 0.72rem; color: var(--rose-dark); font-family: 'DM Sans', sans-serif; font-weight: 600; background: var(--rose-pale); padding: 0.15rem 0.6rem; border-radius: 50px; }

/* BANNER */
.banner { padding: 5rem 2rem; background: var(--brown); text-align: center; }
.banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--beige); margin-bottom: 1rem; font-style: italic; }
.banner p { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: rgba(243,231,211,0.7); margin-bottom: 2rem; font-weight: 300; }

/* FLAVORS */
.flavors { padding: 6rem 2rem; background: var(--beige-light); }
.flavors-wrap { max-width: 900px; margin: 0 auto; }
.flavor-list { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.flavor-pill { background: var(--white); border: 1px solid var(--beige-dark); border-radius: 50px; padding: 0.6rem 1.4rem; font-size: 0.88rem; color: var(--brown-mid); transition: all 0.2s; cursor: default; }
.flavor-pill.special { background: var(--rose-pale); border-color: var(--rose); color: var(--rose-dark); font-weight: 500; }
.flavor-pill:hover { background: var(--brown); color: var(--white); border-color: var(--brown); }
.flavors-note { text-align: center; margin-top: 1.5rem; font-size: 0.8rem; color: var(--text-light); }

/* PRICING */
.pricing { padding: 6rem 2rem; background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 780px; margin: 0 auto; }
.price-card { background: var(--beige-light); border-radius: 1.5rem; padding: 2.5rem; border: 1px solid var(--beige-dark); text-align: center; transition: transform 0.3s ease; }
.price-card:hover { transform: translateY(-4px); }
.price-card.featured-price { background: var(--brown); border-color: var(--brown); }
.price-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--brown); margin-bottom: 1.2rem; }
.price-card.featured-price h3 { color: var(--beige); }
.price-amount { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--rose-dark); line-height: 1; margin-bottom: 0.3rem; }
.price-card.featured-price .price-amount { color: var(--rose); }
.price-per { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1.2rem; }
.price-card.featured-price .price-per { color: rgba(243,231,211,0.6); }
.price-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
.price-card.featured-price p { color: rgba(243,231,211,0.7); }

/* PAGE HERO */
.page-hero { padding: 10rem 2rem 5rem; text-align: center; background: var(--beige-light); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--brown); margin-bottom: 1rem; }
.page-hero h1 em { font-style: italic; color: var(--rose-dark); }
.page-hero p { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--text-light); max-width: 600px; margin: 0 auto; font-weight: 300; line-height: 1.7; }

/* FOOTER */
footer { background: var(--brown); color: var(--beige); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(243,231,211,0.15); }
.footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.88rem; opacity: 0.65; line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.social-icon { width: 38px; height: 38px; border: 1px solid rgba(243,231,211,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--beige); text-decoration: none; transition: all 0.2s; }
.social-icon:hover { background: var(--rose-dark); border-color: var(--rose-dark); }
.footer-nav h4 { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 1.2rem; opacity: 0.85; }
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 0.6rem; }
.footer-nav a { color: var(--beige); text-decoration: none; font-size: 0.88rem; opacity: 0.65; transition: opacity 0.2s; }
.footer-nav a:hover { opacity: 1; }
.footer-bottom { max-width: 1100px; margin: 2rem auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; opacity: 0.5; flex-wrap: wrap; gap: 0.5rem; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-tag { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.25s; }
.hero-sub { animation-delay: 0.4s; }
.hero-actions { animation-delay: 0.55s; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-links { gap: 0.9rem; }
  .nav-links a { font-size: 0.7rem; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { height: 55vw; max-height: 420px; }
  .hero-content { padding: 3rem 2rem; }
  .hero-badge { left: 1rem; bottom: 1.5rem; }
  .highlights-grid { grid-template-columns: 1fr 1fr; max-width: 600px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .featured-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) { nav { padding: 1rem 1.5rem; } .hero-content { padding: 2rem 1.5rem; } }
