/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --mauve:        #9B7A85;
  --mauve-light:  #B49AA3;
  --mauve-soft:   #E2D5D9;
  --plum:         #2D2529;
  --plum-body:    #3D3338;
  --ivory:        #FAF5F0;
  --white:        #FFFFFF;
  --border:       #E5DBD4;
  --warm-sand:    #EFE7DD;
  --antique-gold: #A8853D;
  --dove-white:   #F5F1EB;

  --btn-gradient: linear-gradient(135deg, #9B7A85, #B49AA3);
  --btn-shadow:   0 4px 16px rgba(155, 122, 133, 0.25);

  --radius-card: 14px;
  --radius-btn:  11px;
  --radius-pill: 28px;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--plum-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mauve);
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--plum);
  line-height: 1.2;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--btn-gradient);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  box-shadow: var(--btn-shadow);
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
  text-align: center;
}

.btn:hover { opacity: 0.92; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--full { width: 100%; }

/* =============================================
   NAV
   ============================================= */
.nav {
  background: var(--plum);
  padding: 18px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav__logo .amp {
  color: var(--mauve-light);
  font-style: italic;
}

.nav__sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mauve-soft);
  margin-top: 2px;
}

.nav__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--mauve-light);
  transition: color 0.2s;
}

.nav__cta:hover { color: var(--white); }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--plum);
  padding: 72px 0 80px;
  text-align: center;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mauve-light);
  margin-bottom: 20px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero__sub {
  font-size: 17px;
  color: var(--mauve-soft);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero__cta-wrap {
  margin-bottom: 40px;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-bar__item {
  font-size: 13px;
  font-weight: 500;
  color: var(--mauve-soft);
  opacity: 0.85;
}

.trust-bar__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--mauve-light);
  opacity: 0.5;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how {
  padding: 80px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header .eyebrow {
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(24px, 4vw, 34px);
  color: var(--plum);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.step {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  position: relative;
}

.step__number {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--mauve);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--plum-body);
  line-height: 1.65;
}

/* =============================================
   WHAT'S INCLUDED
   ============================================= */
.included {
  padding: 80px 0;
  background: var(--ivory);
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 12px;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px 24px;
}

.included-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--mauve-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.included-item__text h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 4px;
}

.included-item__text p {
  font-size: 13px;
  color: var(--plum-body);
  opacity: 0.8;
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews {
  padding: 80px 0;
  background: var(--dove-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 12px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.review-card__star {
  color: var(--antique-gold);
  font-size: 14px;
}

.review-card__text {
  font-size: 14px;
  color: var(--plum-body);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--mauve-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--mauve);
  flex-shrink: 0;
  overflow: hidden;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--plum);
}

.review-card__meta {
  font-size: 12px;
  color: var(--mauve);
  margin-top: 2px;
}

.reviews-loading, .reviews-empty {
  text-align: center;
  color: var(--plum-body);
  opacity: 0.5;
  font-size: 14px;
  padding: 40px 0;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: 80px 0;
  background: var(--white);
}

.faq-list {
  margin-top: 12px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--plum);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--mauve); }

.faq-question__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--mauve);
  transition: transform 0.2s;
}

.faq-item.open .faq-question__icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  font-size: 14px;
  color: var(--plum-body);
  line-height: 1.7;
  padding-bottom: 20px;
  max-width: 620px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* =============================================
   PRICING / CTA
   ============================================= */
.pricing {
  padding: 80px 0;
  background: var(--plum);
  text-align: center;
}

.pricing__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mauve-light);
  margin-bottom: 16px;
}

.pricing__headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.pricing__sub {
  font-size: 16px;
  color: var(--mauve-soft);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__price {
  margin-bottom: 32px;
}

.pricing__amount {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.pricing__was {
  font-size: 14px;
  color: var(--mauve-soft);
  opacity: 0.7;
  margin-top: 6px;
  text-decoration: line-through;
}

.pricing__guarantee {
  margin-top: 20px;
  font-size: 13px;
  color: var(--mauve-soft);
  opacity: 0.75;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--plum);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--white);
  opacity: 0.6;
  margin-bottom: 8px;
}

.footer__logo .amp {
  color: var(--mauve-light);
  font-style: italic;
}

.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 12px;
  color: var(--mauve-soft);
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer__link:hover { opacity: 1; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (min-width: 640px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .steps { grid-template-columns: 1fr 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr 1fr; }
}
