/* ============================================================
   The Kingdom · Books, Gifts & Faith — styles
   Paleta oficial: #F7F4EE #E9E1D4 #C7D2C1 #8FA187 #6B7A5E #D4AF37
   ============================================================ */

:root {
  --cream: #F7F4EE;
  --sand: #E9E1D4;
  --sage-light: #C7D2C1;
  --sage: #8FA187;
  --olive: #6B7A5E;
  --olive-deep: #4F5C45;
  --gold: #D4AF37;
  --gold-soft: #E6CF83;
  --ink: #2E3328;
  --muted: #6E7466;

  --bg: var(--cream);
  --text: var(--ink);

  --font-script: "Allura", cursive;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", system-ui, sans-serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --radius: 22px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px -20px rgba(79, 92, 69, .35);
  --shadow-sm: 0 10px 30px -14px rgba(79, 92, 69, .3);
  --nav-h: 76px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
em { font-style: italic; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
@media (min-width: 768px) { .container { width: min(100% - 4rem, var(--container)); } }

/* ---------- Typography ---------- */
.kicker {
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 1rem;
  display: flex; align-items: center; gap: .8rem;
}
.kicker::before {
  content: ""; width: 28px; height: 1px; background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 0 0 1.2rem;
  text-wrap: balance;
  color: var(--olive-deep);
}
.section-title em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.32em;
  color: var(--olive);
  line-height: .9;
}

.section-lead {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-size: .86rem; font-weight: 500;
  letter-spacing: .02em;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s, color .3s, border-color .3s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--olive);
  color: var(--cream);
  box-shadow: 0 12px 26px -12px rgba(107, 122, 94, .7);
}
.btn-primary:hover { background: var(--olive-deep); transform: translateY(-2px); box-shadow: 0 18px 30px -12px rgba(107, 122, 94, .75); }
.btn-ghost {
  border-color: rgba(107, 122, 94, .35);
  color: var(--olive-deep);
  background: rgba(255, 255, 255, .35);
}
.btn-ghost:hover { border-color: var(--olive); background: rgba(255,255,255,.7); transform: translateY(-2px); }
.btn-sm { padding: .55rem 1.05rem; font-size: .78rem; background: var(--sand); color: var(--olive-deep); }
.btn-sm:hover { background: var(--olive); color: var(--cream); }
.btn-nav { padding: .6rem 1.15rem; font-size: .78rem; background: var(--olive); color: var(--cream); }
.btn-nav:hover { background: var(--olive-deep); }

/* ---------- Splash ---------- */
.splash {
  position: fixed; inset: 0; z-index: 100;
  background: var(--cream);
  display: grid; place-items: center;
  color: var(--olive);
  transition: opacity .7s var(--ease-soft), clip-path 1s var(--ease-out);
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-inner { display: grid; justify-items: center; gap: .4rem; animation: splashIn 1.2s var(--ease-out) both; }
.splash-crown { width: 56px; color: var(--gold); }
.splash-word { font-family: var(--font-script); font-size: 3.4rem; line-height: 1; }
@keyframes splashIn { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-inline: clamp(1rem, 4vw, 3rem);
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.nav.is-scrolled {
  background: rgba(247, 244, 238, .82);
  box-shadow: 0 8px 30px -18px rgba(79, 92, 69, .4);
}
@supports (backdrop-filter: blur(14px)) {
  .nav.is-scrolled { background: rgba(247, 244, 238, .66); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); }
}
.nav-brand { display: flex; align-items: center; gap: .55rem; color: var(--olive-deep); }
.nav-crown { width: 30px; color: var(--gold); display: inline-flex; }
.nav-name { font-family: var(--font-script); font-size: 2rem; line-height: 1; position: relative; top: 2px; }
.nav-name small { font-family: var(--font-sans); font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; position: relative; top: -.9em; margin-right: .2rem; }
.nav-links { display: none; gap: 2rem; }
.nav-links a { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--olive-deep); position: relative; padding-block: .3rem; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav .btn-nav { display: none; }
.nav-toggle { width: 42px; height: 42px; display: grid; place-items: center; gap: 0; border-radius: 50%; background: rgba(255,255,255,.5); }
.nav-toggle span { width: 20px; height: 1.5px; background: var(--olive-deep); display: block; margin: 2.5px 0; transition: transform .35s var(--ease-out), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 899px) {
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    display: flex; flex-direction: column; gap: 0;
    background: var(--cream);
    padding: .5rem 1.5rem 1.5rem;
    box-shadow: 0 20px 40px -20px rgba(79,92,69,.4);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .4s var(--ease-out), opacity .3s;
  }
  .nav-links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 1rem 0; border-bottom: 1px solid var(--sand); font-size: .95rem; }
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav .btn-nav { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out) var(--d, 0s), transform .9s var(--ease-out) var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  padding: calc(var(--nav-h) + 2.5rem) 0 4rem;
  display: flex; align-items: center;
  background:
    radial-gradient(60% 50% at 85% 20%, rgba(199, 210, 193, .55), transparent 70%),
    radial-gradient(50% 40% at 10% 90%, rgba(233, 225, 212, .9), transparent 70%),
    var(--cream);
  overflow: clip;
}
.hero-leaf { position: absolute; color: var(--sage); opacity: .45; pointer-events: none; width: clamp(80px, 12vw, 150px); }
.hero-leaf--l { left: -1.5%; top: 12%; transform: rotate(-24deg); animation: sway 9s ease-in-out infinite; }
.hero-leaf--r { right: -1%; bottom: 6%; transform: rotate(160deg); animation: sway 11s ease-in-out infinite reverse; }
@keyframes sway { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }

