:root {
      --navy: #07133f;
      --navy-2: #0b1a55;
      --pink: #f252a7;
      --pink-soft: #fff1f8;
      --white: #ffffff;
      --ink: #17203a;
      --muted: #667085;
      --line: #eadde6;
      --shadow: 0 18px 45px rgba(8, 18, 58, .12);
      --radius: 22px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 84px; }
    body {
      margin: 0;
      color: var(--ink);
      background: #fff;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .shell {
      width: min(var(--max), calc(100% - 44px));
      margin: 0 auto;
      box-sizing: border-box;
      max-width: 100%;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(7, 19, 63, .97);
      color: white;
      border-bottom: 1px solid rgba(255,255,255,.08);
      backdrop-filter: blur(10px);
    }
    .nav-inner {
      min-height: 82px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 26px;
    }
    .brand {
      display: inline-flex;
      flex-direction: column;
      line-height: .92;
      white-space: nowrap;
    }
    .brand-main {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 28px;
      letter-spacing: .2px;
    }
    .brand-main .script {
      font-family: "Brush Script MT", "Segoe Script", cursive;
      color: var(--pink);
      font-size: 31px;
      margin-left: 3px;
    }
    .brand-sub {
      margin-top: 7px;
      font-size: 10px;
      letter-spacing: 4px;
      opacity: .9;
    }

    .menu {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 12px 27px;
      min-width: 0;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .menu a {
      position: relative;
      padding: 30px 0 26px;
    }
    .menu a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: 19px;
      height: 2px;
      background: var(--pink);
      transition: .2s ease;
    }
    .menu a:hover::after { right: 0; }
    .menu a[aria-current="page"] { color: var(--pink); }
    .menu a[aria-current="page"]::after { right: 0; }

    .phone {
      background: var(--pink);
      color: white;
      padding: 12px 16px;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .06em;
      border-radius: 2px;
      box-shadow: 0 8px 24px rgba(242, 82, 167, .22);
    }

    .nav-toggle {
      display: none;
      background: transparent;
      border: 0;
      width: 44px;
      height: 44px;
      padding: 0;
      cursor: pointer;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: white;
      transition: transform .2s ease, opacity .2s ease;
    }
    .nav-toggle:focus-visible {
      outline: 2px solid var(--pink);
      outline-offset: 3px;
    }
    .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); }

    mark.confirm {
      background: #fff3b0;
      color: var(--ink);
      padding: 0 2px;
    }

    @media (prefers-reduced-motion: no-preference) {
      .reveal-ready [data-reveal] {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity .5s ease-out, transform .5s ease-out;
      }
      .reveal-ready [data-reveal].is-visible {
        opacity: 1;
        transform: translateY(0);
      }
      .reveal-ready [data-reveal][data-reveal-delay="1"] { transition-delay: .06s; }
      .reveal-ready [data-reveal][data-reveal-delay="2"] { transition-delay: .12s; }
      .reveal-ready [data-reveal][data-reveal-delay="3"] { transition-delay: .18s; }
      .reveal-ready [data-reveal][data-reveal-delay="4"] { transition-delay: .24s; }
    }

    .hero {
      min-height: 570px;
      display: grid;
      grid-template-columns: 46% 54%;
      background: linear-gradient(135deg, #f65caf, #ef4ba2 66%, #f37ab7);
      overflow: clip;
      max-width: 100%;
    }
    .hero-copy {
      color: white;
      display: flex;
      align-items: center;
      padding: 60px max(5vw, 46px);
      position: relative;
      isolation: isolate;
    }
    .hero-copy::after {
      content: "⌂";
      position: absolute;
      right: 22px;
      bottom: -52px;
      font-size: 270px;
      line-height: 1;
      color: rgba(255,255,255,.06);
      z-index: -1;
    }
    .eyebrow {
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    h1, h2, h3, p { margin-top: 0; }
    h1 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(53px, 5vw, 79px);
      line-height: .98;
      font-weight: 500;
      margin-bottom: 24px;
      max-width: 560px;
    }
    .hero-script {
      font-family: "Brush Script MT", "Segoe Script", cursive;
      font-size: 1.08em;
      color: var(--navy);
      white-space: nowrap;
    }
    .hero-copy p {
      max-width: 500px;
      font-size: 18px;
      margin-bottom: 26px;
    }
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 26px;
      border: 0;
      background: var(--navy);
      color: white;
      font: inherit;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .button:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(7,19,63,.2);
    }
    .button.pink { background: var(--pink); }
    .hero-photo {
      position: relative;
      min-height: 570px;
      overflow: clip;
      max-width: 100%;
    }
    .hero-photo::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(242,82,167,.25), rgba(255,255,255,0) 26%);
      z-index: 1;
      pointer-events: none;
    }
    .hero-photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 42%;
    }

    .intro {
      padding: 56px 0;
      background: white;
    }
    .intro-grid {
      display: grid;
      grid-template-columns: .95fr .95fr 1.05fr;
      gap: 34px;
      align-items: stretch;
    }
    .intro-photo {
      min-height: 360px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .intro-photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 33%;
    }
    .family-photo {
      min-height: 320px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .family-photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
    }
    .intro-copy {
      padding: 20px 0 18px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .intro-copy .pink-label,
    .help .pink-label {
      color: var(--pink);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 7px;
    }
    .name-display {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 46px;
      line-height: 1;
      color: var(--navy);
      margin-bottom: 17px;
    }
    .name-display .script {
      font-family: "Brush Script MT", "Segoe Script", cursive;
      color: var(--pink);
      font-size: 48px;
    }
    .intro-copy p {
      color: #39415d;
      max-width: 430px;
      font-size: 16px;
    }
    .text-link {
      color: var(--pink);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-top: 8px;
    }

    .help {
      border-left: 1px solid #cfd4e1;
      padding: 17px 0 17px 35px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .service {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 16px;
      margin: 13px 0;
    }
    .service-icon {
      width: 48px;
      height: 48px;
      border: 2px solid var(--pink);
      color: var(--pink);
      display: grid;
      place-items: center;
      border-radius: 50%;
      font-size: 22px;
      font-weight: 800;
    }
    .service h3 {
      margin: 0 0 2px;
      color: var(--navy);
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: .03em;
    }
    .service p {
      margin: 0;
      color: #566079;
      font-size: 14px;
    }

    .reviews {
      padding: 53px 0 62px;
      background: linear-gradient(180deg, #fff9fc, #fff0f7);
      text-align: center;
    }
    .section-title {
      color: var(--navy);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(34px, 4vw, 50px);
      line-height: 1.05;
      margin-bottom: 30px;
    }
    .section-title .script {
      font-family: "Brush Script MT", "Segoe Script", cursive;
      color: var(--pink);
      font-size: 1.15em;
    }
    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .card {
      text-align: left;
      background: white;
      border: 1px solid rgba(7,19,63,.07);
      padding: 28px;
      min-height: 210px;
      box-shadow: 0 12px 30px rgba(23,32,58,.05);
    }
    .quote {
      color: var(--pink);
      font-family: Georgia, serif;
      font-size: 42px;
      line-height: .6;
      margin-bottom: 16px;
    }
    .stars {
      color: var(--pink);
      letter-spacing: 4px;
      font-size: 14px;
      margin-top: 16px;
    }
    .placeholder-note {
      font-size: 11px;
      color: #8b91a4;
      margin-top: 16px;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .contact {
      background: var(--pink);
      color: white;
      padding: 55px 0;
      position: relative;
      overflow: clip;
      box-sizing: border-box;
      max-width: 100%;
    }
    .contact::before {
      content: "⌂";
      position: absolute;
      left: -10px;
      bottom: -90px;
      font-size: 320px;
      color: rgba(255,255,255,.06);
    }
    .contact-grid {
      position: relative;
      display: grid;
      grid-template-columns: .85fr 1.35fr .78fr;
      gap: 28px;
      align-items: stretch;
      box-sizing: border-box;
      max-width: 100%;
    }
    .contact h2 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 52px;
      line-height: .98;
      font-weight: 500;
      margin-bottom: 18px;
    }
    .contact p { font-size: 16px; max-width: 350px; }
    form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      align-content: center;
      box-sizing: border-box;
      max-width: 100%;
    }
    input, textarea, button {
      box-sizing: border-box;
    }
    input, textarea {
      width: 100%;
      max-width: 100%;
      border: 0;
      outline: none;
      padding: 14px 15px;
      font: inherit;
      color: var(--ink);
      background: white;
    }
    textarea {
      grid-column: 1 / -1;
      min-height: 112px;
      resize: vertical;
    }
    .call-card {
      background: var(--navy);
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      box-sizing: border-box;
      max-width: 100%;
    }
    .call-card .call-icon {
      width: 52px;
      height: 52px;
      margin: 0 auto 18px;
      border-radius: 50%;
      background: var(--pink);
      display: grid;
      place-items: center;
      font-size: 25px;
    }
    .call-card .number {
      font-family: Georgia, serif;
      font-size: 28px;
      margin: 5px 0 20px;
    }

    footer {
      background: var(--navy);
      color: white;
      padding: 34px 0 18px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      align-items: center;
      gap: 25px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .footer-center {
      text-align: center;
      font-size: 14px;
      opacity: .92;
    }
    .broker {
      text-align: right;
      font-size: 17px;
      font-weight: 800;
      line-height: 1.15;
    }

    .social-links {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 10px;
      margin-top: 14px;
    }
    .social-link {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 50%;
      color: white;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .social-link:hover {
      transform: translateY(-2px);
      background: var(--pink);
      border-color: var(--pink);
    }
    .social-link svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
      display: block;
    }
    .social-link .stroke-icon {
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .footer-bottom {
      padding-top: 15px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      font-size: 11px;
      opacity: .7;
    }

    @media (max-width: 980px) {
      .nav-inner { grid-template-columns: 1fr auto auto; }
      .nav-toggle { display: flex; }
      .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        background: rgba(7, 19, 63, .98);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height .25s ease, opacity .2s ease, visibility .25s;
      }
      .menu.is-open {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
      }
      .menu a {
        padding: 16px 24px;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,.08);
      }
      .menu a::after { content: none; }
      .menu a[aria-current="page"] { color: var(--pink); }
      .hero {
        grid-template-columns: 1fr;
      }
      .hero-copy {
        min-height: 470px;
        padding: 60px 34px;
      }
      .hero-photo {
        min-height: 560px;
      }
      .hero-photo img {
        object-position: center 28%;
      }
      .intro-grid {
        grid-template-columns: 1fr 1fr;
      }
      .intro-photo { min-height: 420px; }
      .help {
        grid-column: 1 / -1;
        border-left: 0;
        border-top: 1px solid #cfd4e1;
        padding: 32px 0 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }
      .help .pink-label { grid-column: 1 / -1; }
      .service { grid-template-columns: 42px 1fr; }
      .service-icon { width: 42px; height: 42px; }
      .contact-grid { grid-template-columns: 1fr 1.4fr; }
      .call-card { grid-column: 1 / -1; }
    }

    @media (max-width: 700px) {
      html { scroll-padding-top: 72px; }
      .shell { width: min(calc(100% - 28px), var(--max)); }
      .phone { display: none; }
      .nav-inner { min-height: 70px; }
      .brand-main { font-size: 24px; }
      .hero-copy { min-height: 430px; padding: 48px 24px; }
      .hero-photo { min-height: 500px; }
      h1 { font-size: 50px; }
      .hero-script { white-space: normal; }
      .intro { padding: 30px 0 36px; }
      .intro-grid { grid-template-columns: 1fr; gap: 18px; }
      .intro-photo { min-height: 430px; }
      .intro-copy { padding: 12px 3px; }
      .help {
        grid-column: auto;
        grid-template-columns: 1fr;
        padding: 26px 3px 0;
      }
      .help .pink-label { grid-column: auto; }
      .cards { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      form { grid-template-columns: 1fr; }
      textarea { grid-column: auto; }
      .footer-top { grid-template-columns: 1fr; text-align: center; }
      .broker { text-align: center; }
      .social-links { justify-content: center; }
      .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
    }

/* =========================================================
   Reusable styles for future add-on pages
   ========================================================= */

.page-hero {
  background: linear-gradient(135deg, var(--pink), #ef4ba2 65%, #f47bbb);
  color: white;
  padding: 88px 0 76px;
  text-align: center;
}
.page-hero .eyebrow {
  margin-bottom: 14px;
}
.page-hero h1 {
  max-width: 850px;
  margin: 0 auto 18px;
}
.page-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
}

.content-section {
  padding: 72px 0;
  background: white;
}
.content-section.soft {
  background: var(--pink-soft);
}
.content-narrow {
  max-width: 820px;
  margin: 0 auto;
}
.content-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}
.content-card {
  background: white;
  border: 1px solid rgba(7,19,63,.08);
  box-shadow: var(--shadow);
  padding: 30px;
}
.content-card h2,
.content-card h3 {
  color: var(--navy);
}
.kicker {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.prose h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.prose h3 {
  color: var(--navy);
  font-size: 20px;
  margin-top: 30px;
}
.prose p,
.prose li {
  color: #39415d;
  font-size: 16px;
}
.prose a {
  color: var(--pink);
  font-weight: 800;
}
.cta-band {
  background: var(--navy);
  color: white;
  padding: 52px 0;
}
.cta-band .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  margin-bottom: 8px;
}
.cta-band p {
  margin: 0;
  opacity: .9;
}
.site-section-title {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  margin-bottom: 18px;
}

@media (max-width: 800px) {
  .content-grid-2 {
    grid-template-columns: 1fr;
  }
  .cta-band .shell {
    flex-direction: column;
    align-items: flex-start;
  }
}
