:root {
  color-scheme: light;
  --ink: #1c1a17;
  --muted: #5b544e;
  --cream: #f7f1ea;
  --linen: #f0e6dc;
  --sage: #cbd8c3;
  --olive: #6e7a62;
  --accent: #d7a46f;
  --sunset: #f2d4b3;
  --shadow: 0 30px 60px rgba(40, 32, 24, 0.12);
}

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

body {
  font-family: "Work Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fef9f4 0%, #f7eee2 35%, #efe0d2 100%);
  line-height: 1.6;
}

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

.hero {
  padding: 36px 8vw 96px;
  background: linear-gradient(160deg, #f9f0e4 0%, #f8e6d3 45%, #f1d9c1 100%);
  min-height: 90vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 48px;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 6vw, 72px);
  margin: 18px 0;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
}

.hero-ctas {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  background: var(--ink);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 20px rgba(30, 24, 18, 0.15);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(30, 24, 18, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(28, 26, 23, 0.2);
  box-shadow: none;
}

.note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.hero-card {
  background: #fff;
  padding: 20px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card-inner {
  background: var(--cream);
  border-radius: 22px;
  padding: 28px;
}

.hero-card h3 {
  font-size: 22px;
  margin: 16px 0 10px;
}

.tag {
  display: inline-flex;
  padding: 6px 14px;
  background: var(--sage);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mini-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 90px 8vw;
}

.section-header {
  max-width: 620px;
  margin-bottom: 42px;
}

.section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 46px);
  margin: 12px 0 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(38, 30, 22, 0.08);
}

.accent {
  background: linear-gradient(120deg, #f4e6d6 0%, #f6efe7 100%);
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.ritual-step {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(30, 24, 18, 0.08);
}

.ritual-step span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--sunset);
  font-weight: 700;
  margin-bottom: 14px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.price-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(30, 24, 18, 0.1);
  display: grid;
  gap: 12px;
}

.price-card ul {
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.price {
  font-size: 34px;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
}

.featured {
  border: 2px solid var(--accent);
  transform: translateY(-12px);
}

.disclaimer {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
  max-width: 620px;
}

.faq {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.faq details {
  background: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(30, 24, 18, 0.08);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.newsletter {
  background: linear-gradient(120deg, #f4e1ca 0%, #f8f1e9 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-radius: 24px;
  margin: 0 8vw 80px;
}

.email-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.email-form input {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(28, 26, 23, 0.2);
  min-width: 240px;
  font-family: inherit;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 8vw 40px;
  border-top: 1px solid rgba(28, 26, 23, 0.1);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

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

  .hero {
    padding-top: 24px;
  }

  .featured {
    transform: none;
  }

  .newsletter {
    margin: 0 8vw 60px;
  }
}

@media (max-width: 600px) {
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .email-form {
    width: 100%;
  }

  .email-form input {
    flex: 1;
  }
}