.hero-inner {
  width: min(100% - 2rem, var(--container)); margin-inline: auto;
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 900px) { .hero-inner { grid-template-columns: 1.05fr .95fr; width: min(100% - 4rem, var(--container)); gap: 4rem; } }

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.7rem, 6.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin: 0 0 1.4rem;
  text-wrap: balance;
  max-width: 14ch;
  color: var(--olive-deep);
}
.hero-title em {
  font-family: var(--font-script); font-style: normal; font-weight: 400;
  font-size: 1.28em; line-height: .85; color: var(--olive);
  display: inline-block; position: relative;
}
.hero-title em::after {
  content: ""; position: absolute; left: 4%; right: 4%; bottom: -.02em; height: .09em;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 99px; opacity: .8;
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.2s var(--ease-out) .8s;
}
.reveal.is-visible .hero-title em::after, .hero-title.is-visible em::after { transform: scaleX(1); }

.hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 50ch; margin: 0 0 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2rem; }
.hero-pills { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem .9rem; }
.hero-pills li { font-size: .74rem; letter-spacing: .06em; color: var(--olive-deep); display: flex; align-items: center; gap: .45rem; }
.hero-pills li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.hero-visual { position: relative; aspect-ratio: 1 / 1.05; max-width: 520px; margin-inline: auto; width: 100%; }
.hero-card {
  margin: 0; position: absolute; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--sand);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  transform-style: preserve-3d;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card--main { inset: 6% 12% 10% 0; animation: floatA 8s ease-in-out infinite; }
.hero-card--sm { right: 0; bottom: 0; width: 46%; aspect-ratio: 1; border: 6px solid var(--cream); animation: floatB 7s ease-in-out infinite; }
@keyframes floatA { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }
@keyframes floatB { 0%,100% { translate: 0 0; } 50% { translate: 0 10px; } }
.hero-badge {
  position: absolute; top: -1.2rem; right: 2%;
  width: 118px; height: 118px; border-radius: 50%;
  background: var(--olive); color: var(--cream);
  display: grid; place-content: center; text-align: center; line-height: 1;
  box-shadow: 0 14px 30px -14px rgba(79,92,69,.6);
  border: 3px solid var(--cream);
  animation: spinSlow 18s linear infinite;
}
.hero-badge-script { font-family: var(--font-script); font-size: 1.6rem; }
.hero-badge-caps { font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; margin-top: .3rem; }
@keyframes spinSlow { from { rotate: -6deg; } 50% { rotate: 6deg; } to { rotate: -6deg; } }

.hero-scroll { position: absolute; left: 50%; bottom: 1.4rem; translate: -50% 0; width: 24px; height: 40px; border: 1.5px solid var(--sage); border-radius: 14px; display: none; }
.hero-scroll span { position: absolute; left: 50%; top: 7px; width: 3px; height: 8px; border-radius: 3px; background: var(--gold); translate: -50% 0; animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 0; translate: -50% 0; } 40% { opacity: 1; } 100% { opacity: 0; translate: -50% 14px; } }
@media (min-width: 900px) { .hero-scroll { display: block; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; background: var(--olive); color: var(--cream); padding: .8rem 0; border-block: 1px solid rgba(212,175,55,.35); }
.marquee-track { display: flex; gap: 2.5rem; width: max-content; animation: marquee 38s linear infinite; font-family: var(--font-serif); font-size: 1.15rem; font-style: italic; letter-spacing: .02em; }
.marquee-track i { font-style: normal; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation-duration: 90s; } }

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section-head { max-width: 640px; margin-bottom: 2.5rem; }

