:root {
  --ink: #0d1b2a;
  --ink-2: #142b42;
  --gold: #c2a661;
  --gold-dark: #9f8231;
  --sky: #a3bfd9;
  --paper: #f4f4f4;
  --soft: #eef3f7;
  --sage: #627566;
  --text: #20242a;
  --muted: #626a73;
  --line: #dedbd1;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(13, 27, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
}

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

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

p {
  margin: 0 0 18px;
}

.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 10px 20px;
}

.topbar a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(222, 219, 209, 0.8);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  width: min(1280px, calc(100% - 48px));
  min-height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 200px;
}

.brand img {
  width: 250px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.main-nav a {
  position: relative;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.section {
  padding: 92px 0;
}

.section.compact {
  padding: 64px 0;
}

.band {
  background: var(--paper);
}

.band-soft {
  background: var(--soft);
}

.band-ink {
  color: var(--white);
  background: var(--ink);
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  font-size: 54px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 23px;
}

.band-ink h1,
.band-ink h2,
.band-ink h3 {
  color: var(--white);
}

.lead {
  margin-top: 22px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.band-ink .lead {
  color: rgba(255, 255, 255, 0.82);
}

main p {
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

main .section-head p,
main .home-hero-content p,
main .transition-hero p,
main .transition-centered-note,
main .transition-benefit-close > p,
main .transition-final-cta p,
main .stacked-action p,
main .home-reserve p,
main .home-conclusion,
main .appointment-meta,
main .intro-pill,
main .form-response-note {
  text-align: center;
  text-align-last: auto;
}

main .section-head.left p,
main .hero-content p,
main .page-hero p,
main .cta-inner p {
  text-align: left;
  text-align-last: auto;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(13, 27, 42, 0.9) 0%, rgba(13, 27, 42, 0.72) 42%, rgba(13, 27, 42, 0.1) 76%);
  content: "";
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 48px));
  margin-left: max(24px, calc((100% - 1120px) / 2));
  padding: 70px 0;
}

.hero h1 {
  color: var(--white);
  font-size: 58px;
}

.hero .lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  background: transparent;
}

.button.light {
  color: var(--ink);
  background: var(--white);
}

