:root {
  --ivory: #fbf6ea;
  --cream: #f4ead6;
  --sand: #e6d3b0;
  --ink: #2a1a12;
  --muted: #6f5b4c;
  --maroon: #6b1d2a;
  --maroon-deep: #3d1018;
  --gold: #b8923a;
  --line: #eadcc4;
  --shadow: 0 10px 30px rgb(61 16 24 / 0.08);
  --sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --wrap: 76rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.1; text-wrap: balance; margin: 0; }
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); color: var(--maroon); }
h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); color: var(--maroon); }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--maroon); outline-offset: 3px; }

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--maroon);
  color: var(--ivory);
  padding: 0.6rem 1rem;
  z-index: 80;
}
.skip:focus { top: 1rem; }

.wrap { width: min(var(--wrap), calc(100% - 2.5rem)); margin-inline: auto; }
.kicker {
  margin: 0;
  color: var(--maroon);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.kicker.gold { color: var(--gold); }
.sub { max-width: 40rem; color: var(--muted); }
.lede { font-size: 1.125rem; color: var(--muted); }
.note { color: var(--muted); font-size: 0.92rem; }
.row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
.text-link { color: var(--maroon); font-weight: 600; font-size: 0.92rem; }

.btn, .icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
.btn { padding: 0.7rem 1.25rem; border: 1px solid transparent; }
.btn-solid { background: var(--maroon); color: var(--ivory); border-color: var(--maroon); }
.btn-line { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn-ivory { background: var(--ivory); color: var(--maroon); }
.icon-btn {
  width: 2.75rem;
  padding: 0;
  background: var(--ivory);
  border: 1px solid var(--sand);
  color: var(--ink);
}
.icon-btn svg, .btn svg { width: 1.1rem; height: 1.1rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.topbar { background: var(--maroon); color: var(--ivory); font-size: 0.92rem; }
.topbar-inner { display: flex; justify-content: space-between; gap: 1rem; padding: 0.45rem 0; }
.topbar a { font-weight: 600; white-space: nowrap; text-decoration: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgb(251 246 234 / 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner { display: flex; align-items: center; gap: 1rem; padding: 0.7rem 0; }
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; min-width: 0; }
.brand img { width: 3.5rem; height: 3.5rem; border-radius: 50%; object-fit: cover; }
.brand strong { display: block; font-family: var(--display); font-size: 1.55rem; color: var(--maroon); line-height: 1; }
.brand small { display: block; margin-top: 0.25rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-size: 0.68rem; }
.nav { display: none; gap: 1rem; margin-left: auto; }
.nav a { text-decoration: none; font-size: 0.92rem; }
.nav a:hover { color: var(--maroon); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 0.5rem; }
.header-actions .btn span { display: none; }
.menu-btn .icon-close { display: none; }
.menu-btn[aria-expanded="true"] .icon-open { display: none; }
.menu-btn[aria-expanded="true"] .icon-close { display: block; }
.mobile-nav { display: grid; gap: 0.25rem; padding: 0.4rem 1.25rem 1rem; border-top: 1px solid var(--line); }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { text-decoration: none; padding: 0.75rem 0.4rem; border-radius: 0.8rem; }
.mobile-nav a:hover { background: var(--cream); }

.hero { padding: 3rem 0 4rem; }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.hero .row { margin-top: 1.5rem; }
.hero-art { position: relative; }
.hero-art > img:first-child { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 1.5rem; box-shadow: var(--shadow); }
.hero-seal {
  display: none;
  position: absolute;
  left: -0.5rem;
  bottom: -1.5rem;
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 50%;
  border: 4px solid var(--ivory);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.section { padding: 4rem 0; }
.section.tight { padding-top: 0; }
.band { background: var(--cream); }
.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1rem; }

.snap {
  position: relative;
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.4rem;
  margin-top: 1.5rem;
}
.snap::-webkit-scrollbar { display: none; }
.feature-card, .story {
  scroll-snap-align: start;
  flex: 0 0 86%;
}
.story { flex-basis: 20rem; background: var(--cream); border: 1px solid var(--line); border-radius: 1rem; padding: 1.4rem; }
.story p { font-size: 1.05rem; }
.story .who { margin: 1.2rem 0 0; font-weight: 600; }
.story .where { margin: 0; color: var(--muted); font-size: 0.9rem; }
.star { width: 1rem; height: 1rem; fill: var(--gold); }

.dots { display: flex; justify-content: center; margin-top: 0.6rem; }
.dots button {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  padding: 0;
}
.dots button span { display: block; height: 0.6rem; width: 0.6rem; margin: auto; border-radius: 999px; background: var(--sand); }
.dots button[aria-selected="true"] span { width: 2rem; background: var(--maroon); }

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card .media { position: relative; aspect-ratio: 4 / 3; }
.card .media img, .product .media img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--ivory);
  color: var(--maroon);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.card .body, .product .body { display: flex; flex-direction: column; gap: 0.7rem; padding: 1.2rem; flex: 1; }
.card h3, .product h3, .service h3 { font-size: 1.7rem; color: var(--maroon); }
.card .benefit { margin: 0; font-style: italic; }
.meta { display: flex; gap: 0.45rem; align-items: flex-start; margin: 0; color: var(--muted); font-size: 0.92rem; }
.meta svg { width: 1rem; height: 1rem; flex: none; margin-top: 0.15rem; fill: none; stroke: currentColor; stroke-width: 1.8; }
.stats { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.92rem; }
.stats strong { color: var(--maroon); }
.rule { height: 1px; background: var(--sand); margin-top: auto; }
.card .btn { margin-top: 0.2rem; }

.filters { display: flex; gap: 0.5rem; overflow-x: auto; padding-bottom: 0.4rem; margin-top: 1.2rem; }
.chip {
  flex: none;
  border-radius: 999px;
  border: 1px solid var(--sand);
  background: var(--ivory);
  color: var(--ink);
  min-height: 2.5rem;
  padding: 0.4rem 1rem;
}
.chip[aria-pressed="true"] { background: var(--maroon); color: var(--ivory); border-color: var(--maroon); }
.cards { display: grid; gap: 1.25rem; margin-top: 1.2rem; }
.empty { color: var(--muted); }
#load-more { margin-top: 1.5rem; }

.help-panel {
  display: grid;
  gap: 2rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  background: var(--ivory);
}
form { display: grid; gap: 0.9rem; }
label { display: grid; gap: 0.35rem; font-size: 0.92rem; font-weight: 600; }
input, textarea {
  font: inherit;
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--sand);
  border-radius: 1rem;
  padding: 0.75rem 0.9rem;
}
fieldset { border: 0; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.package {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  border: 1px solid var(--sand);
  border-radius: 1rem;
  padding: 0.8rem 1rem;
  font-weight: 400;
}
.package:has(input:checked) { border-color: var(--maroon); background: var(--cream); }
.package strong { display: block; }
.package span { display: block; color: var(--muted); font-size: 0.9rem; }
.form-error { margin: 0; color: var(--maroon); min-height: 1.2rem; }

.process { background: var(--maroon-deep); color: var(--ivory); }
.process h2 { color: var(--ivory); }
.light { color: var(--cream); }
.steps { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1rem; }
.steps li { border: 1px solid rgb(244 234 214 / 0.25); border-radius: 1rem; padding: 1.2rem; background: rgb(251 246 234 / 0.05); }
.steps .n { font-family: var(--display); font-size: 2.2rem; color: var(--gold); }
.steps h3 { color: var(--ivory); font-size: 1.6rem; margin-top: 0.3rem; }
.steps p { color: var(--cream); margin-bottom: 0; }

.chooser {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  background: var(--maroon);
  color: var(--ivory);
  border-radius: 1.5rem;
  padding: 1.6rem;
}
.chooser h2 { color: var(--ivory); }
.chooser p { color: var(--cream); margin: 0.4rem 0 0; }

.products { display: grid; gap: 1rem; margin-top: 1.5rem; }
.product { display: flex; flex-direction: column; background: var(--ivory); border: 1px solid var(--line); border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow); }
.product .media { aspect-ratio: 1; }
.product.wide .media { aspect-ratio: 4 / 3; }
.product .body p { color: var(--muted); margin: 0; }
.product .btn { align-self: flex-start; margin-top: auto; }
.trust { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.8rem; }
.trust li { background: var(--ivory); border: 1px solid var(--line); border-radius: 1rem; padding: 1rem 1.1rem; }
.trust strong { display: block; color: var(--maroon); }
.trust span { color: var(--muted); font-size: 0.92rem; }

.about-grid { display: grid; gap: 2rem; align-items: center; }
.seal {
  background-color: var(--cream);
  background-image: radial-gradient(circle, rgb(184 146 58 / 0.45) 1px, transparent 1px);
  background-size: 18px 18px;
  border-radius: 1.5rem;
  padding: 2rem;
}
.seal img { width: min(100%, 26rem); margin: auto; border-radius: 50%; }
.prose p { color: var(--muted); font-size: 1.08rem; }

.services { display: grid; gap: 1rem; margin-top: 1.5rem; }
.service { background: var(--ivory); border: 1px solid var(--line); border-radius: 1rem; padding: 1.3rem; }
.service p { color: var(--muted); }
.mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--maroon);
  font-family: var(--display);
  font-size: 1.3rem;
}
.service a { color: var(--maroon); font-weight: 600; font-size: 0.92rem; }

