:root {
  --navy-950: #08131f;
  --navy-900: #102a43;
  --navy-800: #173a59;
  --navy-700: #1d4569;
  --gold-500: #b08d57;
  --gold-400: #c8aa76;
  --gold-300: #dbc69f;
  --cream-100: #fbf7f1;
  --cream-200: #f4ede2;
  --slate-700: #435466;
  --slate-600: #5b6c7d;
  --slate-400: #9ca9b5;
  --white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(7, 18, 30, 0.12);
  --shadow-card: 0 18px 42px rgba(8, 19, 31, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--slate-700);
  background:
    radial-gradient(circle at top left, rgba(176, 141, 87, 0.08), transparent 38%),
    radial-gradient(circle at right center, rgba(16, 42, 67, 0.06), transparent 28%),
    linear-gradient(180deg, #fffdfa 0%, var(--cream-100) 100%);
  min-height: 100vh;
}

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

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

button,
.button {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  text-align: center;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  box-shadow: 0 18px 36px rgba(16, 42, 67, 0.22);
}

.button-secondary {
  color: var(--navy-900);
  background: rgba(176, 141, 87, 0.14);
  border: 1px solid rgba(176, 141, 87, 0.3);
}

.button-outline {
  color: var(--navy-900);
  background: transparent;
  border: 1px solid rgba(16, 42, 67, 0.2);
}

.button-light {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.button.is-disabled,
.button[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
  filter: grayscale(0.1);
}

.container {
  width: min(var(--container), calc(100% - 2.2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 241, 0.82);
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.brand__mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(176, 141, 87, 0.18), rgba(16, 42, 67, 0.92)),
    var(--navy-900);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 700;
}

.brand__name {
  display: block;
  color: var(--navy-900);
  font-weight: 800;
  line-height: 1.1;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--navy-900);
  background: rgba(16, 42, 67, 0.06);
}

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

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  color: var(--slate-700);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  background: rgba(16, 42, 67, 0.06);
  color: var(--navy-900);
}

.page-hero {
  position: relative;
  overflow: clip;
  padding: 6rem 0 3rem;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.page-hero::before {
  width: 420px;
  height: 420px;
  right: -180px;
  top: -120px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.16), transparent 72%);
}

.page-hero::after {
  width: 360px;
  height: 360px;
  left: -140px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(16, 42, 67, 0.12), transparent 68%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold-500);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}

.hero-title,
.section-title,
.headline-serif {
  margin: 0;
  color: var(--navy-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.hero-title {
  font-size: clamp(3.2rem, 7vw, 6rem);
  max-width: 12ch;
  margin-top: 0.85rem;
}

.hero-lead,
.section-lead,
.content-copy {
  color: var(--slate-600);
  font-size: 1.06rem;
  line-height: 1.8;
}

.hero-actions,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-note {
  margin-top: 1.35rem;
  color: var(--slate-600);
  font-size: 0.95rem;
}

.hero-frame {
  position: relative;
  padding: 1.05rem;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
    var(--cream-100);
  box-shadow: var(--shadow-soft);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.75), rgba(16, 42, 67, 0.1));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--navy-900);
  min-height: 600px;
}

.hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
}

.hero-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 19, 31, 0.15), rgba(8, 19, 31, 0.8)),
    linear-gradient(160deg, rgba(176, 141, 87, 0.12), transparent 38%);
}

.hero-card__content {
  position: relative;
  padding: 2rem;
  display: flex;
  min-height: 600px;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.hero-card__label {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-300);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card__title {
  margin: 1rem 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
}

.hero-card__copy {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
  max-width: 30ch;
}

.section {
  padding: 5.5rem 0;
}

.section--tint {
  background:
    linear-gradient(180deg, rgba(16, 42, 67, 0.04), rgba(16, 42, 67, 0.01)),
    rgba(255, 255, 255, 0.45);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
}

.section-title {
  font-size: clamp(2.5rem, 4.6vw, 4.2rem);
  max-width: 13ch;
}

.section-copy {
  max-width: 58ch;
  color: var(--slate-600);
  line-height: 1.8;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

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

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

.offer-card,
.feature-card,
.service-card,
.content-panel,
.policy-card,
.faq-card,
.contact-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-card);
  padding: 1.35rem;
}

.offer-card::before,
.service-card::before,
.content-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(176, 141, 87, 0.08), transparent 40%);
  pointer-events: none;
}

.offer-card__tier {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 800;
}