/* ---------- Hero tipográfico ---------- */
.hero--type { justify-content: center; text-align: center; }
.hero-ring {
  position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  width: min(92vw, 820px); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(212,175,55,.35);
  box-shadow: inset 0 0 0 40px rgba(199,210,193,.18);
  pointer-events: none;
  animation: ringBreath 12s ease-in-out infinite;
}
@keyframes ringBreath { 0%,100% { scale: 1; opacity: .9; } 50% { scale: 1.04; opacity: 1; } }
.hero-center { position: relative; width: min(100% - 2rem, 820px); margin-inline: auto; display: grid; justify-items: center; }
.hero-crown { width: 58px; color: var(--gold); margin-bottom: .6rem; }
.kicker--center { justify-content: center; }
.kicker--center::before { display: none; }
.hero-title--center { max-width: 16ch; margin-inline: auto; }
.hero-sub--center { margin-inline: auto; text-align: center; max-width: 54ch; }
.hero-actions--center { justify-content: center; }
.hero-pills--center { justify-content: center; }
.btn-lg { padding: 1.05rem 2rem; font-size: .92rem; }
.btn-chevron { transition: transform .4s var(--ease-out); }
[aria-expanded="true"] .btn-chevron { transform: rotate(180deg); }

/* ---------- Propósito ---------- */
.purpose { background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%); }
.purpose-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); margin-top: 1rem; }
.purpose-card {
  position: relative; padding: 2rem 1.7rem 2.1rem;
  background: rgba(255,255,255,.6); border: 1px solid rgba(233,225,212,.9);
  border-radius: var(--radius); text-align: center;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), background .4s;
}
.purpose-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); background: #fff; }
.purpose-card::before { content: ""; position: absolute; top: 0; left: 50%; translate: -50% 0; width: 44px; height: 2px; background: var(--gold); border-radius: 2px; }
.purpose-icon { display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--sage-light); color: var(--olive-deep); margin-bottom: 1rem; }
.purpose-icon svg { width: 28px; height: 28px; }
.purpose-card h3 { font-family: var(--font-script); font-weight: 400; font-size: 2.3rem; line-height: 1; margin: 0 0 .6rem; color: var(--olive); }
.purpose-card p { margin: 0; font-size: .9rem; color: var(--muted); }

/* ---------- Colección ---------- */
.collection { position: relative; background: var(--cream); }
.collection::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .6; }
.collection-intro { text-align: center; max-width: 720px; margin-inline: auto; }
.collection-intro .section-title { font-size: clamp(2.3rem, 5vw, 3.8rem); }
.collection-lead { font-family: var(--font-serif); font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.55; color: var(--olive-deep); margin: 0 auto 1.1rem; max-width: 60ch; }
.collection-lead strong { font-weight: 600; color: var(--olive); }
.collection-intro .btn-lg { margin-top: 1.2rem; }

.collection-panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .8s var(--ease-out);
}
.collection-panel.is-open { grid-template-rows: 1fr; }
.collection-inner { overflow: hidden; min-height: 0; opacity: 0; translate: 0 20px; transition: opacity .6s var(--ease-out) .15s, translate .7s var(--ease-out) .15s; }
.collection-panel.is-open .collection-inner { opacity: 1; translate: 0 0; }

.collection-group { padding-top: 3.5rem; }
.collection-group:first-child { padding-top: 4rem; }
.group-head { display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; align-items: baseline; margin-bottom: 1.6rem; padding-bottom: 1rem; border-bottom: 1px solid var(--sand); }
.group-num { font-family: var(--font-serif); font-size: .9rem; letter-spacing: .25em; color: var(--gold); }
.group-head h3 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0; color: var(--olive-deep); }
.group-head p { grid-column: 2; margin: .2rem 0 0; font-size: .86rem; color: var(--muted); }

