@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Karla:wght@300;400;500&display=swap');

:root {
  --sand: #f5f0e8;
  --sand-light: #faf7f2;
  --sand-dark: #e8e0d2;
  --clay: #c4a882;
  --clay-dark: #a08060;
  --earth: #8b7355;
  --deep: #2c2418;
  --ink: #1a1612;
  --warm-gray: #6b6358;
  --muted: #9a9088;
  --sage: #8a9a7e;
  --white: #fffcf7;
  --border: rgba(44, 36, 24, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Karla', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

nav {
  position: sticky;
  top: 1rem;
  margin: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.hero {
  min-height: 100vh;
  padding: 5rem 2rem 3rem;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  flex: 1;
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clay-dark);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1.1;
  margin: 1.2rem 0;
}

.hero h1 em {
  font-style: italic;
  color: var(--earth);
}

.hero-sub {
  color: var(--warm-gray);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 1rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.7rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta.primary {
  background: var(--deep);
  color: var(--white);
  box-shadow: 0 15px 35px rgba(44, 36, 24, 0.25);
}

.cta.outline {
  border: 1px solid var(--deep);
  color: var(--deep);
}

.cta:hover {
  transform: translateY(-2px);
}

.hero-price {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-visual img {
  border-radius: 28px;
  max-width: 420px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0 2rem 5rem;
}

.section {
  padding: 4rem;
  background: var(--sand);
  border-radius: 32px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.section::after {
  content: '';
  position: absolute;
  inset: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--ink);
  margin: 1rem 0 1.5rem;
}

.section p {
  font-size: 1rem;
  color: var(--warm-gray);
}

.proof {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.stats div {
  background: rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.stats strong {
  display: block;
  font-size: 1.8rem;
  font-family: 'Cormorant Garamond', serif;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.steps article {
  padding: 2rem;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.steps h3 {
  font-size: 2.6rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--clay);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.product-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.08);
}

.product-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.trial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.trial-grid article {
  padding: 1.5rem;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--border);
}

.trial-grid h3 {
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 0.5rem;
}

.science-note {
  background: rgba(44, 36, 24, 0.04);
  padding: 1.5rem;
  border-radius: 24px;
  color: var(--deep);
  font-size: 0.95rem;
}

.included-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.included-grid div {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
}

.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.4;
  font-style: italic;
  color: var(--ink);
}

.testimonial cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.final h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

footer {
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .final {
    flex-direction: column;
  }
}
