/* Iridescent — Light Theme */

:root {
  --plum: #5a1262;
  --plum-dark: #3d0d44;
  --plum-light: #7a3a82;
  --lavender: #b388eb;
  --lavender-pale: #f3ebfc;
  --peach: #ffb38a;
  --peach-pale: #fff4ee;
  --mint: #b2f2bb;
  --mint-pale: #eefbf0;
  --sky: #a5d8ff;
  --sky-pale: #edf6ff;
  --white: #ffffff;
  --off-white: #faf9fb;
  --gray-50: #f5f4f6;
  --gray-100: #ebe9ed;
  --gray-200: #d5d2d8;
  --gray-500: #7a7580;
  --gray-700: #3d3940;
  --gray-900: #1a171c;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(90, 18, 98, 0.08);
  --shadow-lg: 0 12px 48px rgba(90, 18, 98, 0.12);
  --max-width: 1120px;
  --header-height: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--plum);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--plum-dark);
}

h1, h2, h3 {
  color: var(--gray-900);
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
}

ul, ol {
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.container.narrow {
  max-width: 760px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--plum);
  color: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* Headline strip */
.headline-strip {
  background:
    linear-gradient(90deg, var(--lavender-pale) 0%, var(--mint-pale) 50%, var(--sky-pale) 100%);
  border-bottom: 1px solid var(--gray-100);
}

.headline-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  padding: 3.5rem 0;
}

.headline-strip-logo {
  flex-shrink: 0;
  height: 70px;
  width: auto;
}

.headline-strip-text {
  margin: 0;
  max-width: 42rem;
  font-size: clamp(1.375rem, 2.75vw, 1.875rem);
  font-weight: 800;
  line-height: 1.4;
  color: var(--gray-900);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  height: var(--header-height);
}

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

.logo {
  height: 36px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
}

.site-nav a:hover {
  color: var(--plum);
}

.nav-cta {
  background: var(--plum);
  color: var(--white) !important;
  padding: 0.5rem 1.125rem;
  border-radius: 999px;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

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

.btn-primary:hover {
  background: var(--plum-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--plum);
  border-color: var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--plum);
  color: var(--plum-dark);
}

.btn-full {
  width: 100%;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--plum-light);
  margin: 0 0 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--gray-500);
}

/* Hero */
.hero {
  padding: 4rem 0 5rem;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, var(--lavender-pale) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, var(--mint-pale) 0%, transparent 55%),
    var(--off-white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 1rem;
}

.hero-note {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

/* Image placeholders */
.image-placeholder {
  background: linear-gradient(135deg, var(--lavender-pale) 0%, var(--sky-pale) 50%, var(--peach-pale) 100%);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-placeholder {
  min-height: 380px;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.headshot-placeholder {
  aspect-ratio: 1;
  min-height: unset;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.placeholder-inner {
  padding: 1.5rem;
  text-align: center;
}

.placeholder-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--plum);
  background: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.placeholder-prompt {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

/* Problem */
.section-problem {
  background: var(--white);
}

.problem-cards {
  margin-top: 2rem;
}

.problem-card {
  background: var(--peach-pale);
  border-left: 4px solid var(--peach);
  padding: 1.5rem 2rem 1.25rem 2rem;
  margin: 0 0 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.problem-card p {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gray-900);
  font-style: italic;
  margin: 0 0 0.5rem;
}

.problem-card cite {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-style: normal;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.problem-box {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--plum);
  border-radius: var(--radius);
  padding: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-900);
  box-shadow: var(--shadow);
}

/* Solution comparison */
.section-solution {
  background: var(--gray-50);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.comparison-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.comparison-limited {
  transform: scale(0.925);
  transform-origin: center;
}

.comparison-featured {
  border-color: var(--plum);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--plum);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 1rem;
  border-radius: 999px;
}

.comparison-tag {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.comparison-card ul {
  list-style: none;
  display: grid;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.comparison-card li {
  font-size: 0.9375rem;
  padding-left: 1.5rem;
  position: relative;
}

.comparison-card li.yes::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2d8a4e;
  font-weight: 700;
}

.comparison-card li.no::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #c44;
  font-weight: 700;
}

.comparison-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--plum);
  margin: 0;
}

/* How it works */
.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.how-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-block {
  position: relative;
  z-index: 1;
}

.house-image {
  width: 420px;
  max-width: none;
  margin: 0 -89px 0 -108px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 12px 32px rgba(90, 18, 98, 0.16));
}

.how-block {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.how-subtitle {
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.steps li {
  padding-left: 0;
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.capability-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  background: var(--lavender-pale);
  color: var(--plum);
  border-radius: 999px;
}

/* Kaya */
.section-kaya {
  background:
    radial-gradient(ellipse 50% 40% at 0% 50%, var(--sky-pale) 0%, transparent 60%),
    var(--off-white);
}

.kaya-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.kaya-image {
  width: 100%;
  filter: drop-shadow(0 0 6px rgba(90, 18, 98, 0.3));
}

.kaya-examples {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.kaya-question {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--plum);
  margin: 0;
  box-shadow: var(--shadow);
}

/* Privacy */
.section-privacy {
  background: var(--white);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.privacy-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.privacy-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.privacy-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.privacy-item p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

/* Agencies */
.section-agencies {
  background: var(--gray-50);
}

.agencies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.benefit-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.benefit-list li {
  padding-left: 1.25rem;
  border-left: 3px solid var(--lavender);
}

/* Families */
.section-families {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, var(--mint-pale) 0%, transparent 55%),
    var(--white);
  text-align: center;
}

.families-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.stat {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--plum);
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--gray-500);
}

.families-note {
  font-size: 0.9375rem;
  color: var(--gray-500);
}

/* Team */
.section-team {
  background: var(--gray-50);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 640px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.team-role {
  color: var(--plum-light);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-contact {
  font-size: 0.9375rem;
  margin: 0;
}

.team-contact a {
  text-decoration: none;
}

.team-contact a:hover {
  text-decoration: underline;
}

/* Contact */
.section-contact {
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, var(--lavender-pale) 0%, transparent 60%),
    var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-direct {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
}

.contact-direct p {
  margin-bottom: 0.5rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.375rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(90, 18, 98, 0.12);
}

.form-row input.error,
.form-row textarea.error {
  border-color: #c44;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--gray-500);
  text-align: center;
  margin: 0.75rem 0 0;
}

/* Footer */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-200);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-logo {
  margin: 0 auto 0.75rem;
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .kaya-grid,
  .agencies-grid,
  .contact-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

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

  .comparison-featured {
    transform: none;
  }

  .house-image {
    margin: -60px 0;
    width: 320px;
  }

  .privacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .families-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .headline-strip-inner {
    padding: 2.5rem 0;
    gap: 1.25rem;
  }

  .headline-strip-logo {
    height: 60px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--gray-100);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section {
    padding: 3.5rem 0;
  }

  .privacy-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .privacy-grid {
    gap: 0.25rem;
  }

  .privacy-item:first-child {
    padding: 0 1rem 1rem 1rem;
  }

  .privacy-item {
    padding: 1rem;
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