.pgrid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr)); }
.product {
  background: #fff; border: 1px solid rgba(233,225,212,.9); border-radius: var(--radius-sm);
  padding: .8rem .8rem 1.1rem; display: flex; flex-direction: column; gap: .45rem;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.product figure { margin: 0; aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: var(--sand); }
.product img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.product:hover img { transform: scale(1.05); }
.product h4 { font-family: var(--font-serif); font-weight: 600; font-size: 1.12rem; line-height: 1.15; margin: .4rem 0 0; color: var(--olive-deep); }
.product p { margin: 0; font-size: .8rem; color: var(--muted); flex: 1; }
.pprice { display: block; margin-top: .45rem; font-family: var(--font-serif); font-style: normal; font-weight: 600; font-size: 1.05rem; color: var(--olive); }
.plink { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--olive); font-weight: 600; margin-top: .3rem; display: inline-flex; gap: .4rem; align-items: center; }
.plink span { transition: transform .3s var(--ease-out); }
.plink:hover span { transform: translateX(4px); }
@media (min-width: 720px) {
  .product--wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto 1fr auto; column-gap: 1.2rem; align-content: start; }
  .product--wide figure { grid-row: 1 / -1; aspect-ratio: 4 / 5; }
  .product--wide h4 { font-size: 1.4rem; margin-top: .6rem; }
  .product--wide p { font-size: .88rem; }
}

.collection-foot { margin-top: 3.5rem; padding: 2.2rem; border-radius: var(--radius); background: var(--olive-deep); color: var(--cream); text-align: center; display: grid; gap: 1rem; justify-items: center; }
.collection-foot p { margin: 0; font-family: var(--font-serif); font-size: 1.2rem; font-style: italic; max-width: 48ch; }
.collection-foot .btn-primary { background: var(--gold); color: var(--olive-deep); box-shadow: none; }
.collection-foot .btn-primary:hover { background: var(--gold-soft); }

.kits-inner--text { align-items: center; }
.pillars--stack { grid-template-columns: repeat(2, 1fr); margin: 0; }

/* ---------- Showcase (lo que encontrarás) ---------- */
.section-head--center { margin-inline: auto; text-align: center; max-width: 680px; }
.section-head--center .kicker { justify-content: center; }
.section-head--center .kicker::before { display: none; }
.section-head--center .section-lead { margin-inline: auto; }

.showcase { display: grid; gap: 1.8rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.show {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(233,225,212,.9);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), background .4s;
  transform-style: preserve-3d;
}
.show:hover { box-shadow: var(--shadow); background: #fff; }
.show-media { margin: 0; aspect-ratio: 1; overflow: hidden; background: var(--sand); }
.show-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.show:hover .show-media img { transform: scale(1.05); }
.show-body { padding: 1.3rem 1.4rem 1.6rem; position: relative; }
.show-num { font-family: var(--font-serif); font-size: .85rem; letter-spacing: .2em; color: var(--gold); display: block; margin-bottom: .4rem; }
.show-body h3 { font-family: var(--font-serif); font-weight: 600; font-size: 1.45rem; line-height: 1.1; margin: 0 0 .5rem; color: var(--olive-deep); }
.show-body p { margin: 0; font-size: .88rem; color: var(--muted); }
.catalog-cta { margin: 3rem auto 0; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; font-family: var(--font-serif); font-size: 1.3rem; font-style: italic; color: var(--olive-deep); }

.values { list-style: none; padding: 1.5rem 0 0; margin: 1.5rem 0 0; border-top: 1px solid var(--sand); display: grid; gap: .6rem; }
.values li { font-size: .92rem; color: var(--muted); display: flex; align-items: baseline; gap: .6rem; }
.values li::before { content: "♡"; color: var(--gold); font-size: .8rem; }
.values strong { color: var(--olive-deep); font-weight: 600; }

/* ---------- Catalog ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.4rem; }
.chip {
  padding: .55rem 1.1rem; border-radius: 999px;
  border: 1px solid rgba(107,122,94,.3); font-size: .78rem; letter-spacing: .04em;
  color: var(--olive-deep); background: rgba(255,255,255,.4);
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease-out);
}
.chip:hover { border-color: var(--olive); transform: translateY(-1px); }
.chip.is-active { background: var(--olive); color: var(--cream); border-color: var(--olive); }

.grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr)); }
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(233,225,212,.9);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), opacity .4s;
  transform-style: preserve-3d;
}
.card:hover { box-shadow: var(--shadow); }
.card.is-hidden { display: none; }
.card-media { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: var(--sand); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.card:hover .card-media img { transform: scale(1.05); }
.card-tag {
  position: absolute; top: .8rem; left: .8rem;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  background: rgba(247,244,238,.92); color: var(--olive-deep);
  padding: .35rem .7rem; border-radius: 999px;
}
.card-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card-body h3 { font-family: var(--font-serif); font-weight: 600; font-size: 1.3rem; line-height: 1.15; margin: 0; color: var(--olive-deep); }
.card-body h3 em { font-style: italic; font-weight: 500; }
.card-body p { margin: 0; font-size: .86rem; color: var(--muted); flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .6rem; gap: .5rem; }
.price { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--olive); }
.grid-empty { text-align: center; color: var(--muted); padding: 2rem; font-style: italic; }

/* ---------- Kits ---------- */
.kits { background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%); position: relative; }
.kits-inner { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .kits-inner { grid-template-columns: .9fr 1.1fr; gap: 5rem; } }
.kits-figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; transform-style: preserve-3d; transition: transform .5s var(--ease-out); }
.kits-figure img { width: 100%; height: 100%; object-fit: cover; }
.pillars { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 600px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillars li { display: grid; gap: .15rem; padding: 1rem; border-radius: var(--radius-sm); background: rgba(255,255,255,.55); border: 1px solid rgba(233,225,212,.9); transition: transform .4s var(--ease-out), box-shadow .4s; }
.pillars li:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.pillar-icon { width: 34px; height: 34px; color: var(--gold); margin-bottom: .4rem; }
.pillars strong { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--olive-deep); }
.pillars span:not(.pillar-icon) { font-size: .82rem; color: var(--muted); }

