:root {
  --cream: #fff8ee;
  --paper: #fffdf8;
  --ink: #33231f;
  --muted: #75645f;
  --rose: #e97989;
  --rose-dark: #ba5162;
  --mint: #8fc8b6;
  --butter: #f3c96f;
  --cocoa: #68453c;
  --line: rgba(104, 69, 60, 0.16);
  --shadow: 0 22px 55px rgba(104, 69, 60, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(104, 69, 60, 0.08);
}

.brand,
.nav-links,
.hero-actions,
.trust-row,
.product-bottom,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  color: var(--cocoa);
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: white;
  background: var(--rose);
  border-radius: 50%;
  font-size: 13px;
  letter-spacing: 0;
}

.nav-links {
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--rose-dark);
}

.header-cta,
.button,
.product-bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta {
  padding: 10px 18px;
  color: white;
  background: var(--cocoa);
}

.section-band {
  background:
    linear-gradient(90deg, rgba(143, 200, 182, 0.14), transparent 38%),
    linear-gradient(180deg, var(--cream), #fffdf8);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(36px, 6vw, 72px);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.13;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.25;
}

.hero-lead,
.section-heading p,
.story-grid p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.button {
  padding: 13px 22px;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.header-cta:hover,
.product-bottom a:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: var(--rose);
  box-shadow: 0 14px 26px rgba(233, 121, 137, 0.28);
}

.button.secondary {
  color: var(--cocoa);
  background: white;
  border-color: var(--line);
}

.trust-row {
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.trust-row div {
  min-width: 126px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-row dt {
  font-weight: 900;
}

.trust-row dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story,
.products,
.custom,
.order,
.delivery,
.reviews,
.faq,
.final-cta {
  padding: clamp(72px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.section-kicker {
  max-width: 1180px;
  margin-inline: auto;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  max-width: 980px;
  margin-inline: auto;
  text-align: left;
}

.product-grid,
.info-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-card,
.info-grid article,
.review-grid figure {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(104, 69, 60, 0.08);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
}

.product-card.featured {
  border-color: rgba(233, 121, 137, 0.5);
  box-shadow: 0 22px 46px rgba(233, 121, 137, 0.18);
}

.product-tag {
  width: fit-content;
  margin-bottom: 22px;
  padding: 6px 12px;
  color: var(--cocoa);
  background: #fff1ca;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.product-card p,
.product-card li,
.custom-list p,
.steps p,
.info-grid p,
.faq-panel p,
.site-footer p {
  color: var(--muted);
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 28px;
  padding-left: 18px;
}

.product-bottom {
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.product-bottom strong {
  color: var(--rose-dark);
  font-size: 18px;
}

.product-bottom a {
  min-height: 38px;
  padding: 8px 12px;
  color: white;
  background: var(--cocoa);
  font-size: 13px;
  white-space: nowrap;
}

.custom-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.custom-list div {
  padding: 24px 0;
  border-top: 2px solid var(--mint);
}

.custom-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--rose-dark);
  font-size: 14px;
  font-weight: 900;
}

.custom-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: white;
  background: var(--mint);
  border-radius: 50%;
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.notice-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 980px;
  margin: 30px auto 0;
  padding: 18px 22px;
  color: var(--cocoa);
  background: #fff1ca;
  border-radius: 8px;
}

.notice-strip span {
  color: var(--muted);
}

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

.info-grid article {
  padding: 24px;
}

.review-grid figure {
  margin: 0;
  padding: 28px;
}

blockquote {
  margin: 0 0 18px;
  font-size: 18px;
}

figcaption {
  color: var(--rose-dark);
  font-weight: 900;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item strong {
  font-size: 24px;
}

.faq-panel {
  display: none;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
}

.faq-panel.open {
  display: block;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  max-width: 820px;
  margin-inline: auto;
}

.center {
  justify-content: center;
}

.site-footer {
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px) 96px;
  color: var(--muted);
  background: var(--ink);
}

.site-footer strong,
.site-footer a {
  color: white;
}

.site-footer p {
  margin-bottom: 0;
}

.mobile-sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  min-height: 48px;
  padding: 12px 18px;
  color: white;
  background: var(--rose);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(233, 121, 137, 0.36);
  font-weight: 900;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    min-height: 320px;
  }

  .product-grid,
  .custom-list,
  .steps,
  .info-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .notice-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 8px 13px;
    font-size: 14px;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-lead,
  .section-heading p,
  .story-grid p,
  .final-cta p {
    font-size: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-row div {
    flex: 1 1 30%;
    min-width: 0;
  }

  .product-grid,
  .custom-list,
  .steps,
  .info-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

  .product-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-bottom a {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }
}
