:root {
  --navy: #06427f;
  --deep-blue: #006499;
  --ocean: #1598b7;
  --cyan: #18b4c8;
  --aqua: #52cbd3;
  --ice: #eefbfe;
  --mist: #f7fcfd;
  --ink: #09223d;
  --muted: #557083;
  --line: #d6eef4;
  --warm: #f3b84b;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(6, 66, 127, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(214, 238, 244, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  border-radius: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  color: #294d65;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--deep-blue);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.header-cta {
  color: #06253f;
  background: var(--warm);
  box-shadow: 0 12px 26px rgba(6, 66, 127, 0.18);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  overflow: hidden;
  background: var(--navy);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 27, 55, 0.86) 0%, rgba(6, 66, 127, 0.7) 34%, rgba(6, 66, 127, 0.22) 68%, rgba(3, 27, 55, 0.08) 100%),
    linear-gradient(180deg, rgba(3, 27, 55, 0.05), rgba(3, 27, 55, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(760px, calc(100vh - 76px));
  width: min(720px, 92vw);
  flex-direction: column;
  justify-content: center;
  padding: 86px clamp(22px, 6vw, 76px) 110px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.contact-section h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: #d7f6fc;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button.primary {
  color: #06253f;
  background: var(--warm);
  border-color: rgba(255, 255, 255, 0.2);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
}

.intro-band {
  position: relative;
  z-index: 2;
  width: min(1140px, calc(100% - 36px));
  margin: -50px auto 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.intro-grid div {
  min-height: 126px;
  padding: 24px;
  background: linear-gradient(180deg, #f7feff, #edf9fc);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat {
  display: block;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
}

.intro-grid p,
.card p,
.start-card p,
.split-copy p,
.process-step p,
.celebration-card p,
.outcome-list p,
.contact-section p,
.footer p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section,
.start-section,
.split-section,
.contact-section {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 118px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 680px;
}

.section-heading h2,
.split-copy h2,
.contact-section h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.section-heading p,
.split-copy p,
.contact-section p {
  max-width: 690px;
  font-size: 1.04rem;
}

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

.card {
  min-height: 270px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--cyan);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(9, 34, 61, 0.06);
}

.card:nth-child(2) {
  border-top-color: var(--deep-blue);
}

.card:nth-child(3) {
  border-top-color: var(--aqua);
}

.card-kicker,
.date {
  color: var(--deep-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card h3,
.start-card h3,
.process-step h3,
.celebration-card h3,
.outcome-list h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.2;
}

.start-section {
  padding-top: 0;
}

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

.start-card {
  min-height: 230px;
  padding: 28px;
  background: linear-gradient(180deg, var(--white), #eefbfe);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(6, 66, 127, 0.08);
}

.start-card span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--deep-blue);
  border-radius: 8px;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #294d65;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--deep-blue);
  content: "✓";
  font-weight: 900;
}

.process-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(160deg, var(--navy), var(--deep-blue));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.process-step span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--ocean);
  border-radius: 8px;
  font-weight: 900;
}

.celebrations {
  width: 100%;
  padding-right: max(18px, calc((100% - 1140px) / 2));
  padding-left: max(18px, calc((100% - 1140px) / 2));
  background:
    linear-gradient(180deg, rgba(238, 251, 254, 0.96), rgba(255, 255, 255, 0.96)),
    linear-gradient(90deg, var(--navy), var(--cyan));
}

.celebration-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}

.celebration-card {
  min-height: 250px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(6, 66, 127, 0.08);
}

.celebration-card.featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--ocean));
  border-color: transparent;
}

.celebration-card.featured .date,
.celebration-card.featured h3,
.celebration-card.featured p {
  color: var(--white);
}

.celebration-card.featured .date {
  color: #dffbff;
}

.outcomes {
  padding-bottom: clamp(50px, 8vw, 90px);
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.outcome-list div {
  min-height: 185px;
  padding: 30px;
  background: var(--white);
}

.testimonial-band {
  padding: clamp(62px, 8vw, 96px) clamp(22px, 6vw, 76px);
  color: var(--white);
  background: linear-gradient(135deg, #062742, var(--navy) 55%, var(--cyan));
  text-align: center;
}

.testimonial-band blockquote {
  max-width: 900px;
  margin: 0 auto;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 3.35rem);
  line-height: 1.15;
}

.testimonial-band p {
  margin: 18px 0 0;
  color: #d7f6fc;
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #294d65;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #f8fdfe;
  border: 1px solid #c4e6ef;
  border-radius: 8px;
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(24, 180, 200, 0.16);
  outline: none;
}

.form-button {
  width: 100%;
  border: 0;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: #062742;
}

.footer p {
  margin: 0;
  color: #c8eef5;
  font-weight: 700;
}

.faq-section {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(9, 34, 61, 0.05);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  flex-shrink: 0;
  color: var(--deep-blue);
  content: "+";
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-answer {
  padding: 4px 24px 20px;
}

.faq-answer p {
  margin: 12px 0 0;
  color: var(--muted);
}

.faq-answer a {
  color: var(--deep-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: var(--navy);
}

select {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #f8fdfe;
  border: 1px solid #c4e6ef;
  border-radius: 8px;
  font: inherit;
}

select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(24, 180, 200, 0.16);
  outline: none;
}

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

.form-fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid #c4e6ef;
  border-radius: 8px;
}

.form-fieldset legend {
  padding: 0 6px;
  color: #294d65;
  font-size: 0.92rem;
  font-weight: 800;
}

.form-fieldset .option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.form-fieldset input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--deep-blue);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .hero-content {
    min-height: 680px;
  }

  .intro-grid,
  .card-grid,
  .start-grid,
  .celebration-grid,
  .outcome-list,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-band {
    margin-top: -34px;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    min-height: auto;
  }

  .brand {
    white-space: normal;
  }

  .header-cta {
    order: 2;
    width: 100%;
    margin-top: 2px;
    font-size: 0.92rem;
  }

  .nav-links {
    flex-wrap: wrap;
    overflow-x: visible;
    justify-content: flex-start;
    gap: 8px 14px;
    padding-bottom: 2px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 27, 55, 0.88) 0%, rgba(6, 66, 127, 0.74) 54%, rgba(6, 66, 127, 0.32) 100%),
      linear-gradient(90deg, rgba(3, 27, 55, 0.65), rgba(3, 27, 55, 0.2));
  }

  .hero-content {
    min-height: 720px;
    justify-content: flex-start;
    padding-top: 76px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 16vw, 4.7rem);
  }

  .button {
    width: 100%;
  }

  .intro-grid div,
  .card,
  .start-card,
  .celebration-card,
  .outcome-list div,
  .contact-form {
    padding: 22px;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

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

.consent {
  align-items: flex-start;
  color: #294d65;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--deep-blue);
}

.form-note a {
  color: var(--deep-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