/* ---------- Verse ---------- */
.verse { position: relative; padding: clamp(5rem, 10vw, 8rem) 1.5rem; text-align: center; background: var(--olive-deep); color: var(--cream); overflow: clip; }
.verse-halo { position: absolute; inset: -60% -20%; background: radial-gradient(40% 35% at 50% 50%, rgba(212,175,55,.35), transparent 70%); filter: blur(80px); pointer-events: none; }
.verse blockquote { position: relative; margin: 0 auto; max-width: 760px; }
.verse p { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: clamp(1.7rem, 4vw, 2.9rem); line-height: 1.25; margin: 0 0 1.2rem; text-wrap: balance; }
.verse cite { font-style: normal; font-size: .74rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-soft); }
.verse cite::before { content: "— "; }

/* ---------- About ---------- */
.about-inner { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .about-inner { grid-template-columns: 1.1fr .9fr; gap: 5rem; } }
.about-copy p:not(.kicker) { color: var(--muted); max-width: 54ch; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0 0; padding-top: 1.5rem; border-top: 1px solid var(--sand); }
.stats dt { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 500; color: var(--olive); line-height: 1; }
.stats dd { margin: .3rem 0 0; font-size: .74rem; letter-spacing: .04em; color: var(--muted); }
.about-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.about-gallery figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow-sm); }
.about-gallery figure:nth-child(2) { translate: 0 1.6rem; }
.about-gallery figure:nth-child(4) { translate: 0 1.6rem; }
.about-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.about-gallery figure:hover img { transform: scale(1.06); }

/* ---------- Contact ---------- */
.contact { padding-top: 0; }
.contact-card {
  position: relative;
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(160deg, #fff 0%, var(--cream) 60%, var(--sand) 100%);
  border: 1px solid rgba(212,175,55,.35);
  box-shadow: var(--shadow);
  overflow: clip;
}
.contact-card::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(212,175,55,.35); border-radius: calc(var(--radius) + 2px); pointer-events: none; }
.contact-card .kicker { justify-content: center; }
.contact-card .kicker::before { display: none; }
.contact-card .section-lead { margin-inline: auto; }
.contact-logo { width: 88px; height: 88px; margin: 0 auto 1.2rem; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-sm); }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 1.5rem; }
.contact-note { margin: 1.6rem 0 0; font-size: .74rem; letter-spacing: .06em; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--olive-deep); color: var(--sage-light); padding: 3rem 0 2rem; }
.footer-inner { display: grid; gap: 1.5rem; text-align: center; }
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1fr auto 1fr; align-items: center; text-align: left; } .footer-copy { text-align: right; } }
.footer-name { font-family: var(--font-script); font-size: 2.2rem; color: var(--cream); line-height: 1; display: block; }
.footer-name small { font-family: var(--font-sans); font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; position: relative; top: -.9em; margin-right: .2rem; }
.footer-tag { font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-soft); }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; }
.footer-links a { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; transition: color .3s; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-copy { margin: 0; font-size: .74rem; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,.7);
  transition: transform .4s var(--ease-out);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37,211,102,.5); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.8); opacity: .8; } 100% { transform: scale(1.35); opacity: 0; } }

/* ---------- Reduced motion: only intrusive loops ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero-badge, .hero-leaf, .hero-card--main, .hero-card--sm { animation: none; }
  .wa-float::after { animation: none; }
}

::selection { background: var(--gold-soft); color: var(--ink); }
