:root {
  --bg: #faf7f4;
  --bg-cream: #f3ebe3;
  --bg-dark: #2c2420;
  --text: #1c1714;
  --muted: #6b5f56;
  --accent: #9a6b4f;
  --accent-dark: #7d5340;
  --accent-soft: #e8d5c8;
  --gold: #c4a574;
  --card: #ffffff;
  --border: rgba(44, 36, 32, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 50px rgba(28, 23, 20, 0.08);
  --shadow-sm: 0 8px 24px rgba(28, 23, 20, 0.06);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  padding-bottom: 5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
}

.logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo__text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo__text small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -2px;
}

.logo--footer .logo__mark {
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
}

.logo--footer .logo__text {
  color: #f5ebe3;
  font-size: 1.15rem;
}

.logo--footer .logo__text small {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  text-decoration: none;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(154, 107, 79, 0.35);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(154, 107, 79, 0.4);
}

.btn--small {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  box-shadow: none;
}

.btn--small:hover {
  transform: none;
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--accent-soft);
}

.btn--large {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  padding: 2rem 0 3.5rem;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .hero {
    padding: 3rem 0 4.5rem;
  }
}

.badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text);
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.lead strong {
  color: var(--text);
}

.checks {
  list-style: none;
  margin-bottom: 1.75rem;
}

.checks li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  font-size: 0.95rem;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.checks--light li::before {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 165, 116, 0.35);
}

.hero__note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.65rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  max-height: 560px;
}

.hero__image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__float-card {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.hero__float-card img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}

.hero__float-card strong {
  display: block;
  font-size: 0.9rem;
}

.hero__float-card span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--cream {
  background: var(--bg-cream);
}

.section--dark {
  background: var(--bg-dark);
  color: #f5ebe3;
}

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-label--light {
  color: var(--gold);
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.section-head h2,
.split__text h2,
.product-banner__copy h2,
.order-block__head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
}

/* Split */
.split__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split__text p {
  color: var(--muted);
  margin: 1rem 0 1.5rem;
}

.routine-steps {
  list-style: none;
}

.routine-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.routine-steps li span {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Feature grid */
.feature-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card__img {
  aspect-ratio: 5 / 3.4;
  overflow: hidden;
}

.feature-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.feature-card:hover .feature-card__img img {
  transform: scale(1.05);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  padding: 1.15rem 1.25rem 0.35rem;
}

.feature-card p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Product banner */
.product-banner__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .product-banner__inner {
    grid-template-columns: 0.95fr 1.05fr;
    padding: 2rem;
    gap: 2.5rem;
  }
}

.product-banner__img {
  border-radius: var(--radius);
  overflow: hidden;
}

.product-banner__img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-banner__copy p {
  color: var(--muted);
  margin: 1rem 0;
}

.fine-print {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.5rem 0 1.25rem !important;
}

/* Order block */
.order-block__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.order-steps {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .order-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.order-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.order-step__num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 0.85rem;
}

.order-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.order-step p {
  font-size: 0.9rem;
  color: rgba(245, 235, 227, 0.75);
}

.order-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 520px) {
  .order-cta {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.price-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  min-width: 200px;
}

.price-box__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.price-box__value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.price-box__value small {
  font-family: var(--font-sans);
  font-size: 1rem;
}

.price-box__old {
  display: block;
  font-size: 0.85rem;
  color: rgba(245, 235, 227, 0.5);
  text-decoration: line-through;
  margin-top: 0.25rem;
}

/* Disclaimer */
.disclaimer {
  padding: 2.5rem 0 3rem;
}

.disclaimer h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.disclaimer ul {
  margin-left: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.disclaimer li {
  margin-bottom: 0.4rem;
}

/* Footer */
.footer {
  background: var(--text);
  color: #d4c8be;
  padding: 2rem 0 2.5rem;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.footer nav {
  display: flex;
  gap: 1.5rem;
}

.footer a {
  color: #d4c8be;
  text-decoration: none;
  font-size: 0.88rem;
}

.footer a:hover {
  color: #fff;
}

.footer__copy {
  width: 100%;
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .footer__copy {
    width: auto;
    margin-top: 0;
  }
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  z-index: 99;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

/* Legal pages */
.legal-page {
  padding: 3rem 0 4rem;
}

.legal-page h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.legal-page p,
.legal-page li {
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.legal-page ul {
  margin-left: 1.25rem;
}

.legal-page a {
  color: var(--accent);
}
