:root {
  --bg: #F7F5F0;
  --bg-alt: #EDEAE3;
  --fg: #111110;
  --fg-muted: #6B6760;
  --accent: #C9943A;
  --accent-light: #F5EDD9;
  --card-bg: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  padding: 24px 48px;
  border-bottom: 1px solid rgba(17,17,16,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}
.nav-cta {
  margin-left: auto;
  padding: 9px 20px;
  background: var(--fg);
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.nav-cta:hover { background: #2a2a28; }

/* HERO */
.hero {
  padding: 80px 48px 64px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 900;
  color: rgba(201,148,58,0.06);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 48px;
}
.hero-meta {
  display: flex;
  gap: 32px;
  align-items: center;
}
.meta-item {
  display: flex;
  flex-direction: column;
}
.meta-number {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
}
.meta-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.meta-divider {
  width: 1px;
  height: 36px;
  background: rgba(17,17,16,0.12);
}
.hero-cta {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.hero-cta:hover {
  background: #b8832f;
  transform: translateY(-1px);
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price-card {
  background: var(--card-bg);
  border: 1px solid rgba(17,17,16,0.1);
  border-radius: 12px;
  padding: 28px;
  position: relative;
}
.price-card--secondary {
  background: var(--bg-alt);
}
.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.price-tier {
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
}
.price-anchor {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 16px;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-features li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.price-footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(17,17,16,0.06);
}
.price-note {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
}

/* PROCESS */
.process {
  padding: 80px 48px;
  background: var(--bg-alt);
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.process-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.process-step {
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: rgba(201,148,58,0.18);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.process-step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PACKAGES */
.packages {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.package-card {
  background: var(--card-bg);
  border: 1px solid rgba(17,17,16,0.08);
  border-radius: 12px;
  padding: 32px;
  position: relative;
}
.package-card--featured {
  background: var(--fg);
  color: #fff;
  border-color: var(--fg);
}
.package-card--featured .package-name,
.package-card--featured .package-price,
.package-card--featured .package-desc,
.package-card--featured .package-list li {
  color: #fff;
}
.package-card--featured .package-list li::before {
  background: rgba(255,255,255,0.5);
}
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.package-icon {
  margin-bottom: 20px;
}
.package-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.package-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.package-desc {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.package-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.package-list li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.package-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.packages-note {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
}

/* GUARANTEE */
.guarantee {
  padding: 64px 48px;
  background: var(--bg-alt);
}
.guarantee-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.guarantee-icon {
  flex-shrink: 0;
}
.guarantee-heading {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.guarantee-text {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.closing-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 16px;
}
.closing-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.closing-cta:hover {
  background: #b8832f;
  transform: translateY(-1px);
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid rgba(17,17,16,0.08);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.footer-cta {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.footer-cta:hover { text-decoration: underline; }
.footer-phone {
  color: var(--fg-muted);
  text-decoration: none;
}
.footer-phone:hover { color: var(--fg); }
.footer-divider {
  color: rgba(17,17,16,0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 40px;
  }
  .hero-right {
    display: none;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .guarantee-inner {
    flex-direction: column;
  }
  .navbar {
    padding: 20px 24px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .closing, .packages {
    padding: 64px 24px;
  }
  .process {
    padding: 64px 24px;
  }
  .guarantee {
    padding: 48px 24px;
  }
}