.offer-card__price {
  margin-top: 0.95rem;
  color: var(--navy-900);
  font-size: 2.4rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

.offer-card__title,
.service-card__title,
.feature-card__title,
.faq-card__question {
  margin: 0.9rem 0 0.65rem;
  color: var(--navy-900);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
}

.offer-card__copy,
.service-card__copy,
.feature-card__copy,
.faq-card__answer,
.content-panel p,
.contact-card p {
  color: var(--slate-600);
  line-height: 1.75;
}

.offer-card ul,
.service-card ul,
.check-list,
.policy-card ul {
  padding-left: 1.1rem;
  margin: 0.9rem 0 0;
  color: var(--slate-600);
}

.offer-card li,
.service-card li,
.check-list li,
.policy-card li {
  margin: 0.35rem 0;
  line-height: 1.7;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 2rem;
}

.metric {
  padding: 1.1rem 1.15rem;
  border-radius: 22px;
  background: rgba(16, 42, 67, 0.05);
  border: 1px solid rgba(16, 42, 67, 0.08);
}

.metric strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.2rem;
}

.metric span {
  display: block;
  margin-top: 0.35rem;
  color: var(--slate-600);
  line-height: 1.6;
  font-size: 0.95rem;
}

.band {
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(12, 30, 46, 0.98), rgba(21, 58, 89, 0.94));
  color: var(--white);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.band .section-title,
.band .headline-serif,
.band h2,
.band h3 {
  color: var(--white);
}

.band .section-copy,
.band p,
.band li {
  color: rgba(255, 255, 255, 0.82);
}

.band .button-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.band .button-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.band .eyebrow {
  color: var(--gold-300);
}

.band .eyebrow::before {
  background: linear-gradient(90deg, transparent, var(--gold-300));
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.path-step {
  padding: 1.3rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.path-step__eyebrow {
  color: var(--gold-300);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.path-step h3 {
  margin: 0.7rem 0 0.6rem;
  font-size: 1.18rem;
}

.callout {
  padding: 1.3rem 1.4rem;
  border-radius: 24px;
  background: rgba(176, 141, 87, 0.1);
  border: 1px solid rgba(176, 141, 87, 0.24);
  color: var(--navy-900);
}

.callout strong {
  color: var(--navy-900);
}

.band .callout {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(176, 141, 87, 0.28);
  color: rgba(255, 255, 255, 0.88);
}

.band .callout strong {
  color: var(--gold-300);
}

.guidance-assistant {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-card);
}

.guidance-assistant::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(176, 141, 87, 0.08), transparent 40%);
  pointer-events: none;
}

.guidance-chip-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}

.guidance-chip {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(16, 42, 67, 0.06);
  color: var(--navy-900);
  border: 1px solid rgba(16, 42, 67, 0.08);
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.guidance-chip:hover,
.guidance-chip.is-active {
  background: rgba(176, 141, 87, 0.14);
  border-color: rgba(176, 141, 87, 0.28);
  color: var(--navy-900);
}

.guidance-result {
  position: relative;
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(176, 141, 87, 0.08);
  border: 1px solid rgba(176, 141, 87, 0.18);
}

.guidance-result h3 {
  margin: 0 0 0.55rem;
  color: var(--navy-900);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
}

.guidance-result p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.75;
}

.advisor-signal {
  width: min(100%, 34rem);
  margin-top: 1.35rem;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  text-align: left;
  color: var(--navy-900);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 239, 0.88)),
    var(--white);
  border: 1px solid rgba(176, 141, 87, 0.24);
  box-shadow: 0 16px 36px rgba(16, 42, 67, 0.1);
}

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

