:root {
  --navy: #0b2a4a;
  --teal: #245d5c;
  --ivory: #f8f3ea;
  --sage: #d7e5dc;
  --sage-deep: #a7bcae;
  --gold-soft: #f1e3bd;
  --teal-soft: #dbeceb;
  --gold: #c69a2d;
  --charcoal: #2f3a3a;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(11, 42, 74, 0.12);
  --radius: 24px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 8% 8%, rgba(198,154,45,.10), transparent 26%),
    radial-gradient(circle at 94% 20%, rgba(36,93,92,.11), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, var(--ivory) 55%, #ffffff 100%);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  background: var(--navy);
  color: white;
  padding: .75rem 1rem;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(198, 154, 45, 0.25);
}
.nav-wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  color: var(--navy);
}
.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: .08em;
}
.brand-subtitle {
  margin-top: .3rem;
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
}
.main-nav { display: flex; align-items: center; gap: 1.1rem; }
.main-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 650;
  font-size: .94rem;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--teal); }
.nav-book {
  background: var(--navy);
  color: var(--white) !important;
  padding: .78rem 1.05rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(11, 42, 74, .18);
}
.nav-book:hover { background: var(--teal); }
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(11,42,74,.2);
  border-radius: 10px;
  padding: .55rem .7rem;
  font-size: 1.35rem;
  color: var(--navy);
}

main { min-height: 65vh; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 5.5rem;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.hero::before {
  width: 380px;
  height: 380px;
  right: -120px;
  top: -80px;
  background: rgba(221,232,225,.75);
}
.hero::after {
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: -110px;
  background: rgba(198,154,45,.10);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 4rem;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .82rem;
}
h1, h2, h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
  margin-top: 0;
}
h1 { font-size: clamp(2.65rem, 6vw, 5.25rem); margin-bottom: 1.35rem; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.42rem; margin-bottom: .55rem; }
.hero p { font-size: 1.17rem; max-width: 730px; }
.hero-logo-card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(198,154,45,.32);
  border-radius: 36px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.hero-logo-card img { margin: auto; max-height: 500px; object-fit: contain; }
.actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 50px;
  padding: .82rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: white; }
.button-primary:hover { background: var(--teal); }
.button-secondary { border-color: var(--navy); color: var(--navy); background: rgba(255,255,255,.75); }
.button-secondary:hover { background: var(--navy); color: white; }
.micro-note { font-size: .88rem; color: #5a6666; margin-top: 1rem; }

.trust-strip {
  background: linear-gradient(100deg, var(--navy) 0%, #113b61 48%, var(--teal) 100%);
  color: white;
  padding: 1.05rem 0;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  font-weight: 750;
  letter-spacing: .02em;
}
.trust-items span + span { border-left: 1px solid rgba(255,255,255,.22); }

.section { padding: 5rem 0; }
.section-soft {
  background:
    radial-gradient(circle at 12% 18%, rgba(198,154,45,.12), transparent 28%),
    linear-gradient(135deg, rgba(215,229,220,.82), rgba(255,253,248,.96));
}
.section-navy { background: var(--navy); color: white; }
.section-navy h2, .section-navy h3 { color: white; }
.section-heading { max-width: 760px; margin-bottom: 2.4rem; }
.section-heading p { font-size: 1.05rem; }

.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(198,154,45,.28);
  border-radius: var(--radius);
  padding: 1.65rem;
  box-shadow: 0 10px 28px rgba(11,42,74,.07);
  position: relative;
  overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--gold), var(--teal)); }
