:root {
  --plum: #24183e;
  --plum-deep: #1a1130;
  --plum-soft: #3a2a5e;
  --gold: #d4a94e;
  --gold-bright: #e6ba5c;
  --cream: #f9e1bd;
  --cream-soft: #fdf3df;
  --ink: #1a1426;
  --ink-soft: #4a3d5c;
  --muted: #7a6f88;
  --line: #e8ddc4;
  --white: #ffffff;
  --success-bg: #eef6f2;
  --danger-bg: #fbf2ef;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--plum);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }
p { margin-bottom: 1rem; color: var(--ink-soft); }
ul, ol { margin: 0 0 1rem 1.25rem; color: var(--ink-soft); }
li { margin-bottom: 0.7rem; }
a { color: inherit; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  max-width: 100%;
  white-space: normal;
  line-height: 1.45;
}

.eyebrow-dark { color: var(--gold-bright); }

nav {
  background: var(--plum);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--plum-soft);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}

nav .container > * {
  min-width: 0;
}

.logo {
  font-family: "Georgia", serif;
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  margin-left: auto;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--plum) !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--gold-bright); color: var(--plum) !important; }

@media (max-width: 860px) {
  nav {
    padding: 14px 0;
  }

  nav .container {
    gap: 16px;
  }

  .logo {
    font-size: 1.05rem;
    max-width: 52%;
    white-space: normal;
    line-height: 1.15;
  }

  .nav-links {
    gap: 0;
    flex: 0 0 auto;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    font-size: 0.92rem;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .container,
  .container-narrow {
    padding: 0 18px;
  }

  nav .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
  }

  .nav-links {
    min-width: 0;
  }

  .logo {
    font-size: 0.82rem;
    max-width: none;
    min-width: 0;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .nav-cta {
    width: auto;
    min-width: 108px;
    max-width: 108px;
    padding: 9px 8px;
    font-size: 0.74rem;
    white-space: normal;
    line-height: 1.05;
  }

  .hero {
    padding: 58px 0 52px;
    overflow: hidden;
  }

  .hero .container {
    min-width: 0;
  }

  .hero .eyebrow {
    max-width: 220px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .hero h1 {
    font-size: 1.62rem;
    line-height: 1.06;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-subhead {
    font-size: 0.95rem;
    line-height: 1.42;
    max-width: 100%;
  }

  .hero-meta {
    display: grid;
    gap: 12px;
  }

  .hero-meta div {
    min-width: 0;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}


.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gold);
  color: var(--plum);
}

.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(36, 24, 62, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
}

.btn-secondary:hover {
  background: var(--cream);
  color: var(--plum);
}

.btn-ghost {
  background: transparent;
  color: var(--plum);
  border: 1px solid var(--plum);
}

.btn-ghost:hover {
  background: var(--plum);
  color: var(--cream);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: var(--cream);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 169, 78, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1,
.hero h2 { color: var(--cream); }

.hero-subhead,
.hero p,
.hero li {
  color: var(--cream);
  opacity: 0.9;
}

.hero-subhead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  max-width: 720px;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-meta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(249, 225, 189, 0.15);
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.75;
}

.hero-meta div::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

section { padding: 90px 0; }
section.tight { padding: 70px 0; }

.section-header {
  max-width: 760px;
  margin-bottom: 3.5rem;
}

.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pain-strip {
  background: var(--plum);
  color: var(--cream);
  padding: 70px 0;
}

.pain-strip h2 { color: var(--cream); }

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

@media (max-width: 720px) {
  .pain-grid { grid-template-columns: 1fr; gap: 32px; }
}

.pain-stat {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}

.pain-stat .number {
  font-family: "Georgia", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
}

.pain-stat p {
  color: var(--cream);
  opacity: 0.85;
  font-size: 0.98rem;
  margin: 0;
}

.pain-source {
  margin-top: 2.5rem;
  font-size: 0.82rem;
  color: var(--cream);
  opacity: 0.55;
  font-style: italic;
}

.services { background: var(--cream-soft); }
.services-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

@media (max-width: 720px) {
  .services-grid,
  .card-grid { grid-template-columns: 1fr; }
}

.service-card,
.content-card,
.pillar-card,
.deliverable-card,
.fit-card,
.investment-card,
.placeholder-card,
.checkout-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 6px;
}

.service-card {
  transition: all 0.25s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(36, 24, 62, 0.08);
  border-color: var(--gold);
}

.service-tag {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.service-card p,
.content-card p,
.pillar-card p,
.deliverable-card p,
.placeholder-card p,
.checkout-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--plum);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  gap: 6px;
}

.service-link::after {
  content: "→";
  transition: transform 0.2s;
}

.service-link:hover::after { transform: translateX(4px); }

.process,
.page-section-white { background: var(--white); }

.process-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 3rem;
}