.advisor-signal__eyebrow,
.advisor-signal__action {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.advisor-signal__eyebrow {
  color: var(--gold-500);
}

.advisor-signal__title {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.1rem;
}

.advisor-signal__copy {
  display: block;
  margin-top: 0.45rem;
  color: var(--slate-600);
  line-height: 1.7;
}

.advisor-signal__action {
  margin-top: 0.8rem;
  color: var(--navy-900);
}

.advisor-widget {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 45;
  display: grid;
  justify-items: end;
  gap: 0.9rem;
}

.advisor-launcher {
  max-width: min(92vw, 22rem);
  padding: 1rem 1.15rem;
  border-radius: 24px;
  color: var(--white);
  text-align: left;
  background:
    linear-gradient(135deg, rgba(29, 69, 105, 0.98), rgba(8, 19, 31, 0.98)),
    var(--navy-900);
  box-shadow: 0 22px 46px rgba(8, 19, 31, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.advisor-launcher__label,
.advisor-launcher__subtext {
  display: block;
}

.advisor-launcher__label {
  font-size: 1rem;
  font-weight: 800;
}

.advisor-launcher__subtext {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  font-size: 0.9rem;
}

.advisor-panel {
  width: min(92vw, 28rem);
  max-height: min(78vh, 44rem);
  overflow: auto;
  padding: 1.25rem;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 239, 0.94)),
    var(--white);
  border: 1px solid rgba(16, 42, 67, 0.1);
  box-shadow: 0 28px 60px rgba(8, 19, 31, 0.2);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.advisor-widget.is-open .advisor-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.advisor-panel__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.advisor-panel__eyebrow,
.advisor-result__eyebrow,
.advisor-panel__label {
  color: var(--gold-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.advisor-panel__title {
  margin: 0.4rem 0 0;
  color: var(--navy-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 0.98;
}

.advisor-panel__close {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(16, 42, 67, 0.06);
  color: var(--navy-900);
  font-weight: 700;
}

.advisor-panel__intro {
  margin: 1rem 0 0;
  color: var(--slate-600);
  line-height: 1.75;
}

.advisor-panel__section {
  display: block;
  margin-top: 1.15rem;
}

.advisor-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.75rem;
}

.advisor-chip {
  padding: 0.8rem 0.95rem;
  border-radius: 999px;
  background: rgba(16, 42, 67, 0.06);
  color: var(--navy-900);
  border: 1px solid rgba(16, 42, 67, 0.08);
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.advisor-chip:hover,
.advisor-chip.is-active {
  background: rgba(176, 141, 87, 0.14);
  border-color: rgba(176, 141, 87, 0.32);
}

.advisor-textarea {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.95rem 1rem;
  resize: vertical;
  border-radius: 18px;
  border: 1px solid rgba(16, 42, 67, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-900);
  font: inherit;
  line-height: 1.65;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.advisor-textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.15);
}

.advisor-textarea::placeholder {
  color: var(--slate-400);
}

.advisor-form__actions {
  margin-top: 1rem;
}

.advisor-submit[disabled] {
  opacity: 0.75;
  cursor: wait;
}

.advisor-status {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  color: var(--slate-600);
  line-height: 1.6;
  font-size: 0.92rem;
}

.advisor-result {
  margin-top: 1.1rem;
  padding: 1.1rem;
  border-radius: 24px;
  background: rgba(176, 141, 87, 0.08);
  border: 1px solid rgba(176, 141, 87, 0.18);
}

.advisor-result__heading {
  margin: 0.45rem 0 0.55rem;
  color: var(--navy-900);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.35;
}

.advisor-result__body {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.75;
}

.advisor-result__actions {
  margin-top: 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.faq-list,
.policy-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-card {
  padding: 1.25rem;
}

.hero-mini {
  padding: 4.6rem 0 2rem;
}

.hero-mini__panel {
  padding: 2.1rem;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.76)),
    var(--cream-100);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-mini__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  align-items: end;
}

.hero-mini .hero-title {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  max-width: 15ch;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(16, 42, 67, 0.06);
  color: var(--navy-900);
  font-weight: 800;
  border: 1px solid rgba(16, 42, 67, 0.08);
}

.product-showcase,
.service-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.product-panel {
  padding: 1.55rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(16, 42, 67, 0.08);
}

.product-panel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.12);
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 700;
}

.price-card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(16, 42, 67, 0.96), rgba(29, 69, 105, 0.92));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.price-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.price-card .price {
  margin: 0.6rem 0 0.85rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  line-height: 0.95;
  color: var(--gold-300);
}

.price-card p,
.price-card li {
  color: rgba(255, 255, 255, 0.86);
}

.price-card .button-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.price-card .button-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.download-box {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76)),
    var(--white);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-card);
}

.download-box h2,
.download-box h3 {
  margin-top: 0;
  color: var(--navy-900);
}

.download-box__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.12);
  color: var(--navy-900);
  font-size: 0.85rem;
  font-weight: 800;
}

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

.delivery-gate {
  margin-top: 1.35rem;
}

.delivery-gate__panel {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(16, 42, 67, 0.03);
  border: 1px solid rgba(16, 42, 67, 0.08);
}