.card-grid.three .card:nth-child(3n+1) { background: linear-gradient(180deg, rgba(241,227,189,.30), rgba(255,255,255,.96) 34%); }
.card-grid.three .card:nth-child(3n+2) { background: linear-gradient(180deg, rgba(219,236,235,.55), rgba(255,255,255,.96) 34%); }
.card-grid.three .card:nth-child(3n+3) { background: linear-gradient(180deg, rgba(215,229,220,.58), rgba(255,255,255,.96) 34%); }
.card p:last-child { margin-bottom: 0; }
.card-link { text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.card-link:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.spark { color: var(--gold); font-size: 1.25rem; }

.page-hero {
  padding: 4.7rem 0 3.5rem;
  background:
    radial-gradient(circle at 86% 18%, rgba(36,93,92,.20), transparent 35%),
    radial-gradient(circle at 8% 88%, rgba(198,154,45,.18), transparent 30%),
    linear-gradient(135deg, #fffdf8, var(--ivory));
  border-bottom: 1px solid rgba(198,154,45,.22);
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.6rem); max-width: 980px; }
.page-hero p { max-width: 820px; font-size: 1.15rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.profile-card {
  background: white;
  border-radius: 30px;
  padding: 2rem;
  border: 1px solid rgba(198,154,45,.25);
  box-shadow: var(--shadow);
  text-align: center;
}
.profile-card img { width: min(320px, 100%); margin: auto; }
.profile-card .role { color: var(--teal); font-weight: 750; }

.service-list { display: grid; gap: 1rem; }
.service-item {
  background: white;
  border-radius: 20px;
  padding: 1.4rem;
  border-left: 5px solid var(--gold);
  box-shadow: 0 8px 24px rgba(11,42,74,.06);
}
.service-item h3 { margin-bottom: .35rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step {
  background: white;
  border: 1px solid rgba(198,154,45,.22);
  border-radius: 22px;
  padding: 1.5rem;
}
.step-number {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-weight: 900;
  margin-bottom: 1rem;
}

.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.price-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(198,154,45,.28);
  box-shadow: 0 12px 30px rgba(11,42,74,.08);
}
.price { font-size: 2.65rem; font-family: Georgia, serif; color: var(--navy); font-weight: 700; }

.callout {
  background:
    radial-gradient(circle at 88% 20%, rgba(198,154,45,.28), transparent 28%),
    linear-gradient(135deg, var(--navy), #123c66 58%, var(--teal));
  color: white;
  border-radius: 30px;
  padding: clamp(1.8rem, 5vw, 3.5rem);
  box-shadow: var(--shadow);
}
.callout h2, .callout h3 { color: white; }
.callout .button-primary { background: var(--gold); color: var(--navy); }
.callout .button-primary:hover { background: #e0b454; }

.check-list { padding-left: 1.2rem; }
.check-list li { margin-bottom: .7rem; }
.info-table { width: 100%; border-collapse: collapse; background: white; border-radius: 18px; overflow: hidden; box-shadow: 0 8px 24px rgba(11,42,74,.06); }
.info-table th, .info-table td { padding: .9rem 1rem; border-bottom: 1px solid #e9ece8; text-align: left; vertical-align: top; }
.info-table th { width: 28%; color: var(--navy); background: rgba(221,232,225,.45); }

.site-footer {
  background: #071f37;
  color: rgba(255,255,255,.9);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 2rem;
  align-items: start;
}
.footer-brand { font-family: Georgia, serif; font-size: 1.5rem; color: white; }
.footer-slogan { color: #e4c77f; font-style: italic; }
.footer-links { display: flex; flex-wrap: wrap; gap: .85rem 1.25rem; justify-content: flex-end; }
.footer-links a { color: white; text-decoration: none; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: .83rem;
  color: rgba(255,255,255,.66);
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 76px;
    padding: 1rem;
    background: #fffdf8;
    border: 1px solid rgba(198,154,45,.28);
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .55rem .4rem; }
  .nav-book { text-align: center; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-logo-card { max-width: 560px; margin: auto; }
  .card-grid.three, .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .brand-subtitle { display: none; }
  .brand-title { font-size: 1.12rem; letter-spacing: .04em; }
  .brand img { width: 48px; height: 48px; }
  .nav-wrap { min-height: 70px; }
  .main-nav { top: 66px; }
  .hero { padding: 4.25rem 0 3.5rem; }
  .hero-grid { gap: 2.25rem; }
  .trust-items { grid-template-columns: 1fr; gap: .65rem; }
  .trust-items span + span { border-left: 0; }
  .section { padding: 3.8rem 0; }
  .card-grid, .card-grid.three, .steps, .pricing, .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { border-bottom: 0; padding-bottom: .35rem; }
  .info-table td { padding-top: .35rem; }
}


/* Lean resources and privacy pages */
.text-link { color: var(--teal); font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: .2em; }
.text-link:hover { color: var(--navy); }
.safety-note { background: #fff; border: 1px solid rgba(198,154,45,.3); border-left: 5px solid var(--gold); border-radius: 18px; padding: 1.2rem 1.35rem; }
.legal-content { max-width: 900px; }
.legal-content h2 { margin-top: 2.4rem; font-size: clamp(1.55rem, 3vw, 2.2rem); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 1rem; }
.legal-summary { background: rgba(221,232,225,.55); border: 1px solid rgba(198,154,45,.25); border-radius: 24px; padding: 1.7rem; margin-bottom: 2.2rem; }
.legal-summary h2 { margin-top: 0; }


/* More colourful Sparkwell resource presentation */
.resource-evidence { margin-top: 2rem; padding: 1.4rem 1.5rem; border-radius: 22px; background: linear-gradient(135deg, rgba(219,236,235,.82), rgba(241,227,189,.58)); border: 1px solid rgba(36,93,92,.18); box-shadow: 0 10px 26px rgba(11,42,74,.07); }
.resource-evidence h3 { margin-bottom: .45rem; }
.resource-evidence a { color: var(--navy); font-weight: 750; text-underline-offset: .18em; }
.resource-evidence-links { display: flex; flex-wrap: wrap; gap: .55rem .8rem; margin-top: .85rem; }
.resource-evidence-links a { display: inline-flex; padding: .45rem .72rem; border-radius: 999px; background: rgba(255,255,255,.82); border: 1px solid rgba(198,154,45,.35); text-decoration: none; }
.resource-evidence-links a:hover { background: var(--navy); color: white; }


/* 2026 consultation-flow and visual refresh */
.hero-home {
  background:
    radial-gradient(circle at 12% 15%, rgba(198,154,45,.20), transparent 28%),
    radial-gradient(circle at 87% 18%, rgba(36,93,92,.22), transparent 30%),
    linear-gradient(145deg, #fffdf8 0%, rgba(241,227,189,.34) 48%, rgba(219,236,235,.65) 100%);
  border-bottom: 1px solid rgba(198,154,45,.24);
}
.hero-centered { grid-template-columns: 1fr; text-align: center; max-width: 980px; }
.hero-copy { width: 100%; }
.hero-copy h1 { max-width: 940px; margin-left: auto; margin-right: auto; }
.hero-logo-inline {
  max-width: 570px;
  margin: .6rem auto 0;
  padding: 1.2rem 2rem;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,253,248,.78));
  border: 1px solid rgba(198,154,45,.38);
  box-shadow: 0 22px 55px rgba(11,42,74,.13);
}
.hero-logo-inline img { max-height: 330px; }
.hero-actions { justify-content: center; margin-top: 1.25rem; }
.hero-home .micro-note { margin-left: auto; margin-right: auto; }

.card, .price-card, .choice-card, .consultation-form-card {
  box-shadow: 0 14px 38px rgba(11,42,74,.085);
}
.button-primary {
  background: linear-gradient(110deg, var(--navy), #164e72 55%, var(--teal));
  box-shadow: 0 10px 24px rgba(11,42,74,.16);
}
.button-primary:hover { background: linear-gradient(110deg, #123c66, var(--teal)); }
.button-secondary { border-color: var(--teal); color: var(--navy); }

.booking-hero {
  background:
    radial-gradient(circle at 84% 22%, rgba(198,154,45,.18), transparent 28%),
    radial-gradient(circle at 10% 72%, rgba(36,93,92,.18), transparent 30%),
    linear-gradient(135deg, #fffdf8, rgba(219,236,235,.64));
}
.booking-choice-section { padding-top: 3.6rem; padding-bottom: 2.4rem; }
.booking-choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.35rem; }
.choice-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 2.1rem;
  border: 1px solid rgba(198,154,45,.28);
}
.choice-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  right: -70px;
  bottom: -90px;
  background: rgba(198,154,45,.12);
}
.choice-new { background: linear-gradient(145deg, rgba(241,227,189,.44), #fff 46%); }
.choice-existing { background: linear-gradient(145deg, rgba(219,236,235,.78), #fff 46%); }
.choice-badge {
  display: inline-flex;
  padding: .4rem .72rem;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.consultation-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2.4rem; align-items: start; }
.consultation-intro { position: sticky; top: 115px; }
.privacy-callout {
  background: linear-gradient(135deg, rgba(241,227,189,.72), rgba(255,255,255,.92));
  border: 1px solid rgba(198,154,45,.42);
  border-left: 5px solid var(--gold);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  margin: 1.35rem 0;
}
.consultation-form-card {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(36,93,92,.20);
  border-radius: 30px;
  padding: clamp(1.35rem, 4vw, 2.35rem);
}
.form-grid { display: grid; gap: 1rem; }
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-field { display: grid; gap: .42rem; margin-bottom: 1rem; }
.form-field label, .form-fieldset legend { color: var(--navy); font-weight: 800; }
.form-field input, .form-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #b8c7c3;
  border-radius: 13px;
  padding: .72rem .82rem;
  font: inherit;
  color: var(--charcoal);
  background: white;
}
.form-field input:focus, .form-field select:focus {
  outline: 3px solid rgba(36,93,92,.18);
  border-color: var(--teal);
}
.field-note, .legend-note { font-size: .84rem; color: #657171; font-weight: 500; }
.form-fieldset {
  margin: 1.25rem 0;
  padding: 1.15rem;
  border: 1px solid rgba(36,93,92,.18);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(219,236,235,.27), rgba(255,255,255,.96));
}
.form-fieldset legend { padding: 0 .35rem; font-size: 1.05rem; }
.option-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; margin-top: .8rem; }
.check-option, .consent-option {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  border: 1px solid rgba(11,42,74,.13);
  border-radius: 14px;
  padding: .72rem .8rem;
  background: white;
  cursor: pointer;
}
.check-option:hover, .consent-option:hover { border-color: rgba(36,93,92,.42); background: rgba(219,236,235,.22); }
.check-option input, .consent-option input { width: 18px; height: 18px; margin-top: .16rem; accent-color: var(--teal); flex: 0 0 auto; }
.availability-days { display: grid; gap: 1rem; }
.day-group { border-top: 1px solid rgba(11,42,74,.10); padding-top: .8rem; }
.day-group:first-child { border-top: 0; padding-top: 0; }
.day-group h3 { font-size: 1.02rem; margin-bottom: .55rem; }
.slot-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .55rem; }
.slot-grid.saturday { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.consent-option { margin-top: .85rem; background: rgba(241,227,189,.24); }
.form-submit-row { margin-top: 1.35rem; }
.form-submit-row .button { border: 0; cursor: pointer; font: inherit; }
.form-submit-row .button:disabled { opacity: .62; cursor: wait; }
.form-error, .form-status.error { color: #842029; background: #f8d7da; border: 1px solid #f1aeb5; border-radius: 12px; padding: .75rem .85rem; margin-top: .75rem; }
.form-status.success { color: #0f5132; background: #d1e7dd; border: 1px solid #a3cfbb; border-radius: 12px; padding: .9rem 1rem; margin-top: 1rem; }
.bot-field { position: absolute; overflow: hidden; clip: rect(0 0 0 0); height: 1px; width: 1px; margin: -1px; padding: 0; border: 0; }

.consultation-card { background: linear-gradient(145deg, rgba(241,227,189,.38), white 46%); }

@media (max-width: 980px) {
  .booking-choice-grid, .consultation-layout { grid-template-columns: 1fr; }
  .consultation-intro { position: static; }
  .slot-grid.saturday { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .hero-logo-inline { padding: .8rem; border-radius: 26px; }
  .hero-logo-inline img { max-height: 240px; }
  .form-grid.two, .option-grid, .slot-grid, .slot-grid.saturday { grid-template-columns: 1fr; }
  .choice-card { padding: 1.45rem; }
}


/* 2026 vivid but professional visual refinement */
body {
  background:
    radial-gradient(circle at 7% 6%, rgba(198,154,45,.12), transparent 23%),
    radial-gradient(circle at 93% 11%, rgba(36,93,92,.14), transparent 27%),
    radial-gradient(circle at 90% 85%, rgba(215,229,220,.45), transparent 25%),
    linear-gradient(180deg, #fffef9 0%, #f8f3ea 54%, #ffffff 100%);
}
.site-header { box-shadow: 0 10px 24px rgba(11,42,74,.06); }
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(198,154,45,.92), rgba(36,93,92,.72), rgba(198,154,45,.92));
}
.main-nav { gap: 1.2rem; }
.main-nav a {
  position: relative;
  padding-bottom: .18rem;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .82rem;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(198,154,45,.24);
  box-shadow: 0 8px 18px rgba(11,42,74,.04);
}
.hero-home {
  background:
    radial-gradient(circle at 12% 15%, rgba(198,154,45,.24), transparent 28%),
    radial-gradient(circle at 87% 18%, rgba(36,93,92,.26), transparent 30%),
    radial-gradient(circle at 84% 74%, rgba(215,229,220,.62), transparent 26%),
    linear-gradient(150deg, #fffdf8 0%, rgba(241,227,189,.40) 45%, rgba(219,236,235,.74) 100%);
}
.hero-home .hero-copy { position: relative; }
.hero-home .hero-copy::before {
  content: "";
  position: absolute;
  inset: -2.1rem auto auto 50%;
  width: min(100%, 760px);
  height: calc(100% + 4rem);
  transform: translateX(-50%);
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.08));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
  z-index: -1;
}
.hero-logo-inline {
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(255,253,248,.82));
  box-shadow: 0 28px 65px rgba(11,42,74,.14);
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin: 1.15rem auto 0;
  max-width: 860px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .72rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.80);
  color: var(--navy);
  font-weight: 700;
  font-size: .95rem;
  border: 1px solid rgba(36,93,92,.16);
  box-shadow: 0 12px 24px rgba(11,42,74,.06);
}

.trust-strip {
  background: linear-gradient(100deg, rgba(11,42,74,1) 0%, #113b61 42%, var(--teal) 100%);
  padding: 1.2rem 0 1.35rem;
}
.trust-items { gap: 1rem; }
.trust-items span {
  display: block;
  border-radius: 18px;
  padding: .95rem 1.1rem;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.trust-items span + span { border-left: 0; }

.section-heading { position: relative; padding-bottom: .4rem; }
.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.25rem;
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}
.section-heading p { margin-bottom: 0; }
.card-grid.three { align-items: stretch; }
.card-grid.three .card, .card-grid.three .card-link { min-height: 100%; }
.card {
  border-radius: 26px;
  box-shadow: 0 16px 34px rgba(11,42,74,.075);
}
.card-link .spark, .price-card .spark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(198,154,45,.15);
  margin-bottom: .65rem;
}
.card-link:hover { box-shadow: 0 24px 50px rgba(11,42,74,.12); }
.callout {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
}
.callout::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -100px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.callout p { max-width: 760px; }

.page-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(36,93,92,.24), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(198,154,45,.18), transparent 24%),
    linear-gradient(135deg, #fffef9, rgba(241,227,189,.55), rgba(219,236,235,.58));
}
.profile-card, .service-item, .step, .price-card, .consultation-form-card, .choice-card {
  box-shadow: 0 18px 42px rgba(11,42,74,.08);
}
.service-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
.service-item {
  border-radius: 22px;
  border-left: 0;
  border: 1px solid rgba(198,154,45,.20);
  background: linear-gradient(160deg, rgba(255,255,255,.96), rgba(241,227,189,.18));
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold), var(--teal));
}
.step {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(219,236,235,.30));
}
.price-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}
.price-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -68px;
  top: -90px;
  border-radius: 50%;
  background: rgba(198,154,45,.10);
}
.consultation-card {
  background: linear-gradient(145deg, rgba(241,227,189,.52), rgba(255,255,255,.98) 46%);
}
.price { letter-spacing: -.03em; }
.choice-card h2, .price-card h3, .service-item h3 { position: relative; z-index: 1; }
.choice-card p, .price-card p, .service-item p { position: relative; z-index: 1; }

.site-footer {
  background: linear-gradient(145deg, #071f37, #0c3154 48%, #103f5f 100%);
}
.footer-links a:hover { color: #f1e3bd; }

@media (max-width: 980px) {
  .service-list { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .hero-pills { flex-direction: column; }
  .hero-pill { width: 100%; }
  .trust-items { grid-template-columns: 1fr; }
  .section-heading::after { width: 72px; }
  .hero-home .hero-copy::before { inset: -1rem .2rem auto .2rem; transform: none; width: auto; }
}


/* Homepage wording and hero polish update */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -.02em;
}
.hero-title-line {
  display: block;
  position: relative;
  text-wrap: balance;
}
.hero-title-accent {
  color: var(--teal);
}
.hero-title-accent::after {
  content: "";
  display: block;
  width: 140px;
  max-width: 28%;
  height: 5px;
  margin: .6rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  box-shadow: 0 8px 20px rgba(11,42,74,.10);
}
.hero-intro {
  max-width: 760px;
  margin: 1.1rem auto 0;
  font-size: 1.16rem;
  color: #405050;
}
.hero-actions .button-primary { min-width: 260px; }
.hero-actions .button-secondary { min-width: 250px; }
.hero-home .micro-note {
  max-width: 700px;
  margin-top: 1.15rem;
  color: #556464;
}
@media (max-width: 680px) {
  .hero-title-accent::after { width: 96px; max-width: 40%; }
  .hero-intro { font-size: 1.04rem; }
  .hero-actions .button-primary, .hero-actions .button-secondary { min-width: 0; }
}


/* Homepage consistency and callout contrast refinement */
.hero-title-line,
.hero-title-accent {
  color: var(--navy);
}
.hero-title-accent::after {
  background: linear-gradient(90deg, var(--gold), var(--teal));
}
.callout .callout-eyebrow {
  color: var(--navy) !important;
  background: linear-gradient(135deg, #f5e6b8, #e5c66d);
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: 0 8px 22px rgba(0,0,0,.14);
  font-weight: 900;
  letter-spacing: .14em;
}
.callout .callout-eyebrow::before {
  content: "✦";
  color: var(--navy);
  font-size: .92rem;
}
.callout h2 {
  text-shadow: 0 1px 0 rgba(0,0,0,.10);
}


/* Homepage slogan sizing and descriptor correction */
.hero-title {
  font-size: clamp(2.45rem, 4.65vw, 4.35rem);
  line-height: 1.08;
  max-width: 1080px;
}
.hero-title-line {
  white-space: nowrap;
}
@media (max-width: 760px) {
  .hero-title {
    font-size: clamp(2.05rem, 9.5vw, 3.15rem);
    line-height: 1.1;
  }
  .hero-title-line {
    white-space: normal;
  }
}
