:root {
  --cream: #FAF7F2;
  --warm-white: #FFFDF9;
  --blush: #E8C4B8;
  --rose: #C9908A;
  --deep-rose: #9E6B6B;
  --sage: #7A8B72;
  --deep-sage: #4A5D42;
  --charcoal: #2D2926;
  --soft-charcoal: #4A4542;
  --light-sage: #E8EDE5;
  --gold: #C5A572;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, var(--warm-white) 0%, var(--cream) 40%, var(--light-sage) 100%);
  overflow: hidden;
}

.hero-inner {
  max-width: 780px;
  padding: 120px 40px 80px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 40px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 32px;
}

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

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--soft-charcoal);
  max-width: 600px;
  font-weight: 300;
}

.hero-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, var(--blush) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 1;
}

/* ── Philosophy ── */
.philosophy {
  background: var(--charcoal);
  padding: 100px 40px;
}

.philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
}

.philosophy-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.philosophy blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--cream);
  border-left: 3px solid var(--gold);
  padding-left: 32px;
  margin-bottom: 28px;
}

.philosophy-note {
  color: var(--blush);
  font-size: 1rem;
  font-weight: 500;
  padding-left: 35px;
}

/* ── Services ── */
.services {
  padding: 100px 40px;
  background: var(--warm-white);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 64px;
}

.services-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.services-intro {
  font-size: 1.1rem;
  color: var(--soft-charcoal);
  max-width: 550px;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--cream);
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.service-icon {
  font-size: 28px;
  color: var(--sage);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--soft-charcoal);
  line-height: 1.65;
  font-weight: 300;
}

/* ── Loss ── */
.loss {
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--light-sage) 0%, var(--cream) 100%);
}

.loss-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
  align-items: start;
}

.loss-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--deep-rose);
  margin-bottom: 24px;
}

.loss-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.25;
}

.loss-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--soft-charcoal);
  margin-bottom: 20px;
  font-weight: 300;
}

.loss-content strong {
  color: var(--charcoal);
  font-weight: 600;
}

.loss-aside {
  padding-top: 60px;
}

.loss-stat {
  margin-bottom: 40px;
  padding-left: 24px;
  border-left: 3px solid var(--deep-rose);
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--deep-rose);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--soft-charcoal);
  line-height: 1.5;
  font-weight: 400;
}

/* ── Closing ── */
.closing {
  padding: 120px 40px;
  background: var(--charcoal);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.3;
}

.closing-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--blush);
  font-weight: 300;
}

/* ── Footer ── */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 2px;
}

.footer-contact {
  font-size: 0.85rem;
  color: var(--blush);
  font-weight: 400;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner {
    padding: 100px 24px 60px;
  }

  .hero-accent {
    width: 400px;
    height: 400px;
    top: -10%;
    right: -20%;
  }

  .philosophy {
    padding: 72px 24px;
  }

  .philosophy blockquote {
    padding-left: 20px;
  }

  .philosophy-note {
    padding-left: 23px;
  }

  .services {
    padding: 72px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 32px 24px;
  }

  .loss {
    padding: 72px 24px;
  }

  .loss-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .loss-aside {
    padding-top: 0;
    display: flex;
    gap: 32px;
  }

  .loss-stat {
    margin-bottom: 0;
  }

  .closing {
    padding: 80px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .loss-aside {
    flex-direction: column;
    gap: 24px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}
/* ── Nav ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--charcoal);
  text-decoration: none;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--soft-charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--charcoal);
}

.nav-cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--deep-rose);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--charcoal);
  cursor: pointer;
}

/* ── Shared section label ── */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}

/* ── Hero CTA ── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--deep-rose);
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn-primary--light {
  background: var(--cream);
  color: var(--charcoal);
  margin-top: 36px;
}

.btn-primary--light:hover {
  background: var(--blush);
  color: var(--charcoal);
}

.btn-ghost {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--soft-charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--charcoal);
}

/* ── Tiers ── */
.tiers {
  padding: 100px 40px;
  background: var(--cream);
}

.tiers-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tiers-header {
  margin-bottom: 64px;
}

.tiers-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
}

.tiers-intro {
  font-size: 1.05rem;
  color: var(--soft-charcoal);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.75;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--warm-white);
  border: 1px solid rgba(122, 139, 114, 0.18);
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage) 0%, var(--blush) 100%);
  border-radius: 16px 16px 0 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.cta-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  flex: 1;
}

.cta-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.3;
}

.cta-content p {
  font-size: 0.95rem;
  color: var(--soft-charcoal);
  font-weight: 300;
  line-height: 1.6;
}

.cta-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 14px 28px;
  background: var(--deep-rose);
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.cta-btn:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.tier-card {
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}

.tier-featured {
  background: var(--charcoal);
  border-color: transparent;
}

.tier-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--deep-rose);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.tier-marker {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--sage);
  margin-bottom: 16px;
}

.tier-featured .tier-marker {
  color: var(--gold);
}

.tier-label-pill {
  display: inline-block;
  padding: 4px 14px;
  background: var(--light-sage);
  color: var(--deep-sage);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 20px;
}

.tier-featured .tier-label-pill {
  background: rgba(255,255,255,0.12);
  color: var(--cream);
}

.tier-pill-rose {
  background: rgba(201,144,138,0.15);
  color: var(--deep-rose);
}

.tier-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.tier-featured h3 {
  color: var(--cream);
}

.tier-desc {
  font-size: 0.92rem;
  color: var(--soft-charcoal);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}