@media (max-width: 860px) {
  .process-grid,
  .step-grid { grid-template-columns: 1fr; gap: 32px; }
}

.process-step,
.step-card {
  position: relative;
  padding-top: 24px;
}

.process-number,
.step-number {
  font-family: "Georgia", serif;
  font-size: 3.5rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.about,
.page-band-dark {
  background: var(--plum);
  color: var(--cream);
}

.about h2,
.page-band-dark h2,
.page-band-dark h3 { color: var(--cream); }
.about p,
.page-band-dark p,
.page-band-dark li { color: var(--cream); opacity: 0.88; }

.about-grid,
.two-column,
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 860px) {
  .about-grid,
  .two-column,
  .split-grid { grid-template-columns: 1fr; gap: 28px; }
}

.credentials {
  list-style: none;
  margin-top: 2rem;
}

.credentials li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(249, 225, 189, 0.15);
  color: var(--cream);
  opacity: 0.9;
  font-size: 0.98rem;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.credentials li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  margin-top: 9px;
  flex-shrink: 0;
}

.testimonial { background: var(--white); padding: 100px 0; }
.testimonial-container { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.testimonial-card {
  position: relative;
  padding: 56px 64px;
  background: var(--cream-soft);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}

@media (max-width: 720px) {
  .testimonial-card { padding: 40px 28px; }
}

.testimonial-mark {
  font-family: "Georgia", serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 28px;
  pointer-events: none;
}

.testimonial-quote {
  font-family: "Georgia", serif;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.55;
  color: var(--plum);
  font-weight: 400;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.testimonial-attribution .name {
  font-weight: 700;
  color: var(--plum);
  font-size: 0.98rem;
}

.testimonial-attribution .role {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-style: italic;
}

.fit { background: var(--cream-soft); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 2rem; }
@media (max-width: 720px) {
  .fit-grid { grid-template-columns: 1fr; }
}
.fit-card { border-top: 3px solid var(--gold); }
.fit-card h4 { margin-bottom: 0.6rem; }
.fit-card p { font-size: 0.95rem; margin: 0; }

.pillar-card {
  border-top: 3px solid var(--gold);
  height: 100%;
}
.pillar-number,
.deliverable-label {
  display: inline-block;
  font-weight: 700;
  color: var(--plum);
}

.deliverables-grid,
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

@media (max-width: 860px) {
  .deliverables-grid,
  .pillars-grid { grid-template-columns: 1fr; }
}

.deliverable-card { border-left: 3px solid var(--gold); }
.deliverable-card p { margin: 0; }

.compare-card {
  border-top: 4px solid var(--gold);
  height: 100%;
}

.compare-card.not-for { border-top-color: #b26a5d; background: var(--danger-bg); }
.compare-card.for { background: var(--success-bg); }
.compare-card ul { margin-top: 1rem; }

.investment-section {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: var(--cream);
  text-align: center;
}
.investment-section h2,
.investment-section h3,
.investment-section p { color: var(--cream); }
.investment-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(249,225,189,0.18);
  max-width: 720px;
  margin: 2rem auto 0;
}
.price {
  font-family: "Georgia", serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--gold-bright);
  line-height: 1;
  margin: 1rem 0;
}
.price-meta { color: var(--cream); opacity: 0.88; }

.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-weight: 600;
  color: var(--plum);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
}
.faq-body {
  padding: 20px 24px 24px;
}
.faq-body p { margin: 0; }

.placeholder-hero,
.checkout-hero {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: var(--cream);
  text-align: center;
}
.placeholder-hero h1,
.placeholder-hero p,
.checkout-hero h1,
.checkout-hero p { color: var(--cream); }
.placeholder-card,
.checkout-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-section {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: var(--cream);
  text-align: center;
}

.cta-section h2,
.cta-section p { color: var(--cream); }
.cta-section p { opacity: 0.88; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-section .btn-group { justify-content: center; }

footer {
  background: var(--plum-deep);
  color: var(--cream);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

footer h4 {
  color: var(--gold);
  font-family: -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

footer p, footer a {
  color: var(--cream);
  opacity: 0.75;
  font-size: 0.92rem;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

footer a:hover { opacity: 1; color: var(--gold); }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(249, 225, 189, 0.1);
  font-size: 0.82rem;
  opacity: 0.55;
  text-align: center;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

.site-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.form-field span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--plum);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 169, 78, 0.16);
}

.note-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 22px 24px;
}

.note-card p,
.status-item p,
code {
  color: var(--ink-soft);
}

.status-list {
  display: grid;
  gap: 18px;
  margin: 2rem 0;
  text-align: left;
}

.status-item {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream-soft);
}

.status-item strong {
  display: block;
  color: var(--plum);
  margin-bottom: 6px;
}

.left-align {
  text-align: left;
}

@media (max-width: 720px) {
  .site-form {
    padding: 24px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