.footer { background: var(--maroon-deep); color: var(--ivory); }
.footer-grid { display: grid; gap: 2rem; padding: 3.5rem 0; }
.footer img { width: 5rem; height: 5rem; border-radius: 50%; object-fit: cover; }
.footer-name { font-family: var(--display); font-size: 2rem; margin: 0.8rem 0 0.3rem; }
.footer a { color: var(--cream); text-decoration: none; }
.footer a:hover { color: var(--ivory); }
.footer-wa { display: inline-block; margin-top: 0.8rem; color: var(--ivory); font-weight: 600; font-size: 1.1rem; }
.footer ul { list-style: none; margin: 0.8rem 0 0; padding: 0; display: grid; gap: 0.45rem; }
.legal { border-top: 1px solid rgb(244 234 214 / 0.2); }
.legal-inner { display: flex; flex-direction: column; gap: 0.3rem; padding: 1rem 0 5.5rem; color: var(--cream); font-size: 0.9rem; }
.legal p { margin: 0; }

.wa-float {
  position: fixed;
  z-index: 45;
  right: 1.15rem;
  bottom: 1.15rem;
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgb(18 140 126 / 0.45);
}
.wa-float:hover { background: #1ebe5d; }
.wa-float svg { width: 1.9rem; height: 1.9rem; fill: currentColor; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgb(42 26 18 / 0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.modal[hidden] { display: none; }
.modal-card {
  width: min(32rem, 100%);
  max-height: 92vh;
  overflow: auto;
  background: var(--ivory);
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.modal-head { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; }
.modal h2 { font-size: 2rem; }

@media (min-width: 640px) {
  .header-actions .btn span { display: inline; }
  .hero-seal { display: block; }
  .feature-card { flex-basis: 22.5rem; }
  .modal { align-items: center; padding: 1.5rem; }
  .modal-card { border-radius: 1.5rem; }
}

@media (min-width: 800px) {
  .hero-grid, .about-grid, .help-panel { grid-template-columns: 1fr 1fr; }
  .cards, .steps, .services, .trust { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .chooser { flex-direction: row; align-items: center; justify-content: space-between; padding: 2rem 2.4rem; }
  .legal-inner { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1100px) {
  .nav { display: flex; }
  .menu-btn, .mobile-nav { display: none; }
  .header-actions { margin-left: 0; }
  .cards, .steps, .services { grid-template-columns: 1fr 1fr 1fr; }
  .products { grid-template-columns: repeat(4, 1fr); }
  .product.wide { grid-column: span 2; grid-row: span 2; }
  .feature-card { flex-basis: calc((100% - 2.5rem) / 3); }
  .trust { grid-template-columns: 1fr 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