.delivery-gate__panel--open {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 239, 0.82)),
    var(--white);
  box-shadow: var(--shadow-card);
}

.delivery-gate__label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy-900);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-gate__input {
  width: 100%;
  padding: 0.9rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(16, 42, 67, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-900);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.delivery-gate__input:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.15);
}

.delivery-gate__error {
  margin: 0.9rem 0 0;
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  background: rgba(143, 38, 38, 0.08);
  border: 1px solid rgba(143, 38, 38, 0.16);
  color: #8f2626;
  line-height: 1.6;
}

.delivery-gate__status {
  margin: 0 0 1rem;
  color: var(--slate-600);
  line-height: 1.7;
}

.download-link {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(16, 42, 67, 0.08);
  background: rgba(16, 42, 67, 0.03);
}

.download-link strong {
  display: block;
  color: var(--navy-900);
}

.download-link span {
  display: block;
  margin-top: 0.35rem;
  color: var(--slate-600);
  font-size: 0.95rem;
}

.site-footer {
  padding: 2.2rem 0 3rem;
  border-top: 1px solid rgba(16, 42, 67, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1.2rem;
}

.site-footer__title {
  color: var(--navy-900);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--slate-600);
  line-height: 1.75;
}

.site-footer__bottom {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 42, 67, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(16, 42, 67, 0.06);
  color: var(--slate-600);
  font-size: 0.85rem;
  font-weight: 700;
}

.reveal {
  animation: fade-up 650ms ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-landing {
  background:
    radial-gradient(circle at top left, rgba(176, 141, 87, 0.08), transparent 38%),
    radial-gradient(circle at right center, rgba(16, 42, 67, 0.06), transparent 28%),
    linear-gradient(180deg, #fffdfa 0%, var(--cream-100) 100%);
  color: var(--slate-700);
}

.service-shell {
  width: min(1240px, calc(100% - 2.2rem));
}

.service-hero-dark,
.service-dark-section,
.service-capability-band,
.service-footer-cta {
  position: relative;
  overflow: hidden;
}

.service-hero-dark {
  padding: 6.2rem 0 4rem;
  background:
    radial-gradient(circle at top center, rgba(176, 141, 87, 0.14), transparent 42%),
    radial-gradient(circle at left top, rgba(16, 42, 67, 0.08), transparent 30%),
    transparent;
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  text-align: center;
}

.service-hero-dark::before {
  content: "";
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 420px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.15), transparent 70%);
  pointer-events: none;
}

.service-kicker,
.service-section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.1);
  border: 1px solid rgba(176, 141, 87, 0.24);
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-hero-copy {
  max-width: 900px;
  margin: 1.65rem auto 0;
}

