﻿:root {
  --bg: #fbf9f4;
  --surface: #ffffff;
  --surface-soft: #f6f3ee;
  --text: #1b1c19;
  --muted: #5f5e5e;
  --line: #d7d2ca;
  --teal: #266068;
  --teal-dark: #1d5057;
  --radius: 20px;
  --shadow: 0 18px 40px rgba(27, 28, 25, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.site-shell { min-height: 100vh; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(251, 249, 244, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(39, 46, 44, 0.08);
}

.brand {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.nav a,
.footer-links a,
.footer small,
.eyebrow,
.micro,
.ritual-number {
  text-transform: uppercase;
}

.nav a,
.footer-links a,
.footer small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.nav a {
  font-size: 10px;
  letter-spacing: 0.18em;
}

.page {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 0 16px 48px;
}

.section { padding: 32px 0; }

.eyebrow,
.micro,
.ritual-number {
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.micro,
.ritual-number { font-size: 10px; }
.hero { padding-top: 24px; }

.hero h1,
.title-xl {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.btn-secondary { background: transparent; }

.hero-media,
.split-image,
.product-card img {
  overflow: hidden;
  border-radius: 24px;
}

.hero-media {
  margin-top: 24px;
  background: linear-gradient(180deg, #f7f4ee 0%, #ece5da 100%);
  box-shadow: var(--shadow);
}

.hero-media img,
.split-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.panel,
.product-card,
.benefit-card {
  border: 1px solid rgba(27, 28, 25, 0.08);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel,
.benefit-card,
.product-card,
.cta-block {
  padding: 20px;
}

.panel-soft { background: var(--surface-soft); }
.grid { display: grid; gap: 14px; }

.product-card img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--surface-soft);
  margin-bottom: 14px;
}

.product-card h3,
.panel h3,
.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.product-card p,
.panel p,
.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ritual-list { display: grid; gap: 10px; }

.ritual-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(27, 28, 25, 0.08);
}

.ritual-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.split-image { margin-bottom: 18px; }

.cta-block {
  border-radius: 28px;
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
}

.cta-block p { color: rgba(255, 255, 255, 0.84); }

.input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

.input::placeholder { color: rgba(255, 255, 255, 0.64); }
.caption { margin-top: 12px; color: rgba(255, 255, 255, 0.72); font-size: 12px; }
.footer { margin-top: 18px; padding: 24px 0 12px; border-top: 1px solid rgba(27, 28, 25, 0.08); }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.muted { color: var(--muted); }
.stack-sm > * + * { margin-top: 10px; }
.stack-md > * + * { margin-top: 16px; }

@media (min-width: 720px) {
  .topbar {
    padding: 20px 28px;
  }

  .page {
    width: min(100%, 840px);
    padding: 0 28px 56px;
  }

  .hero h1,
  .title-xl {
    font-size: 58px;
  }

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

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

@media (min-width: 1040px) {
  .topbar {
    padding: 22px 48px;
  }

  .page {
    width: min(100%, 1180px);
    padding: 0 48px 72px;
  }

  .section { padding: 40px 0; }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
    grid-template-rows: auto auto auto auto;
    gap: 0 44px;
    align-items: center;
    min-height: calc(100vh - 88px);
    padding-top: 0;
  }

  .hero > .eyebrow,
  .hero > h1,
  .hero > p,
  .hero > .hero-actions {
    grid-column: 1;
  }

  .hero > .hero-media {
    grid-column: 2;
    grid-row: 1 / span 4;
    margin-top: 0;
    align-self: stretch;
    display: flex;
    align-items: center;
  }

  .hero > .hero-media img {
    height: 100%;
    object-fit: cover;
  }

  .hero h1,
  .title-xl {
    font-size: 78px;
  }

  .hero p,
  .lead {
    font-size: 18px;
    max-width: 40rem;
  }

  .panel,
  .benefit-card,
  .product-card,
  .cta-block {
    padding: 24px;
  }
}
