:root {
  --bg: #fffaf6;
  --surface: #ffffff;
  --surface-alt: #f6ede6;
  --text: #231f20;
  --muted: #6a5f5a;
  --brand: #8a3c58;
  --brand-dark: #67263f;
  --accent: #e4a64d;
  --border: #eadbd1;
  --shadow: 0 18px 45px rgba(68, 37, 27, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { max-width: 760px; }
.section-pad { padding: 88px 0; }
.alt { background: var(--surface-alt); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(16px, 4vw, 48px);
  background: rgba(255, 250, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 650;
}
.site-nav a { text-decoration: none; color: var(--muted); }
.site-nav a:hover { color: var(--brand); }
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff !important;
}
.menu-toggle {
  display: none;
  border: 0;
  background: var(--surface);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(35, 31, 32, 0.86) 0%, rgba(35, 31, 32, 0.72) 34%, rgba(35, 31, 32, 0.25) 58%, rgba(35, 31, 32, 0.08) 100%),
    url("assets/advice-kaur-hero.png") center right / cover no-repeat;
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(255, 250, 246, 0.95));
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  gap: 28px;
  align-items: center;
}
.eyebrow {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.78rem;
  margin: 0 0 12px;
}
h1, h2, h3 { line-height: 1.1; margin-top: 0; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.55rem); margin-bottom: 20px; letter-spacing: -0.06em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 20px; letter-spacing: -0.045em; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
.hero .eyebrow { color: #ffdca5; }
.lead { font-size: clamp(1.15rem, 2vw, 1.35rem); max-width: 650px; color: var(--muted); }
.hero .lead { color: rgba(255, 255, 255, 0.88); }
.hero .trust-note { color: rgba(255, 255, 255, 0.82); }
.hero-copy { max-width: 720px; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.hero-points li {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 18px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
}
.primary { background: var(--brand); color: #fff; }
.primary:hover { background: var(--brand-dark); }
.secondary { border-color: var(--brand); color: var(--brand); background: transparent; }
.trust-note { color: var(--muted); font-weight: 650; }
.hero-card, .card, .pricing-box, .contact-form, details {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 28px;
}
.hero-card {
  padding: 32px;
  transform: rotate(1deg);
}
.hero .hero-card {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.hero .check-list li { color: var(--text); }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 34px; margin: 18px 0; font-weight: 700; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f2e0eb;
  color: var(--brand);
}

.cards { display: grid; gap: 22px; margin-top: 32px; }
.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { padding: 28px; }
.card p, .pricing-box p, .split p, .faq-list p { color: var(--muted); }

.split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: start; }
.steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 18px; counter-reset: steps; }
.steps li {
  position: relative;
  padding: 22px 22px 22px 72px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.steps li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text);
  font-weight: 900;
}
.steps span { display: block; color: var(--muted); margin-top: 4px; }
.pricing-box { padding: 30px; max-width: 760px; }
.pricing-box ul { margin-bottom: 0; }
.testimonial { text-align: center; max-width: 820px; }
.quote { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; margin: 0; font-weight: 800; letter-spacing: -0.04em; }
.quote-by { color: var(--muted); font-weight: 800; }
.faq-list { display: grid; gap: 14px; margin-top: 28px; }
details { padding: 20px 24px; box-shadow: none; }
summary { cursor: pointer; font-weight: 800; }
summary::marker { color: var(--brand); }
.contact-section { background: var(--brand-dark); color: #fff; }
.contact-section .eyebrow, .contact-section a { color: #ffdca5; }
.contact-section p { color: rgba(255, 255, 255, 0.78); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 42px; align-items: start; }
.contact-options { display: grid; gap: 10px; margin-top: 22px; font-weight: 800; }
.contact-form { padding: 28px; color: var(--text); }
.contact-form label { display: grid; gap: 8px; font-weight: 800; margin-bottom: 16px; }
input, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
}
input:focus, textarea:focus { outline: 3px solid rgba(228, 166, 77, 0.35); border-color: var(--accent); }
.form-note { color: var(--muted) !important; font-size: 0.9rem; margin-bottom: 0; }

.site-footer { background: #1f1b1d; color: #fff; padding: 42px 0 24px; }
.site-footer p { color: rgba(255,255,255,0.7); margin: 8px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: #fff; text-decoration: none; }
.small-print { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 24px; padding-top: 20px; font-size: 0.9rem; }
.legal-page h2 { margin-top: 34px; font-size: 1.5rem; letter-spacing: 0; }
.legal-page p { color: var(--muted); }

@media (max-width: 850px) {
  .menu-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .site-nav.open, .site-nav.visible { display: flex; }
  .site-nav a { padding: 12px; }
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(35, 31, 32, 0.84) 0%, rgba(35, 31, 32, 0.66) 56%, rgba(35, 31, 32, 0.34) 100%),
      url("assets/advice-kaur-hero.png") 66% top / cover no-repeat;
  }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .three { grid-template-columns: 1fr; }
  .section-pad { padding: 64px 0; }
  .hero-card { transform: none; }
  .footer-grid { flex-direction: column; }
}
