:root {
  --bg: #fff8f1;
  --bg-soft: #ffeede;
  --surface: #ffffff;
  --text: #1d1620;
  --muted: #65566c;
  --brand: #ff5a36;
  --brand-strong: #ff2f6d;
  --ink: #2e1f39;
  --line: #f2d9c8;
  --chip: #ffe2cb;
  --chip-active: #2e1f39;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(51, 24, 12, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 90, 54, 0.24), transparent 33%),
    radial-gradient(circle at 86% 2%, rgba(255, 47, 109, 0.2), transparent 36%),
    linear-gradient(180deg, #fff8f1 0%, #fff0e4 100%);
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(10px);
  background: rgba(255, 248, 241, 0.86);
  border-bottom: 1px solid rgba(255, 90, 54, 0.15);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
}

.logo-image {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-text {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.desktop-nav {
  display: flex;
  gap: 22px;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.desktop-nav a:hover {
  color: var(--brand-strong);
}

.header-actions {
  display: inline-flex;
  gap: 10px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
h2 {
  font-family: "DM Serif Display", serif;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  max-width: 20ch;
}

h3 {
  font-size: 1.1rem;
}

.kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--brand-strong);
}

.section {
  padding: 74px 0 10px;
}

.section-head {
  margin-bottom: 24px;
}

.hero {
  padding: 86px 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.hero-copy p {
  max-width: 58ch;
  color: var(--muted);
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-metrics {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-metrics li {
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 14px 12px;
  background: var(--surface);
}

.hero-metrics strong {
  display: block;
  font-size: 1.18rem;
  color: var(--ink);
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-showcase {
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid #ffd4bc;
  background: linear-gradient(155deg, #fff7f0, #ffe8dd);
  box-shadow: var(--shadow);
}

.hero-showcase h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 14px;
}

.hero-cards {
  display: grid;
  gap: 12px;
}

.hero-cards article {
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #ffd8c1;
}

.hero-cards p {
  margin: 6px 0 0;
  font-weight: 700;
  color: var(--brand-strong);
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.73rem;
  font-weight: 700;
  background: var(--chip);
  color: #8a3f24;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 1px solid #f4c9ad;
  border-radius: 999px;
  padding: 9px 14px;
  font: inherit;
  font-weight: 600;
  color: #743d2b;
  background: var(--chip);
  cursor: pointer;
  transition: all 150ms ease;
}

.chip:hover {
  transform: translateY(-1px);
}

.chip.active {
  background: var(--chip-active);
  color: #fff;
  border-color: var(--chip-active);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  border-radius: var(--radius);
  border: 1px solid #ffd7bf;
  background: #fff;
  padding: 14px;
  display: grid;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(66, 34, 23, 0.08);
  transform-origin: top;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(66, 34, 23, 0.14);
}

.product-card.hidden {
  display: none;
}

.product-thumb {
  height: 170px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.product-thumb::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  right: -24px;
  bottom: -24px;
}

.tone-1 {
  background: linear-gradient(135deg, #f78c6b, #ff4f8e);
}

.tone-2 {
  background: linear-gradient(135deg, #ff9a5f, #f85f84);
}

.tone-3 {
  background: linear-gradient(135deg, #f9b36a, #ff6b6b);
}

.tone-4 {
  background: linear-gradient(135deg, #f48080, #ef4fb8);
}

.tone-5 {
  background: linear-gradient(135deg, #ff7b89, #ff8f5e);
}

.tone-6 {
  background: linear-gradient(135deg, #fb8f7f, #f4457a);
}

.meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.price {
  margin: 8px 0 0;
  font-weight: 800;
  color: var(--ink);
}

.filter-status {
  margin-top: 12px;
  min-height: 22px;
  color: #7d4852;
  font-weight: 600;
}

.steps {
  background: linear-gradient(180deg, #fff2e8, #ffe7d7);
  border-top: 1px solid #ffd9c2;
  border-bottom: 1px solid #ffd9c2;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step-grid article {
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid #ffd1b9;
  background: #fff;
}

.step-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
}

.step-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-grid article {
  border-radius: var(--radius);
  border: 1px solid #ffd9c2;
  background: #fff;
  padding: 20px;
}

.review-grid p {
  margin: 0;
  color: #4f4056;
}

.review-grid h3 {
  margin-top: 14px;
  color: var(--brand-strong);
}

.cta-band {
  padding-bottom: 82px;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid #ffcdb5;
  background: linear-gradient(135deg, #ffe6d3, #ffd8db);
}

.cta-inner p {
  margin: 12px 0 0;
  color: #654c62;
  max-width: 60ch;
}

.site-footer {
  border-top: 1px solid #f4d6c3;
  background: #fff2e8;
  padding: 18px 0 24px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.site-footer p {
  margin: 0;
  color: #6f5b68;
  font-size: 0.9rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  padding: 12px 20px;
  cursor: pointer;
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
  box-shadow: 0 11px 20px rgba(255, 47, 109, 0.24);
  transition: transform 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  padding: 9px 14px;
  font-size: 0.86rem;
}

.btn-ghost {
  border: 1px solid #f1c3a7;
  color: #5f3946;
  background: #fff;
  box-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: pop-in 680ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 210ms;
}

.delay-3 {
  animation-delay: 300ms;
}

@keyframes pop-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero,
  .step-grid,
  .product-grid,
  .review-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    display: grid;
  }
}

@media (max-width: 760px) {
  .desktop-nav,
  .header-actions .btn-ghost {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 58px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .btn-small {
    font-size: 0.82rem;
  }
}
