:root {
  --bg: #fdfdfb;
  --fg: #1c2a22;
  --card: #ffffff;
  --primary: #1f5d3f;
  --primary-fg: #f7fbf7;
  --muted: #6b7f73;
  --accent: #e8762c;
  --accent-2: #f2a13c;
  --accent-fg: #fffaf5;
  --cream: #f7f4ea;
  --border: #e4e6dd;
  --radius: 22px;
  --shadow-soft: 0 18px 45px -22px rgba(31, 62, 45, 0.45);
  --shadow-lift: 0 28px 60px -28px rgba(31, 62, 45, 0.55);
  --ember: linear-gradient(135deg, var(--accent), var(--accent-2));
  --hero-overlay: linear-gradient(
    to top,
    rgba(20, 38, 29, 0.92) 0%,
    rgba(20, 38, 29, 0.55) 45%,
    rgba(20, 38, 29, 0.25) 100%
  );
}

* { box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; margin: 0; letter-spacing: -0.02em; }
p, ul, dl, figure, blockquote { margin: 0; }
ul { list-style: none; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 20px; }
@media (min-width: 1024px) { .wrap { padding-inline: 32px; } }

.eyebrow { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; }
.h2 { font-size: clamp(30px, 5vw, 48px); line-height: 1.08; font-weight: 600; margin-top: 16px; }
.lead { color: var(--muted); margin-top: 16px; line-height: 1.7; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px; font-weight: 600; cursor: pointer; border: 0;
  transition: transform .25s ease, background-color .25s ease;
}
.btn:hover { transform: scale(1.03); }
.btn-ember { background-image: var(--ember); color: var(--accent-fg); padding: 15px 28px; font-size: 16px; box-shadow: var(--shadow-lift); }
.btn-sm { padding: 11px 20px; font-size: 14px; box-shadow: var(--shadow-soft); }
.btn-ghost { border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); color: var(--primary-fg); padding: 15px 28px; font-size: 16px; backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Header */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; transition: background-color .3s ease, box-shadow .3s ease; }
.site-header.scrolled { background: rgba(253,253,251,.9); backdrop-filter: blur(12px); box-shadow: var(--shadow-soft); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 16px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 999px; font-family: "Fraunces", serif; font-weight: 700; font-size: 18px; background: rgba(255,255,255,.18); color: #fff; backdrop-filter: blur(6px); transition: background-color .3s ease, color .3s ease; }
.scrolled .brand-mark { background: var(--primary); color: var(--primary-fg); }
.brand-name { display: block; font-family: "Fraunces", serif; font-size: 18px; font-weight: 600; color: #fff; transition: color .3s ease; }
.brand-sub { display: none; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.7); transition: color .3s ease; }
@media (min-width: 640px) { .brand-sub { display: block; } }
.scrolled .brand-name { color: var(--fg); }
.scrolled .brand-sub { color: var(--muted); }
.nav { display: none; align-items: center; gap: 28px; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a { font-size: 14px; font-weight: 500; color: #fff; transition: color .2s ease; }
.nav a:hover { color: var(--accent); }
.scrolled .nav a { color: var(--fg); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-cta { display: none; }
@media (min-width: 640px) { .header-cta { display: inline-flex; } }
.menu-btn { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 999px; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); color: #fff; cursor: pointer; }
.scrolled .menu-btn { border-color: var(--border); background: transparent; color: var(--fg); }
@media (min-width: 1024px) { .menu-btn { display: none; } }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 12px 20px 20px; background: rgba(253,253,251,.97); backdrop-filter: blur(12px); box-shadow: var(--shadow-soft); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 4px; font-weight: 600; border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: 0; }

/* Hero */
.hero { position: relative; min-height: 100svh; overflow: hidden; display: flex; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.overlay { position: absolute; inset: 0; background-image: var(--hero-overlay); }
.hero-content { position: relative; display: flex; flex-direction: column; justify-content: flex-end; width: 100%; padding-top: 128px; padding-bottom: 64px; }
.pill { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1); padding: 7px 16px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.88); backdrop-filter: blur(6px); }
.hero h1 { color: #fff; margin-top: 24px; max-width: 20ch; font-size: clamp(40px, 7vw, 76px); line-height: .96; font-weight: 600; }
.hero h1 span { color: var(--accent-2); }
.hero p { color: rgba(255,255,255,.85); margin-top: 24px; max-width: 34rem; font-size: 17px; line-height: 1.7; }
.hero-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
@media (min-width: 640px) { .hero-cta { flex-direction: row; align-items: center; } }
.stats { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.2); }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.stats dt { color: #fff; font-family: "Fraunces", serif; font-size: 28px; font-weight: 600; }
.stats dd { color: rgba(255,255,255,.7); margin: 4px 0 0; font-size: 13px; }

/* Benefits */
.benefits { background: var(--cream); border-block: 1px solid var(--border); }
.benefits-grid { display: grid; gap: 32px; padding-block: 56px; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit { display: flex; gap: 16px; align-items: flex-start; }
.icon-badge { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 auto; border-radius: 16px; background: rgba(31,93,63,.1); color: var(--primary); }
.benefit h3 { font-family: inherit; font-size: 16px; font-weight: 600; }
.benefit p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-top: 4px; }

/* Products */
.section { padding-block: 80px; scroll-margin-top: 96px; }
@media (min-width: 1024px) { .section { padding-block: 112px; } }
.cards { display: grid; gap: 32px; margin-top: 48px; }
@media (min-width: 768px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card { display: flex; flex-direction: column; height: 100%; overflow: hidden; border: 1px solid var(--border); border-radius: 28px; background: var(--card); box-shadow: var(--shadow-soft); transition: transform .3s ease, box-shadow .3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--cream); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.badge { position: absolute; top: 16px; left: 16px; border-radius: 999px; padding: 5px 12px; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; background-image: var(--ember); color: var(--accent-fg); }
.card-body { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card-top h3 { font-size: 24px; font-weight: 600; }
.score { display: inline-flex; align-items: center; gap: 4px; flex: 0 0 auto; border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 700; color: var(--primary); background: rgba(31,93,63,.1); }
.profile { color: var(--muted); font-size: 14px; margin-top: 4px; }
.notes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.notes li { border: 1px solid var(--border); border-radius: 999px; padding: 4px 12px; font-size: 12px; color: rgba(28,42,34,.8); }
.price-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 24px; }
.price { font-family: "Fraunces", serif; font-size: 30px; font-weight: 600; }
.weight { color: var(--muted); font-size: 14px; margin-left: 4px; }
.card .btn { margin-top: 20px; width: 100%; padding: 14px 20px; font-size: 14px; box-shadow: none; }

.banner { display: grid; gap: 24px; align-items: center; margin-top: 48px; padding: 36px; border-radius: 28px; background: var(--primary); color: var(--primary-fg); box-shadow: var(--shadow-lift); }
@media (min-width: 1024px) { .banner { grid-template-columns: minmax(0,1fr) auto; padding: 40px; } }
.banner h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 600; }
.banner p { color: rgba(247,251,247,.75); margin-top: 8px; line-height: 1.6; }

/* Story */
.story { background: var(--cream); border-block: 1px solid var(--border); scroll-margin-top: 96px; }
.story-grid { display: grid; gap: 48px; align-items: center; padding-block: 80px; }
@media (min-width: 1024px) { .story-grid { grid-template-columns: repeat(2, 1fr); padding-block: 112px; } }
.story-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.story-gallery img { border-radius: 28px; object-fit: cover; width: 100%; box-shadow: var(--shadow-soft); height: 200px; }
.story-gallery img.wide { grid-column: span 2; height: 300px; }
.checks { margin-top: 32px; display: grid; gap: 16px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.6; }
.dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); margin-top: 9px; flex: 0 0 auto; }

/* Process */
.process { position: relative; overflow: hidden; scroll-margin-top: 96px; }
.process > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.process .wrap { position: relative; padding-block: 80px; }
@media (min-width: 1024px) { .process .wrap { padding-block: 112px; } }
.process h2 { color: #fff; max-width: 22ch; }
.steps { display: grid; gap: 24px; margin-top: 48px; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { height: 100%; border-radius: 28px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); padding: 24px; backdrop-filter: blur(10px); }
.step span { color: var(--accent-2); font-family: "Fraunces", serif; font-size: 30px; font-weight: 600; }
.step h3 { color: #fff; font-family: inherit; font-size: 18px; font-weight: 600; margin-top: 12px; }
.step p { color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.6; margin-top: 8px; }

/* Testimonials */
.quote { height: 100%; border: 1px solid var(--border); border-radius: 28px; background: var(--card); padding: 28px; box-shadow: var(--shadow-soft); }
.stars { display: flex; gap: 4px; color: var(--accent); }
.quote blockquote { margin-top: 16px; line-height: 1.7; }
.quote figcaption { color: var(--muted); font-size: 14px; margin-top: 20px; }
.quote figcaption b { color: var(--fg); }

/* Contact */
.contact { background: var(--primary); color: var(--primary-fg); scroll-margin-top: 96px; }
.contact .lead { color: rgba(247,251,247,.75); }
.channels { display: grid; gap: 24px; margin-top: 48px; }
@media (min-width: 768px) { .channels { grid-template-columns: repeat(3, 1fr); } }
.channel { display: flex; flex-direction: column; height: 100%; border-radius: 28px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05); padding: 28px; transition: background-color .25s ease; }
.channel:hover { background: rgba(255,255,255,.1); }
.channel .icon-badge { background-image: var(--ember); color: var(--accent-fg); }
.channel h3 { font-family: inherit; font-size: 20px; font-weight: 600; margin-top: 20px; }
.channel p { color: rgba(247,251,247,.7); font-size: 14px; line-height: 1.6; margin-top: 8px; }
.channel .link { color: var(--accent-2); font-size: 14px; font-weight: 600; margin-top: 20px; word-break: break-all; }
.contact-cta { display: grid; gap: 24px; align-items: center; margin-top: 48px; padding: 36px; border-radius: 28px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05); }
@media (min-width: 1024px) { .contact-cta { grid-template-columns: minmax(0,1fr) auto; padding: 40px; } }
.contact-cta .loc { display: flex; align-items: center; gap: 8px; color: rgba(247,251,247,.7); font-size: 14px; }
.contact-cta h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 600; margin-top: 12px; }

/* Footer */
.site-footer { background: var(--cream); border-top: 1px solid var(--border); }
.footer-inner { display: flex; flex-direction: column; gap: 24px; padding-block: 40px; }
@media (min-width: 640px) { .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 999px; background: var(--primary); color: var(--primary-fg); font-family: "Fraunces", serif; font-weight: 700; }
.footer-brand p { font-family: "Fraunces", serif; font-size: 18px; font-weight: 600; }
.footer-brand small { color: var(--muted); font-size: 12px; }
.socials { display: flex; gap: 12px; }
.socials a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--border); transition: background-color .2s ease, color .2s ease; }
.socials a:hover { background: var(--primary); color: var(--primary-fg); }
.copy { color: var(--muted); font-size: 12px; }

/* Floating WhatsApp */
.floating {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 999px; font-weight: 600; font-size: 14px;
  background-image: var(--ember); color: var(--accent-fg); box-shadow: var(--shadow-lift);
  opacity: 0; transform: translateY(24px); pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.floating.show { opacity: 1; transform: none; pointer-events: auto; }
.floating .label { display: none; }
@media (min-width: 640px) { .floating .label { display: inline; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}