.tier-featured .tier-desc {
  color: var(--blush);
}

.tier-features {
  list-style: none;
  margin-bottom: 32px;
}

.tier-features li {
  font-size: 0.9rem;
  color: var(--soft-charcoal);
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-weight: 400;
}

.tier-features li::before {
  content: '✓ ';
  color: var(--sage);
  font-weight: 600;
}

.tier-featured .tier-features li {
  color: rgba(250,247,242,0.7);
  border-bottom-color: rgba(255,255,255,0.06);
}

.tier-featured .tier-features li::before {
  color: var(--gold);
}

.tier-price {
  margin-bottom: 24px;
}

.price-from {
  display: block;
  font-size: 0.8rem;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 4px;
}

.tier-featured .price-from {
  color: var(--gold);
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--charcoal);
}

.tier-featured .price-amount {
  color: var(--cream);
}

.price-period {
  font-size: 0.9rem;
  color: var(--soft-charcoal);
  font-weight: 300;
}

.tier-featured .price-period {
  color: var(--blush);
}

.tier-btn {
  display: block;
  text-align: center;
  padding: 13px 24px;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
}

.tier-btn:hover {
  background: var(--deep-rose);
  transform: translateY(-1px);
}

.tier-featured .tier-btn {
  background: var(--cream);
  color: var(--charcoal);
}

.tier-featured .tier-btn:hover {
  background: var(--blush);
}

.tiers-note {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--soft-charcoal);
  font-weight: 300;
  font-style: italic;
}

/* ── FAQ ── */
.faq {
  padding: 100px 40px;
  background: var(--warm-white);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 56px;
}

.faq-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.07);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  transition: color 0.2s;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform 0.2s;
}

details[open] .faq-q::after {
  transform: rotate(45deg);
}

details[open] .faq-q {
  color: var(--deep-rose);
}

.faq-a {
  padding: 0 0 24px 0;
}

.faq-a p {
  font-size: 1rem;
  color: var(--soft-charcoal);
  line-height: 1.8;
  font-weight: 300;
}

.faq-a p em {
  font-style: italic;
  color: var(--deep-rose);
}

/* ── Consult page ── */
.consult-page {
  min-height: 100vh;
  padding: 120px 40px 80px;
  background: linear-gradient(165deg, var(--warm-white) 0%, var(--cream) 50%, var(--light-sage) 100%);
}

.consult-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.consult-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 20px;
}

.consult-sub {
  font-size: 1.05rem;
  color: var(--soft-charcoal);
  line-height: 1.8;
  font-weight: 300;
  max-width: 400px;
  margin-bottom: 40px;
}

.consult-promises {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--soft-charcoal);
  font-weight: 400;
}

.promise-icon {
  color: var(--sage);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── Form ── */
.consult-form {
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}

.form-row {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.form-optional {
  font-weight: 300;
  color: var(--soft-charcoal);
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--cream);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: rgba(74, 69, 66, 0.4);
}

.form-input:focus {
  border-color: var(--deep-rose);
  box-shadow: 0 0 0 3px rgba(158, 107, 107, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.services-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 14px;
  background: var(--cream);
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.check-item:hover {
  border-color: var(--rose);
  background: rgba(232, 196, 184, 0.1);
}

.check-item input[type="checkbox"] {
  display: none;
}

.check-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  background: var(--warm-white);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}

.check-item input:checked ~ .check-box {
  background: var(--deep-rose);
  border-color: var(--deep-rose);
}

.check-item input:checked ~ .check-box::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.check-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--soft-charcoal);
}

.form-error {
  padding: 12px 16px;
  background: rgba(201, 144, 138, 0.1);
  border: 1px solid rgba(158, 107, 107, 0.3);
  border-radius: 8px;
  color: var(--deep-rose);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.form-submit {
  width: 100%;
  padding: 16px 32px;
  background: var(--charcoal);
  color: var(--cream);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
}

.form-submit:hover:not(:disabled) {
  background: var(--deep-rose);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-submit.loading .submit-text::after {
  content: '...';
}

.submit-arrow {
  transition: transform 0.2s;
}

.form-submit:hover:not(:disabled) .submit-arrow {
  transform: translateX(4px);
}

/* ── Consult success ── */
.consult-success {
  text-align: center;
  padding: 48px 44px;
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
}

.success-icon {
  font-size: 2.4rem;
  color: var(--sage);
  margin-bottom: 20px;
}

.consult-success h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.consult-success p {
  font-size: 1rem;
  color: var(--soft-charcoal);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
}

.success-link {
  font-size: 0.9rem;
  color: var(--deep-rose);
  font-weight: 600;
  text-decoration: none;
}

.success-link:hover {
  text-decoration: underline;
}

/* ── Footer links ── */
.footer-links {
  display: flex;
  gap: 28px;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--blush);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--cream);
}

/* ── Responsive additions ── */
@media (max-width: 900px) {
  .tiers-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .consult-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .consult-left h1 {
    font-size: 2.2rem;
  }

  .consult-form {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-link {
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    width: 100%;
  }

  .nav-cta {
    margin-top: 12px;
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

  .tiers {
    padding: 72px 24px;
  }

  .cta-banner {
    padding: 28px 24px;
  }

  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cta-icon {
    width: 40px;
    height: 40px;
  }

  .cta-icon svg {
    width: 24px;
    height: 24px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }

  .faq {
    padding: 72px 24px;
  }

  .consult-page {
    padding: 100px 24px 60px;
  }

  .services-check-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}
