/* ---------- Design tokens ---------- */
:root {
  --cream: #FBF7F0;
  --cream-soft: #F5EEE3;
  --white: #FFFFFF;
  --terracotta: #C4573A;
  --terracotta-dark: #A8462C;
  --terracotta-light: #F3E4DD;
  --text-dark: #3A2E28;
  --text-muted: #7A6A5D;
  --border-soft: #E8DDD0;
  --gold: #E3A857;

  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --max-width: 1100px;
  --shadow-card: 0 4px 20px rgba(58, 46, 40, 0.06);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

h1, h2, h3 { font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }

h2 { font-size: 34px; margin-bottom: 16px; }
h3 { font-size: 20px; margin-bottom: 12px; }

p { color: var(--text-muted); }

.center { text-align: center; }

.section-eyebrow {
  color: var(--terracotta);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-eyebrow.center { display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(196, 87, 58, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.btn-outline:hover {
  background: var(--terracotta-light);
  transform: translateY(-1px);
}

.btn-ghost-sm {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-soft);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
}

.btn-ghost-sm:hover {
  color: var(--terracotta-dark);
  border-color: var(--terracotta);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  color: var(--text-dark);
}

.logo-mark {
  flex-shrink: 0;
  border-radius: 50%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
  transition: color 0.15s ease;
}

.main-nav a:hover { color: var(--terracotta); }

.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
}

.nav-cta:hover { background: var(--terracotta-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  padding: 120px 0 100px;
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
}

.hero-inner {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.eyebrow {
  color: var(--terracotta);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: 22px;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 17px;
  margin-bottom: 36px;
}

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 56px;
  align-items: start;
}

.about-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-content p { margin-bottom: 16px; }

.about-content h2 { font-size: 30px; }

.about-closing {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 18px;
}

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

/* ---------- How it works ---------- */
.how-it-works { background: var(--white); }

.how-it-works h2 { max-width: 520px; margin-left: auto; margin-right: auto; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.step-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* ---------- Pricing ---------- */
.pricing h2 { max-width: 520px; margin-left: auto; margin-right: auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.price-card-featured {
  border: 2px solid var(--terracotta);
  position: relative;
}

.price-badge {
  display: inline-block;
  background: var(--terracotta-light);
  color: var(--terracotta-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
}

.unit {
  font-size: 14px;
  color: var(--text-muted);
}

.price-note {
  font-size: 13px;
  color: var(--terracotta-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

.price-desc { margin-bottom: 20px; font-size: 15px; }

.price-features {
  margin-bottom: 28px;
  flex-grow: 1;
}

.price-features li {
  font-size: 14px;
  color: var(--text-dark);
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.price-features li::before {
  content: '✓';
  color: var(--terracotta);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.price-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--white); }

.testimonials h2 { max-width: 520px; margin-left: auto; margin-right: auto; }

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
}

.testimonials-grid .testimonial-card {
  flex: 1 1 300px;
  max-width: 340px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 26px;
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 15px;
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial-card footer {
  font-size: 14px;
  font-weight: 600;
  color: var(--terracotta-dark);
}

.testimonial-detail {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ---------- Booking ---------- */
.booking-inner {
  max-width: 680px;
}

.booking-sub { margin-bottom: 40px; }

.calendly-placeholder {
  background: var(--white);
  border: 1.5px dashed var(--border-soft);
  border-radius: var(--radius-md);
  padding: 48px 28px;
  text-align: center;
  margin-bottom: 28px;
}

.calendly-placeholder p { margin-bottom: 6px; }
.calendly-placeholder p:first-child { color: var(--text-dark); }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.contact-card p {
  margin-bottom: 16px;
  font-weight: 500;
  color: var(--text-dark);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--text-dark);
  color: var(--cream-soft);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-inner p, .footer-inner a {
  font-size: 14px;
  color: var(--cream-soft);
}

.footer-inner a:hover { color: var(--gold); }

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-avatar { margin: 0 auto; }
  .steps, .pricing-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border-soft);
    transform: translateY(-150%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    padding: 8px 24px 20px;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-soft);
  }

  .main-nav a:last-child { border-bottom: none; }

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

  .nav-toggle { display: flex; }

  section { padding: 64px 0; }

  .hero { padding: 90px 0 64px; }

  .hero h1 { font-size: 32px; }

  .hero-tagline { font-size: 18px; }

  h2 { font-size: 26px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .price-card, .step-card, .testimonial-card { padding: 26px 20px; }
}

/* ---------- Thank-you page ---------- */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
}

.thankyou-card {
  max-width: 480px;
  width: 100%;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 56px 40px;
}

.thankyou-mark {
  margin: 0 auto 24px;
  border-radius: 50%;
}

.thankyou-headline {
  font-size: 28px;
  margin-bottom: 32px;
}

.thankyou-closing {
  margin-top: 24px;
  font-size: 16px;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .thankyou-card { padding: 40px 24px; }
  .thankyou-headline { font-size: 24px; }
}
