@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;700;800&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap");

:root {
  --bg: #fff8ef;
  --bg-accent: #ffe5c4;
  --ink: #20150f;
  --muted: #5e4e45;
  --brand: #ff6a3d;
  --brand-dark: #db4b1f;
  --line: #e9d8c3;
  --card: #fffefc;
  --ok: #1f8a70;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(32, 21, 15, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 15%, #ffe9ce 0%, transparent 38%),
    radial-gradient(circle at 85% 25%, #ffd4b2 0%, transparent 34%),
    linear-gradient(145deg, var(--bg) 0%, #fffdfa 100%);
  font-family: "Bricolage Grotesque", "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header,
main,
.site-footer {
  width: min(1120px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0.8rem;
  z-index: 10;
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 252, 246, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  text-decoration: none;
}

.brand span {
  letter-spacing: 0.02em;
}

.site-header nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
}

.site-header nav a:hover {
  background: #fff0df;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.82rem 1.3rem;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  transition: transform 0.22s ease, background 0.22s ease;
}

.btn:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.56rem 0.95rem;
  font-size: 0.88rem;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  background: #fff2e4;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.8rem;
  align-items: center;
  padding: 4rem 0 2rem;
}

.eyebrow {
  color: var(--ok);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.7rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 16ch;
}

.hero-copy > p {
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1.2rem 0;
}

.quick-points {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.hero-art img {
  width: 100%;
  max-width: 460px;
  display: block;
  margin-inline: auto;
  filter: drop-shadow(0 14px 35px rgba(32, 21, 15, 0.15));
}

.trust-strip {
  margin-top: 1.4rem;
  background: linear-gradient(100deg, #fff7ee, #fff1dd);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1.1rem;
}

.trust-strip article {
  padding: 0.6rem;
}

.trust-strip h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.trust-strip p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.section-head {
  margin: 4rem 0 1.25rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.1vw, 2.5rem);
  max-width: 18ch;
}

.product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #f3e4d4;
}

.product-card p {
  color: var(--muted);
}

.price {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0.6rem 0 1rem;
}

.process {
  margin-top: 3.8rem;
  padding: 1.2rem;
  background: #fff6ea;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process li {
  background: #fffefb;
  border: 1px dashed #e6c9a5;
  border-radius: 14px;
  padding: 1rem;
}

.process p,
.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
}

.cta {
  margin: 4rem 0;
  border: 1px solid #ffd5bb;
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(145deg, rgba(255, 106, 61, 0.12), rgba(255, 106, 61, 0.02)),
    #fff7ef;
  padding: 2rem;
}

.cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.cta p {
  max-width: 56ch;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.3rem 0 2.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger {
  transition-delay: calc(var(--stagger, 0) * 110ms);
}

@media (max-width: 960px) {
  .hero,
  .product-grid,
  .process ol {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