.service-headline,
.service-section-title {
  margin: 0;
  color: var(--navy-900);
  font-family: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.service-headline {
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1.08;
}

.service-headline em,
.service-section-title em {
  color: var(--gold-500);
  font-style: italic;
}

.service-subhead,
.service-section-copy,
.service-disclaimer {
  color: var(--slate-600);
  line-height: 1.75;
}

.service-subhead {
  max-width: 700px;
  margin: 1.2rem auto 0;
  font-size: 1.08rem;
}

.service-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.service-trust-badge,
.service-capability,
.addon-card,
.service-note-card,
.assessment-contact-card,
.assessment-form,
.compare-table-wrap,
.service-stat {
  border: 1px solid rgba(16, 42, 67, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.service-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border-radius: 18px;
}

.service-trust-badge__icon {
  font-size: 1.05rem;
}

.service-trust-badge__title {
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-trust-badge__copy {
  color: var(--slate-600);
  font-size: 0.72rem;
  line-height: 1.45;
}

.service-outline-button {
  color: var(--navy-900);
  border: 1px solid rgba(16, 42, 67, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.service-outline-button:hover {
  background: rgba(176, 141, 87, 0.08);
  color: var(--navy-900);
}

.service-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}

.service-stat {
  text-align: center;
  padding: 1.2rem 1rem;
  border-radius: 24px;
}

.service-stat strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.35rem;
  font-weight: 800;
}

.service-stat span {
  display: block;
  margin-top: 0.3rem;
  color: var(--slate-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-capability-band {
  padding: 2rem 0;
  background:
    linear-gradient(180deg, rgba(16, 42, 67, 0.04), rgba(16, 42, 67, 0.01)),
    rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(16, 42, 67, 0.06);
  border-bottom: 1px solid rgba(16, 42, 67, 0.06);
}

.service-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-capability {
  padding: 1.1rem;
  border-radius: 18px;
  text-align: center;
}

.service-capability__icon {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}

.service-capability h2 {
  margin: 0 0 0.35rem;
  color: var(--navy-900);
  font-size: 0.96rem;
  font-weight: 800;
}

.service-capability p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.78rem;
  line-height: 1.55;
}

.service-dark-section {
  padding: 5.2rem 0;
  background: transparent;
}

.service-dark-section--subtle {
  background:
    linear-gradient(180deg, rgba(16, 42, 67, 0.04), rgba(16, 42, 67, 0.01)),
    rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(16, 42, 67, 0.06);
  border-bottom: 1px solid rgba(16, 42, 67, 0.06);
}

.service-section-head {
  max-width: 860px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.service-section-head .service-section-label {
  margin-bottom: 1rem;
}

.service-section-title {
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  line-height: 1.15;
}

.service-section-copy {
  max-width: 650px;
  margin: 1rem auto 0;
  font-size: 1rem;
}

.service-billing-note {
  display: inline-flex;
  margin-top: 1.3rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(176, 141, 87, 0.16);
  color: var(--slate-600);
  box-shadow: 0 12px 28px rgba(8, 19, 31, 0.08);
  font-size: 0.8rem;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.tier-card {
  position: relative;
  padding: 1.45rem;
  border-radius: 24px;
  border: 1px solid rgba(16, 42, 67, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.78)),
    var(--white);
  box-shadow: var(--shadow-card);
}

.tier-card--featured {
  border-color: rgba(176, 141, 87, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 239, 0.95)),
    var(--white);
  box-shadow: 0 20px 44px rgba(176, 141, 87, 0.16);
}

.tier-card__flag {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.12);
  color: var(--gold-500);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tier-card__eyebrow,
.tier-card__list-title {
  color: var(--gold-500);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tier-card__title {
  margin: 0.9rem 0;
  color: var(--navy-900);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 700;
}

.tier-card__price {
  color: var(--navy-900);
  font-family: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  font-size: 2.7rem;
  line-height: 0.95;
}

.tier-card__subprice,
.tier-card__setup {
  color: var(--slate-600);
  font-size: 0.88rem;
}

.tier-card__subprice {
  margin-top: 0.55rem;
}

.tier-card__setup {
  margin-top: 0.25rem;
}

.tier-card__cta {
  width: 100%;
  margin: 1rem 0 1.2rem;
}

.tier-card__list {
  margin: 0.9rem 0 0;
  padding-left: 1rem;
  color: var(--slate-600);
}

.tier-card__list li {
  margin: 0.4rem 0;
  line-height: 1.6;
  color: var(--slate-600);
}

.addon-grid,
.service-note-grid {
  display: grid;
  gap: 1rem;
}

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

.service-note-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.notary-summary-grid,
.notary-pricing-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

.addon-card,
.service-note-card {
  padding: 1.15rem;
  border-radius: 20px;
}

.notary-summary-card,
.notary-pricing-card {
  padding: 1.3rem;
  border-radius: 24px;
  border: 1px solid rgba(16, 42, 67, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 239, 0.78)),
    var(--white);
  box-shadow: var(--shadow-card);
}

.service-addons-callout {
  max-width: 760px;
  margin: 0 auto 1.6rem;
  padding: 1rem 1.2rem;
  border-radius: 22px;
  background: rgba(176, 141, 87, 0.1);
  border: 1px solid rgba(176, 141, 87, 0.22);
  color: var(--navy-900);
  text-align: center;
  line-height: 1.7;
  box-shadow: 0 14px 34px rgba(176, 141, 87, 0.08);
}

.service-addons-section .addon-card {
  border-color: rgba(176, 141, 87, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 239, 0.78)),
    var(--white);
}

.service-support-notes .service-note-grid {
  margin-top: 0;
}

.addon-card h3,
.service-note-card h3 {
  margin: 0 0 0.45rem;
  color: var(--navy-900);
  font-size: 0.98rem;
  font-weight: 800;
}

.notary-summary-card__eyebrow {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.12);
  color: var(--gold-500);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.notary-summary-card h3,
.notary-pricing-card h3 {
  margin: 0 0 0.65rem;
  color: var(--navy-900);
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 800;
}

.addon-card p,
.service-note-card p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.65;
}

.notary-summary-card p,
.notary-pricing-card p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.7;
}

.notary-pricing-table {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
}

.notary-pricing-table th,
.notary-pricing-table td {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  text-align: left;
  vertical-align: top;
}

.notary-pricing-table th {
  color: var(--slate-600);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
}

.notary-pricing-table td {
  color: var(--navy-900);
  font-size: 0.96rem;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  text-align: left;
}

.compare-table th {
  color: var(--gold-500);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  background: rgba(176, 141, 87, 0.08);
}

.compare-table td {
  color: var(--slate-600);
  line-height: 1.5;
}

.compare-table td:first-child {
  color: var(--navy-900);
  font-weight: 700;
}

.service-disclaimer {
  max-width: 760px;
  margin: 1rem auto 0;
  font-size: 0.82rem;
  text-align: center;
}

.assessment-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.4rem;
  align-items: start;
}