.button.ink {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.intro-pill {
  width: min(560px, 100%);
  margin: 0 auto 42px;
  padding: 15px 24px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--gold-dark);
  background: var(--white);
  text-align: center;
  font-weight: 800;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.grid {
  display: grid;
  gap: 28px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.path-card {
  min-height: 310px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.path-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  color: var(--gold);
}

.path-card p,
.offer-card p,
.step-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.media-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portrait-panel img {
  aspect-ratio: 4 / 5;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
  content: "✓";
}

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.process-item {
  padding: 28px;
  border-left: 4px solid var(--gold);
  background: var(--white);
}

.process-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.offer-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.offer-card.featured {
  border-color: var(--gold);
}

.offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.price {
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
}

.quote {
  padding: 34px;
}

.quote-stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 0;
}

.quote cite {
  display: block;
  margin-top: 20px;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.faq {
  display: grid;
  gap: 18px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-button {
  width: 100%;
  min-height: 66px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-button span:last-child {
  font-size: 26px;
  line-height: 1;
}

.faq-content {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.open .faq-content {
  display: block;
}

.cta-band {
  padding: 70px 0;
  color: var(--white);
  background: var(--ink);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-inner h2 {
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  color: var(--white);
  background: #081522;
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 0.8fr);
  gap: 46px;
  align-items: start;
}

.footer-logo {
  width: 210px;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-title {
  margin: 0 0 14px;
  color: var(--white);
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.72);
}

.legal-links a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.social-links a:hover {
  background: var(--gold);
}

.social-links img {
  display: block;
  width: 17px;
  height: 17px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.section-actions.center {
  justify-content: center;
}

.stacked-action {
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.stacked-action p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.home-hero {
  min-height: 690px;
}

.home-hero::before {
  background-image: linear-gradient(90deg, rgba(13, 27, 42, 0.78) 0%, rgba(13, 27, 42, 0.56) 42%, rgba(13, 27, 42, 0.08) 72%);
}

.home-hero-content {
  width: min(760px, calc(100% - 48px));
  padding-top: 110px;
  text-align: center;
}

.home-hero-content h1 {
  font-size: 56px;
}

.home-hero-content .lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
}

.home-hero-content .hero-actions {
  justify-content: center;
  margin-top: 150px;
}

.home-situations {
  padding-top: 48px;
}

.home-situations .section-head {
  max-width: 760px;
  margin-bottom: 58px;
}

.home-situations .section-head .lead {
  color: #5c626b;
  font-size: 16px;
  font-weight: 700;
}

.home-card {
  min-height: 360px;
  align-items: center;
  justify-content: flex-start;
  padding: 42px 36px;
  border: 2px solid var(--gold);
  text-align: center;
}

.home-card h3 {
  max-width: 260px;
  margin: 0 auto 24px;
  font-size: 18px;
}

.home-card p {
  margin-top: auto;
  text-align: left;
}

.home-card .path-icon {
  margin: 0 auto 26px;
}

.home-conclusion {
  max-width: 800px;
  margin: 72px auto 0;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.home-approach {
  padding-top: 82px;
}

.home-approach .section-head {
  margin-bottom: 58px;
}

.approach-intro {
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.approach-intro .media-panel {
  box-shadow: none;
}

.approach-intro .media-panel img {
  aspect-ratio: 16 / 10;
}

.approach-intro p {
  font-size: 15px;
}

.process-title {
  max-width: 920px;
  margin: 64px auto 36px;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
  text-align-last: auto;
}

.home-process {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr) 70px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}

.home-process article {
  min-height: 160px;
}

.home-process h3 {
  margin-bottom: 18px;
  font-size: 18px;
}

.home-process p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.process-arrow {
  position: relative;
  display: block;
  width: 70px;
  height: 26px;
  margin-top: 17px;
  background: var(--ink-2);
  clip-path: polygon(0 25%, 70% 25%, 70% 0, 100% 50%, 70% 100%, 70% 75%, 0 75%);
}

.home-pathways {
  background: #f4f6f8;
}

.home-pathways .section-head {
  max-width: 880px;
}

.pathway-grid {
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}

.pathway-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  border: 1px solid #c8a96a;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 52px rgba(13, 27, 42, 0.08);
}

.pathway-card h3 {
  font-size: 26px;
}

.pathway-card p {
  max-width: 420px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.home-why {
  color: var(--white);
  background: var(--ink);
}

.home-why h2 {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.why-grid div {
  display: grid;
  gap: 16px;
  align-content: start;
  justify-items: center;
  min-height: 150px;
  padding: 28px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
}

.why-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  text-align: center;
  text-align-last: auto;
}

.legal-page {
  min-height: 56vh;
  background: var(--soft);
}

.legal-page h1 {
  margin-bottom: 28px;
  color: var(--ink);
}

.legal-page p {
  color: var(--text);
  font-size: 17px;
}

.home-about .split {
  align-items: start;
}

.home-about h2 {
  max-width: 600px;
  margin-bottom: 38px;
}

.organic-photo {
  width: min(430px, 100%);
  justify-self: center;
  border-radius: 0 84px 0 84px;
}

.organic-photo img {
  aspect-ratio: 4 / 5;
}

.value-grid {
  margin-top: 76px;
}

.value-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.value-check {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  font-weight: 900;
  box-shadow: inset -5px 0 0 rgba(13, 27, 42, 0.12);
}

.value-item h3 {
  margin-bottom: 22px;
  font-size: 18px;
}

.value-item p {
  grid-column: 2;
  color: var(--muted);
  font-size: 14px;
}

.home-testimonials .section-head {
  max-width: 780px;
}

.home-testimonials .section-head p:not(.lead) {
  color: var(--text);
  font-weight: 500;
}

.testimonial-grid {
  max-width: 940px;
  margin: 0 auto;
}

.testimonial-card {
  overflow: hidden;
  border-radius: 0;
  background: #e8edf3;
  box-shadow: 0 18px 45px rgba(13, 27, 42, 0.08);
}

.video-placeholder {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  background:
    linear-gradient(rgba(13, 27, 42, 0.36), rgba(13, 27, 42, 0.36)),
    url("assets/images/home-hero.webp") center / cover;
  font-weight: 900;
}

.play-dot {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: #df1f1f;
  font-size: 22px;
  line-height: 1;
}

.testimonial-body {
  padding: 28px 34px 34px;
}

.testimonial-body p {
  color: var(--text);
  font-size: 15px;
}

.testimonial-body cite {
  display: block;
  margin-top: 20px;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.home-reserve {
  scroll-margin-top: 126px;
  color: var(--white);
  background: linear-gradient(135deg, #07192b 0%, #0a2b5f 64%, #08234a 100%);
}

.reserve-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 70px;
  align-items: center;
}

.reserve-copy {
  max-width: 690px;
}

.home-reserve h2 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: 44px;
}

.home-reserve p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
  hyphens: none;
}

main .home-reserve .reserve-copy p,
main .home-reserve .reserve-action p {
  text-align: left;
  text-align-last: auto;
}

.reserve-action {
  padding: 36px;
  border: 1px solid rgba(194, 166, 97, 0.44);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.simple-checks {
  display: inline-grid;
  gap: 6px;
  margin: 24px auto 26px;
  padding: 0;
  color: var(--ink);
  text-align: left;
  list-style: none;
}

.simple-checks li {
  display: block;
}

.simple-checks li::before {
  content: "✓ ";
  font-weight: 900;
}

.home-reserve .simple-checks {
  display: grid;
  gap: 16px;
  margin: 0 0 30px;
  color: var(--white);
}

.home-reserve .simple-checks li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.home-reserve .simple-checks li::before {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  content: "✓";
}

.home-reserve .section-actions {
  align-items: flex-start;
  margin-top: 0;
}

.home-reserve .section-actions.center {
  justify-content: flex-start;
}

.home-reserve .stacked-action p {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.appointment-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  color: var(--text);
  font-size: 14px;
}

.appointment-meta span::before {
  color: var(--gold-dark);
  content: "• ";
}

.home-reserve .appointment-meta {
  justify-content: flex-start;
  gap: 10px 18px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.86);
}

.home-reserve .appointment-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-reserve .appointment-meta span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px 84px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-columns h3 {
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 17px;
}

.faq-columns p {
  color: var(--text);
  font-size: 15px;
}

.home-contact {
  padding-bottom: 92px;
}

.home-contact .section-head {
  margin-bottom: 44px;
}

.contact-compose {
  display: grid;
  grid-template-columns: minmax(310px, 470px) minmax(0, 1fr);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.home-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 42px 46px;
  border-radius: 8px;
  background: #06255b;
  box-shadow: var(--shadow);
}

.home-form label {
  color: var(--white);
}

.home-form input,
.home-form textarea {
  border-radius: 0;
  border-color: transparent;
  background: #eef2f7;
}

.home-form textarea {
  min-height: 88px;
}

.home-form .button {
  width: fit-content;
  justify-self: center;
  margin-top: 10px;
  border-color: var(--gold);
  background: var(--gold);
}

.contact-image {
  overflow: hidden;
  border-radius: 0 8px 8px 0;
  transform: translateX(-12px);
}

.contact-image img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.footer-cta {
  margin-top: 8px;
}

.creation-hero {
  padding: 86px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(194, 166, 97, 0.16), transparent 32%),
    linear-gradient(135deg, #08234a 0%, #0b2f66 62%, #07192b 100%);
}

.creation-hero-layout {
  display: grid;
  gap: 48px;
}

.creation-hero-heading {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.creation-hero-heading .eyebrow {
  width: 100%;
  max-width: none;
  color: var(--gold);
  text-align: center;
  text-align-last: auto;
}

.creation-hero-body {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 62px;
  align-items: center;
}

.creation-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  color: var(--white);
  font-size: 50px;
  line-height: 1.08;
}

.creation-hero h1 span {
  display: block;
}

.creation-hero h1 span + span {
  margin-top: 8px;
  font-size: 0.82em;
}

.creation-hero-subtitle {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--white) !important;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.45;
}

.creation-hero-panel {
  max-width: 620px;
  padding-left: 4px;
}

.creation-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.75;
}

main .creation-hero p,
main .creation-hero-action p {
  text-align: left;
  text-align-last: auto;
}

.creation-hero-action {
  align-items: flex-start;
  margin-top: 34px;
  text-align: left;
}

.creation-hero-image {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.creation-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.transition-hero {
  padding: 74px 0 86px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(194, 166, 97, 0.16), transparent 34%),
    linear-gradient(135deg, #08234a 0%, #0b2f66 58%, #0a2e5c 100%);
}

.transition-hero-layout {
  display: grid;
  gap: 44px;
}

.transition-hero-copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.transition-hero-body {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}

.transition-hero-panel {
  max-width: 560px;
  padding: 34px 0 34px 6px;
}

.transition-hero h1,
.transition-hero h2,
.transition-hero h3 {
  color: var(--white);
}

.transition-hero h1 {
  max-width: 900px;
  margin: 18px auto 0;
  font-size: 52px;
  line-height: 1.08;
}

.transition-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
}

.transition-hero .eyebrow {
  width: 100%;
  max-width: none;
  margin: 0 auto 14px;
  color: var(--gold);
  text-align: center;
  text-align-last: auto;
}

.transition-hero-subtitle {
  max-width: 700px !important;
  margin: 24px auto 0;
  color: var(--white) !important;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}

.transition-hero-panel p {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.8;
}

main .transition-hero-panel p,
main .transition-hero-action p {
  text-align: left;
  text-align-last: auto;
}

.transition-hero-action {
  align-items: flex-start;
  margin-top: 34px;
  text-align: left;
}

.transition-hero-action .button.primary,
.transition-benefits .button.primary,
.transition-process-section .button.primary,
.transition-final-cta .button.primary,
.transition-faq .button.primary {
  color: var(--white);
}

.transition-hero-action p,
.transition-benefits .stacked-action p,
.transition-process-section .stacked-action p,
.transition-final-cta .stacked-action p,
.transition-faq .stacked-action p {
  color: rgba(255, 255, 255, 0.78);
}

.transition-process-section .stacked-action p,
.transition-final-cta .stacked-action p,
.transition-faq .stacked-action p {
  color: var(--muted);
}

.transition-hero-image {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.transition-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.transition-identification {
  background: #f4f6f8;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  max-width: 980px;
  margin: 0 auto;
}

.recognition-item {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px 22px 18px 58px;
  border: 1px solid rgba(194, 166, 97, 0.38);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(13, 27, 42, 0.06);
}

.recognition-item::before {
  position: absolute;
  left: 22px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  line-height: 24px;
  text-align: center;
  content: "✓";
}

.transition-statement {
  max-width: 760px;
  margin: 52px auto 0;
  text-align: center;
}

.transition-statement p {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  text-align-last: auto;
}

.transition-statement strong {
  color: var(--gold-dark);
  font-size: 19px;
  display: block;
  text-align: center;
}

.transition-benefits,
.transition-offers {
  color: var(--white);
  background: #0b2f66;
}

.transition-benefits h2,
.transition-offers h2 {
  color: var(--white);
}

.benefit-grid {
  max-width: 980px;
  margin: 0 auto;
}

.benefit-card {
  min-height: 245px;
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.benefit-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.benefit-card h3 {
  margin-bottom: 16px;
}

.benefit-card p {
  color: var(--muted);
}

.transition-benefit-close {
  max-width: 820px;
  margin: 54px auto 0;
  text-align: center;
}

.transition-benefit-close > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  font-weight: 800;
}

.transition-support {
  background: #f4f6f8;
}

.support-grid {
  max-width: 980px;
  margin: 0 auto;
}

.support-card {
  min-height: 250px;
  padding: 34px;
  border: 1px solid rgba(194, 166, 97, 0.3);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(13, 27, 42, 0.08);
}

.support-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(194, 166, 97, 0.12);
}

.support-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.support-card h3 {
  margin-bottom: 14px;
  color: var(--ink);
}

.support-card p {
  color: var(--muted);
}

.transition-process-section {
  background: #f4f6f8;
}

.transition-steps {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}

.transition-step-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(13, 27, 42, 0.08);
}

.transition-step-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.transition-step-card h3 {
  margin-bottom: 16px;
}

.transition-step-card p {
  color: var(--muted);
}

.down-arrow {
  width: 28px;
  height: 36px;
  margin: 0 auto;
  background: var(--gold);
  clip-path: polygon(35% 0, 65% 0, 65% 58%, 100% 58%, 50% 100%, 0 58%, 35% 58%);
}

.transition-centered-note {
  max-width: 760px;
  margin: 46px auto 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.transition-centered-note.light {
  color: rgba(255, 255, 255, 0.9);
}

.transition-proof {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.transition-proof .section-head {
  max-width: 860px;
}

.transition-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.transition-proof-grid div {
  display: grid;
  gap: 14px;
  align-content: start;
  justify-items: center;
  min-height: 180px;
  padding: 34px 22px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(13, 27, 42, 0.06);
  text-align: center;
}

.proof-check {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  font-weight: 900;
  box-shadow: inset -5px 0 0 rgba(13, 27, 42, 0.12);
}

.transition-proof-grid p {
  max-width: 180px;
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
  text-align-last: auto;
}

.transition-offers .section-head p {
  color: rgba(255, 255, 255, 0.84);
}

.transition-offer-grid {
  align-items: stretch;
}

.transition-offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px;
  border: 2px solid rgba(194, 166, 97, 0.42);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
}

.transition-offer-card.premium {
  z-index: 2;
  border: 4px solid var(--gold);
  box-shadow: 0 36px 86px rgba(0, 0, 0, 0.36);
  transform: scale(1.03);
}

.transition-offer-card h3 {
  font-size: 24px;
}

.transition-offer-card .check-list {
  gap: 10px;
  margin-top: 10px;
}

.transition-offer-card .check-list li {
  color: var(--text);
  font-size: 15px;
}

.offer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  flex: 1;
}

.offer-list-title {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.payment-note {
  margin-top: -18px;
  color: var(--muted);
  font-weight: 800;
}

.premium-badge {
  align-self: flex-end;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.transition-offer-card .price {
  margin-top: auto;
}

.value-note {
  margin-top: -18px;
  color: var(--gold-dark);
  font-size: 17px;
  font-style: italic;
  font-weight: 800;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.reassurance-grid article {
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.reassurance-grid h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 17px;
}

.reassurance-grid p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.transition-final-cta {
  text-align: center;
}

.transition-final-cta h2 {
  margin-bottom: 34px;
}

.transition-final-cta p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.creation-final-cta {
  color: var(--white);
  background: linear-gradient(135deg, #07192b 0%, #0b2f66 62%, #08234a 100%);
}

.creation-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.76fr);
  gap: 62px;
  align-items: center;
  padding: 54px;
  border: 1px solid rgba(194, 166, 97, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.creation-final-cta .eyebrow {
  color: var(--gold);
}

.creation-final-cta h2 {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 42px;
}

.creation-final-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

main .creation-final-cta p,
main .creation-final-cta .stacked-action p {
  text-align: left;
  text-align-last: auto;
}

.creation-cta-action {
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.creation-final-cta .simple-checks {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
  color: var(--ink);
}

.creation-final-cta .simple-checks li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-weight: 900;
}

.creation-final-cta .simple-checks li::before {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  content: "✓";
}

.creation-final-cta .section-actions {
  align-items: flex-start;
  margin-top: 0;
}

.creation-final-cta .stacked-action p {
  color: var(--muted);
}

.creation-final-cta .appointment-meta {
  justify-content: flex-start;
  gap: 10px 18px;
  margin-top: 24px;
  color: var(--text);
}

.form-response-note {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 13px;
}

.page-hero {
  padding: 96px 0;
  color: var(--white);
  background: var(--ink);
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 64px;
  align-items: center;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline-kicker {
  color: var(--gold-dark);
  font-weight: 900;
}

.legal-note {
  padding: 18px;
  border-left: 4px solid var(--sage);
  color: var(--muted);
  background: var(--soft);
}

@media (max-width: 1100px) {
  .nav-wrap {
    min-height: 80px;
  }

  .brand img {
    width: 220px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
  }

  h1,
  .hero h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .grid-3,
  .process,
  .why-grid,
  .transition-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .split.reverse,
  .page-hero .container {
    grid-template-columns: 1fr;
  }

  .creation-hero-body {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .creation-hero h1 {
    font-size: 44px;
  }

  .home-hero-content .hero-actions {
    margin-top: 92px;
  }

  .approach-intro,
  .reserve-layout,
  .contact-compose {
    grid-template-columns: 1fr;
  }

  .home-process {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .reserve-layout {
    gap: 36px;
  }

  .reserve-copy {
    max-width: 760px;
  }

  .process-arrow {
    width: 28px;
    height: 44px;
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .contact-image {
    border-radius: 0 0 8px 8px;
    transform: none;
  }

  .transition-hero-body {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .transition-hero h1 {
    font-size: 44px;
  }

  .transition-hero-panel {
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
  }

  .transition-hero-image {
    max-width: 620px;
    margin: 0 auto;
  }

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

  .page-hero img {
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .topbar {
    font-size: 13px;
  }

  .nav-wrap,
  .container,
  .narrow {
    width: min(100% - 32px, 1120px);
  }

  .brand img {
    width: 190px;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: 680px;
  }

  .hero::before {
    background-image: linear-gradient(180deg, rgba(13, 27, 42, 0.92) 0%, rgba(13, 27, 42, 0.76) 58%, rgba(13, 27, 42, 0.35) 100%);
  }

  .hero img {
    content: url("assets/images/home-hero.webp");
  }

  .hero-content {
    width: min(100% - 32px, 780px);
    margin: 0 auto;
    padding: 56px 0;
  }

  h1,
  .hero h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 21px;
  }

  .lead {
    font-size: 17px;
  }

  .grid-2,
  .grid-3,
  .process,
  .footer-grid,
  .form-grid,
  .faq-columns,
  .recognition-grid,
  .support-grid,
  .offer-columns,
  .reassurance-grid,
  .pathway-grid,
  .why-grid,
  .transition-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 620px;
  }

  .home-hero::before {
    background-image: linear-gradient(180deg, rgba(13, 27, 42, 0.88) 0%, rgba(13, 27, 42, 0.72) 54%, rgba(13, 27, 42, 0.38) 100%);
  }

  .home-hero-content {
    padding-top: 34px;
  }

  .home-hero-content h1 {
    font-size: 32px;
  }

  .home-hero-content .hero-actions {
    margin-top: 42px;
  }

  .home-card {
    min-height: 0;
    padding: 34px 26px;
  }

  .home-reserve h2 {
    font-size: 31px;
  }

  .home-reserve {
    padding-top: 96px;
    padding-bottom: 78px;
  }

  .reserve-action {
    padding: 28px 22px;
  }

  .home-reserve .button {
    width: 100%;
  }

  .pathway-card {
    min-height: 0;
    padding: 32px 24px;
  }

  .pathway-card .button {
    width: 100%;
  }

  .why-grid div {
    min-height: 0;
  }

  .home-conclusion {
    margin-top: 46px;
  }

  .approach-intro {
    gap: 28px;
  }

  .value-item {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .value-item p {
    grid-column: 1 / -1;
  }

  .video-placeholder {
    min-height: 170px;
  }

  .appointment-meta {
    flex-direction: column;
    gap: 6px;
  }

  .faq-columns {
    gap: 34px;
  }

  .home-form {
    padding: 32px 22px;
  }

  .contact-compose {
    width: 100%;
  }

  .transition-hero {
    padding: 54px 0 64px;
  }

  .creation-hero {
    padding: 58px 0 64px;
  }

  .creation-hero h1 {
    font-size: 34px;
  }

  .creation-hero-subtitle {
    font-size: 18px;
  }

  .creation-hero-action {
    align-items: stretch;
    text-align: center;
  }

  main .creation-hero-action p {
    text-align: center;
  }

  .creation-hero-body {
    gap: 30px;
  }

  .creation-hero h1 span + span {
    margin-top: 5px;
    font-size: 0.9em;
  }

  .creation-cta-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 22px;
  }

  .creation-final-cta h2 {
    font-size: 31px;
  }

  .creation-cta-action {
    padding: 28px 22px;
  }

  .creation-final-cta .button {
    width: 100%;
  }

  .creation-hero-image img {
    aspect-ratio: 4 / 3;
  }

  .transition-hero h1 {
    font-size: 34px;
  }

  .transition-hero-subtitle {
    font-size: 18px;
  }

  .transition-hero-action {
    align-items: stretch;
    text-align: center;
  }

  main .transition-hero-action p {
    text-align: center;
  }

  .transition-hero-body {
    gap: 28px;
  }

  .transition-hero-image {
    order: -1;
  }

  .transition-hero-image img {
    aspect-ratio: 4 / 3;
  }

  .recognition-item {
    min-height: 0;
    padding: 18px 18px 18px 52px;
  }

  .transition-statement p,
  .transition-benefit-close > p,
  .transition-centered-note {
    font-size: 17px;
  }

  .benefit-card,
  .support-card,
  .transition-step-card,
  .transition-offer-card {
    padding: 28px 22px;
  }

  .transition-offer-card.premium {
    padding-top: 28px;
    transform: none;
  }

  .premium-badge {
    align-self: flex-start;
  }

  .transition-proof-grid div {
    min-height: 0;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