.assessment-contact-card {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
  padding: 1.15rem;
  border-radius: 18px;
}

.assessment-contact-card strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.84rem;
  margin-bottom: 0.2rem;
}

.assessment-contact-card span {
  color: var(--slate-600);
  font-size: 0.96rem;
}

.assessment-form {
  padding: 1.4rem;
  border-radius: 24px;
}

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

.service-field {
  display: block;
  margin-bottom: 1rem;
}

.service-field span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-field input,
.service-field select,
.service-field textarea {
  width: 100%;
  padding: 0.9rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(16, 42, 67, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-900);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.service-field input:focus,
.service-field select:focus,
.service-field textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.15);
}

.service-field input::placeholder,
.service-field textarea::placeholder {
  color: var(--slate-400);
}

.service-field small {
  display: block;
  margin-top: 0.45rem;
  color: var(--slate-600);
  line-height: 1.5;
}

.assessment-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.assessment-footer p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.82rem;
  line-height: 1.55;
}

.service-footer-cta {
  padding: 4.8rem 0 3.8rem;
  background:
    linear-gradient(180deg, rgba(16, 42, 67, 0.04), rgba(16, 42, 67, 0.01)),
    rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(16, 42, 67, 0.06);
}

.service-cta-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.76)),
    var(--white);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-soft);
}

.service-footer {
  border-top-color: rgba(16, 42, 67, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.service-footer .site-footer__bottom,
.service-footer a,
.service-footer small {
  color: var(--slate-600);
}

@media (max-width: 1080px) {
  .hero-grid,
  .product-showcase,
  .service-showcase,
  .split,
  .hero-mini__grid,
  .site-footer__grid,
  .card-grid,
  .card-grid--three,
  .metrics-strip,
  .path-grid,
  .faq-list,
  .policy-layout,
  .service-capability-grid,
  .service-stat-row,
  .tier-grid,
  .notary-summary-grid,
  .notary-pricing-grid,
  .addon-grid,
  .service-note-grid,
  .assessment-shell,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-card__content {
    min-height: 420px;
  }

  .assessment-shell {
    gap: 1rem;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: fixed;
    inset: 82px 0 auto 0;
    display: block;
    padding: 0 1.1rem 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

  .nav__links {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.3rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 42, 67, 0.08);
    box-shadow: var(--shadow-soft);
  }

  .nav__links a {
    padding: 0.85rem 0.95rem;
  }
}

@media (max-width: 720px) {
  .page-hero {
    padding-top: 5rem;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 4.3rem);
  }

  .section {
    padding: 4.3rem 0;
  }

  .section-title {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
  }

  .hero-card__content,
  .offer-card,
  .service-card,
  .content-panel,
  .policy-card,
  .contact-card,
  .product-panel,
  .price-card,
  .download-box {
    padding: 1.2rem;
  }

  .site-footer__bottom {
    align-items: flex-start;
  }

  .service-hero-dark {
    padding-top: 6rem;
  }

  .service-headline {
    font-size: clamp(2.45rem, 11vw, 3.4rem);
  }

  .service-trust-badge {
    width: 100%;
  }

  .service-section-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .compare-table th,
  .compare-table td {
    padding: 0.8rem 0.85rem;
  }

  .advisor-widget {
    right: 0.8rem;
    left: 0.8rem;
    bottom: 0.8rem;
    justify-items: stretch;
  }

  .advisor-launcher,
  .advisor-panel {
    width: 100%;
    max-width: none;
  }

  .advisor-panel {
    max-height: 72vh;
    padding: 1rem;
  }

  .advisor-panel__title {
    font-size: 1.75rem;
  }
}
