:root {
  color-scheme: dark;
  --ink: #fffdf4;
  --muted: #cbbfae;
  --soft: #948b78;
  --dark: #080b08;
  --panel: #10150f;
  --panel-2: #171d15;
  --line: rgba(213, 190, 135, 0.2);
  --gold: #b99752;
  --gold-2: #e7d19a;
  --cyan: #86b7b4;
  --magenta: #b98db2;
  --green: #9cb67a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1480px;
  --header-height: 78px;
  --hero-title-size: 4.35rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0) 38%),
    var(--dark);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-130%);
  border-radius: 8px;
  background: var(--ink);
  color: #10111d;
  padding: 8px 12px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(239, 211, 141, 0.2);
  background: rgba(7, 10, 7, 0.93);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.28);
}

.nav-shell {
  width: min(calc(100% - 56px), 1840px);
  min-height: var(--header-height);
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.brand-lockup {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.brand-word {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.08rem;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.16),
    0 8px 34px rgba(0, 0, 0, 0.7);
}

.brand-word .brand-accent {
  color: #efd38d;
}

.brand-tagline {
  color: #dfb95f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link,
.resource-button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #f8f8f2;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.8);
}

.nav-link:hover,
.nav-link.active,
.resource-button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
}

.nav-link.active {
  color: #f4c85f;
  box-shadow: inset 0 -3px 0 #d6a531;
}

.resource-menu {
  position: relative;
}

.resource-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 18, 12, 0.98);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.resource-menu:hover .resource-panel,
.resource-menu:focus-within .resource-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.resource-panel a {
  display: block;
  border-radius: 8px;
  color: var(--muted);
  padding: 9px 10px;
  font-size: 0.95rem;
  font-weight: 700;
}

.resource-panel a:hover {
  background: rgba(231, 209, 154, 0.09);
  color: var(--ink);
}

.cta-small,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cta-small {
  min-height: 46px;
  padding: 0 24px;
  font-size: 0.88rem;
  border-radius: 999px;
  color: #171006;
  background:
    radial-gradient(circle at 30% 15%, rgba(255, 255, 255, 0.62), transparent 26%),
    linear-gradient(135deg, #d3a02d 0%, #f6d479 52%, #c78b20 100%);
  box-shadow:
    0 0 0 1px rgba(255, 224, 140, 0.35),
    0 0 28px rgba(221, 166, 48, 0.5),
    0 14px 34px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn {
  min-height: 48px;
  padding: 0 18px;
}

.btn:hover,
.cta-small:hover {
  transform: translateY(-1px);
}

.btn.primary {
  color: #130d05;
  border-color: rgba(255, 229, 156, 0.42);
  background:
    radial-gradient(circle at 30% 12%, rgba(255, 255, 255, 0.68), transparent 28%),
    linear-gradient(135deg, #d6a42e 0%, #ffdf82 48%, #bd7f16 100%);
  box-shadow:
    0 0 0 1px rgba(255, 223, 130, 0.32),
    0 0 32px rgba(220, 166, 44, 0.58),
    0 18px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.btn.secondary {
  color: #ffffff;
  border-color: rgba(255, 238, 185, 0.45);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(231, 209, 154, 0.1));
  box-shadow:
    0 0 22px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.38);
}

.btn.ghost {
  color: var(--gold-2);
  border-color: rgba(216, 182, 106, 0.36);
  background: rgba(216, 182, 106, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 182, 106, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.mobile-panel {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 49;
  background: rgba(8, 11, 8, 0.98);
  border-top: 1px solid rgba(213, 190, 135, 0.14);
  padding: 20px;
}

.mobile-panel[hidden] {
  display: none;
}

.mobile-panel nav {
  width: min(520px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 8px;
}

.mobile-panel a {
  min-height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: rgba(231, 209, 154, 0.06);
  color: var(--ink);
  font-weight: 800;
}

.mobile-panel .mobile-cta {
  justify-content: center;
  background: linear-gradient(135deg, #b99752, #e7d19a);
  color: #171308;
}

.section {
  padding: 96px 0;
}

.section.tight {
  padding: 56px 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-size: 4.15rem;
}

h2 {
  max-width: 940px;
  font-size: 3.15rem;
}

h3 {
  font-size: 1.42rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.75;
}

.section-centered > .eyebrow,
.section-centered > h2,
.section-centered > .lead,
.section-intro > .eyebrow,
.section-intro > h2,
.section-intro > .lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-centered > h2,
.section-intro > h2 {
  max-width: 980px;
}

.section-centered > .lead,
.section-intro > .lead {
  max-width: 850px;
}

.section-intro {
  margin-bottom: 40px;
}

.final-cta {
  max-width: 980px;
}

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

.muted {
  color: var(--muted);
}

.hero {
  min-height: 86vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #080914;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(231, 209, 154, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(8, 11, 8, 0.88) 0%, rgba(8, 11, 8, 0.68) 48%, rgba(8, 11, 8, 0.36) 100%),
    linear-gradient(0deg, rgba(8, 11, 8, 0.94), rgba(8, 11, 8, 0.18) 46%, rgba(8, 11, 8, 0.52)),
    url("hero-private-residence.png") center / cover;
  transform: scale(1.015);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 56px), 1840px);
  margin: 0 auto;
  padding: 86px 0 42px;
}

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

.hero-copy .eyebrow {
  color: var(--gold-2);
  font-size: 0.95rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-copy h1 {
  max-width: 1120px;
  margin: 0 auto;
  color: #ffffff;
  font-size: var(--hero-title-size);
  line-height: 1.02;
  text-wrap: balance;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.18),
    0 2px 0 rgba(231, 209, 154, 0.2),
    0 24px 78px rgba(0, 0, 0, 0.78);
}

.hero-copy .lead {
  max-width: 920px;
  margin: 24px auto 0;
  color: #fffaf0;
  font-size: 1.16rem;
  line-height: 1.78;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.72);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions .btn {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 8px;
  font-size: 0.96rem;
  font-weight: 900;
}

.trust-strip {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 56px), 1840px);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(231, 209, 154, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(241, 203, 105, 0.16), rgba(13, 18, 12, 0.92));
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.35);
}

.trust-item {
  min-height: 128px;
  padding: 26px 22px;
  border-right: 1px solid rgba(231, 209, 154, 0.24);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.12;
  white-space: nowrap;
}

.trust-item span {
  display: block;
  margin-top: 10px;
  color: #e3d8c4;
  font-size: 0.98rem;
  line-height: 1.55;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 56vh;
  display: grid;
  align-items: center;
  padding: 92px 0 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 32%, rgba(231, 209, 154, 0.14), transparent 32%),
    linear-gradient(90deg, rgba(8, 11, 8, 0.9), rgba(8, 11, 8, 0.68)),
    url("hero-private-residence.png") center / cover;
}

.page-hero .container {
  width: min(calc(100% - 56px), 1840px);
  text-align: center;
}

.page-hero h1 {
  max-width: 1120px;
  margin: 0 auto;
  color: #ffffff;
  font-size: var(--hero-title-size);
  line-height: 1.02;
  text-wrap: balance;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.16),
    0 2px 0 rgba(231, 209, 154, 0.18),
    0 24px 78px rgba(0, 0, 0, 0.78);
}

.page-hero .lead {
  max-width: 920px;
  margin: 24px auto 0;
  color: #fffaf0;
  font-size: 1.16rem;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.72);
}

.seo-page {
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.58), rgba(247, 239, 226, 0.62) 46%, rgba(239, 228, 208, 0.66)),
    url("luxury-embossed-wallpaper.png") center top / 620px auto repeat;
}

.seo-page main {
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.58), rgba(247, 239, 226, 0.62) 46%, rgba(239, 228, 208, 0.66)),
    url("luxury-embossed-wallpaper.png") center top / 620px auto repeat;
  padding: 32px 0 0;
}

.seo-page .site-header {
  min-height: var(--header-height);
}

.seo-page .brand-word {
  font-size: 2.08rem;
}

.seo-page .brand-tagline {
  font-size: 0.72rem;
}

.seo-page .page-hero {
  width: min(calc(100% - 32px), 1860px);
  min-height: 50vh;
  margin: 0 auto 18px;
  border: 1px solid rgba(235, 213, 157, 0.34);
  border-radius: 22px;
  padding: 74px 0 70px;
  background:
    radial-gradient(circle at 50% 28%, rgba(231, 209, 154, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(8, 11, 8, 0.78), rgba(8, 11, 8, 0.56)),
    linear-gradient(180deg, rgba(8, 11, 8, 0.08), rgba(8, 11, 8, 0.58)),
    url("hero-private-residence.png") center 42% / cover;
  box-shadow:
    0 28px 80px rgba(70, 47, 13, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.seo-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(246, 212, 121, 0.18);
  border-radius: 16px;
  box-shadow:
    inset 0 0 64px rgba(255, 255, 255, 0.05),
    inset 0 -80px 110px rgba(8, 11, 8, 0.22);
  pointer-events: none;
}

.seo-page .page-hero h1 {
  max-width: 1040px;
  font-size: clamp(2.45rem, 4.8vw, 4.2rem);
}

.seo-page .page-hero .lead {
  max-width: 850px;
  margin-top: 18px;
  font-size: 1.08rem;
}

.seo-page main > .section {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding-top: 58px;
  color: #14130f;
}

.seo-page main > .section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.52), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(231, 209, 154, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 247, 0.38), rgba(255, 253, 247, 0.18));
}

.seo-page main > .section > .container,
.seo-page main > .section > article {
  position: relative;
  z-index: 1;
}

.seo-page .resource-feature,
.seo-page .resource-list,
.seo-page .article-card,
.seo-page .local-card,
.seo-page .article-callout {
  color: #14130f;
  border-color: rgba(162, 125, 52, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(249, 241, 226, 0.9)),
    radial-gradient(circle at 18% 10%, rgba(231, 209, 154, 0.28), transparent 32%);
  box-shadow:
    0 28px 70px rgba(75, 55, 24, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.seo-page .resource-feature,
.seo-page .resource-list,
.seo-page .article-card,
.seo-page .local-card {
  position: relative;
  overflow: hidden;
}

.seo-page .resource-feature::before,
.seo-page .resource-list::before,
.seo-page .article-card::before,
.seo-page .local-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 4px solid rgba(185, 151, 82, 0.68);
  opacity: 0.9;
}

.seo-page .local-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-top: 74px;
}

.seo-page .local-card::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 84px;
  height: 64px;
  opacity: 0.18;
  background: #8a671a;
  clip-path: polygon(50% 0, 100% 38%, 100% 100%, 0 100%, 0 38%);
}

.seo-page .local-card strong,
.seo-page .resource-feature h2,
.seo-page .resource-list h2,
.seo-page .article-card h3,
.seo-page .article-body h2,
.seo-page .article-body h3 {
  color: #11110d;
}

.seo-page .local-card p,
.seo-page .resource-feature p,
.seo-page .resource-list p,
.seo-page .article-card p,
.seo-page .article-body p,
.seo-page .article-body li {
  color: #51493c;
}

.seo-page .resource-links a {
  color: #15130e;
  border-color: rgba(162, 125, 52, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(246, 235, 213, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.seo-page .resource-links a:hover,
.seo-page .local-card:hover,
.seo-page .article-card:hover {
  transform: translateY(-2px);
  border-color: rgba(162, 125, 52, 0.46);
  box-shadow:
    0 34px 80px rgba(75, 55, 24, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.seo-page .article-body {
  max-width: 1040px;
  border: 1px solid rgba(162, 125, 52, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(250, 243, 231, 0.84));
  padding: 58px;
  box-shadow: 0 28px 72px rgba(67, 45, 13, 0.12);
}

.seo-page .article-callout strong,
.seo-page .article-card .topic,
.seo-page .resource-links a::after,
.seo-page .eyebrow {
  color: #8a671a;
}

.plans-page .page-hero {
  padding: 92px 0 72px;
}

.plans-page > .section:first-of-type {
  padding-top: 38px;
}

.band {
  background: #0e130d;
  border-block: 1px solid rgba(213, 190, 135, 0.12);
}

.luxe-light {
  background: #f4eee2;
  color: #17170f;
}

.luxe-light .eyebrow {
  color: #8a671a;
}

.luxe-light .lead,
.luxe-light .muted,
.luxe-light p,
.luxe-light .card p {
  color: #55505d;
}

.luxe-light .card,
.luxe-light .value-card,
.luxe-light .article-card {
  border-color: rgba(18, 19, 29, 0.12);
  background: rgba(255, 255, 255, 0.64);
}

.luxe-light .card strong,
.luxe-light .value-card strong {
  color: #12131d;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 52px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 1.08fr) minmax(0, 0.92fr);
}

.pain-editorial {
  width: min(calc(100% - 56px), 1840px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.95fr);
  column-gap: 64px;
  row-gap: 42px;
  align-items: center;
}

.pain-intro {
  grid-column: 1 / -1;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.pain-intro h2 {
  max-width: 940px;
  margin: 0 auto;
}

.pain-intro .lead {
  max-width: 780px;
  margin: 16px auto 0;
}

.question-ladder {
  margin-top: 0;
  border-top: 1px solid rgba(18, 19, 29, 0.15);
}

.question-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(18, 19, 29, 0.15);
}

.question-number {
  color: #a17626;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.question-item h3 {
  color: #12131d;
  font-size: 1.42rem;
  line-height: 1.16;
}

.question-item p {
  max-width: 620px;
  margin-top: 9px;
  color: #55505d;
  font-size: 1rem;
  line-height: 1.72;
}

.lifestyle-frame {
  position: relative;
  align-self: stretch;
}

.lifestyle-frame::before {
  content: "";
  position: absolute;
  inset: 26px -22px -24px 42px;
  border: 1px solid rgba(185, 151, 82, 0.32);
  border-radius: 8px;
}

.lifestyle-frame .visual {
  position: relative;
  z-index: 1;
}

.visual {
  min-height: 440px;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: center / cover;
}

.visual.home {
  background-image: url("assessment-luxury-home.png");
}

.visual.enjoying {
  min-height: 700px;
  height: 100%;
  display: flex;
  align-items: end;
  padding: 24px;
  background-image:
    radial-gradient(circle at 30% 16%, rgba(231, 209, 154, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(8, 11, 8, 0.04), rgba(8, 11, 8, 0.18) 38%, rgba(8, 11, 8, 0.72)),
    url("homeowner-relaxing-reading.png");
  background-position: 76% center;
}

.image-note {
  max-width: 420px;
  border: 1px solid rgba(231, 209, 154, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 11, 8, 0.86), rgba(23, 29, 21, 0.72));
  color: var(--ink);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.image-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.12;
}

.image-note span {
  color: #ded4bf;
  font-size: 0.92rem;
}

.visual.manager {
  background-image:
    linear-gradient(0deg, rgba(7, 8, 18, 0.28), rgba(7, 8, 18, 0.12)),
    url("about-relationship-luxury.png");
}

.visual.exterior {
  background-image: url("hero-private-residence.png");
}

.page-hero .pricing-note {
  color: rgba(255, 250, 240, 0.94);
  font-weight: 650;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.72);
}

.visual.assessment {
  min-height: 560px;
  background-image:
    linear-gradient(180deg, rgba(8, 11, 8, 0.04), rgba(8, 11, 8, 0.24)),
    url("assessment-luxury-home.png");
  background-position: center;
}

.visual.about-relationship {
  min-height: 560px;
  background-image:
    linear-gradient(180deg, rgba(8, 11, 8, 0.04), rgba(8, 11, 8, 0.22)),
    url("about-relationship-luxury.png");
  background-position: center;
}

.visual.process {
  min-height: 560px;
  background-image:
    linear-gradient(180deg, rgba(8, 11, 8, 0.04), rgba(8, 11, 8, 0.22)),
    url("process-assessment-luxury.png");
  background-position: center;
}

.assessment-showcase {
  width: min(calc(100% - 56px), 1840px);
  margin: 0 auto;
}

.kicker-grid,
.service-grid,
.plan-grid,
.article-grid,
.values-grid {
  display: grid;
  gap: 16px;
}

.kicker-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.trust-mosaic-section {
  background: #f8f3e7;
  color: #17170f;
  border-block: 1px solid rgba(18, 19, 29, 0.08);
}

.trust-mosaic {
  width: min(calc(100% - 56px), 1840px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.trust-panel,
.trust-photo {
  min-height: 405px;
  border-radius: 8px;
}

.trust-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(18, 19, 29, 0.09);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(244, 238, 226, 0.88));
  padding: 42px;
}

.trust-panel .eyebrow {
  color: #8a671a;
}

.trust-panel h2 {
  max-width: 760px;
  color: #11120e;
  font-size: 2.22rem;
}

.trust-panel p {
  max-width: 760px;
  margin-top: 22px;
  color: #4f4a3d;
}

.trust-checks {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-checks li {
  position: relative;
  padding-left: 28px;
  color: #37362f;
  line-height: 1.55;
}

.trust-checks li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.58em;
  width: 12px;
  height: 7px;
  border-left: 2px solid #7f6733;
  border-bottom: 2px solid #7f6733;
  transform: rotate(-45deg);
}

.trust-photo {
  border: 1px solid rgba(18, 19, 29, 0.1);
  box-shadow: 0 22px 58px rgba(39, 31, 17, 0.16);
  background: center / cover no-repeat;
}

.trust-photo.family {
  background-image: url("trust-family-time.png");
  background-position: center;
}

.trust-photo.pool {
  background-image: url("trust-pool-calm.png");
  background-position: 58% center;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 38px;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 38px;
}

.plan-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 22px;
  margin-top: 40px;
}

.article-grid,
.values-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
}

.card,
.plan-card,
.article-card,
.value-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.card,
.article-card,
.value-card {
  padding: 28px;
}

.card strong,
.value-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.14rem;
}

.card p,
.value-card p,
.article-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.service-card {
  min-height: 210px;
}

.icon-mark {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 14px;
  color: #11131d;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-weight: 900;
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 34px;
  min-height: 100%;
}

.plan-card.featured {
  border-color: rgba(216, 182, 106, 0.54);
  background: linear-gradient(180deg, rgba(185, 151, 82, 0.15), rgba(255, 255, 255, 0.045));
}

.plan-tag {
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 16px 0 14px;
  color: var(--ink);
  font-size: 2.55rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--soft);
  font-size: 1.1rem;
}

.price small {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-note {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--soft);
  font-size: 0.98rem;
}

.plan-card ul,
.check-list,
.plain-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li,
.check-list li,
.plain-list li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.55;
}

.plan-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.76em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.plan-card .btn {
  margin-top: auto;
}

.note-box {
  margin-top: 28px;
  border: 1px solid rgba(216, 182, 106, 0.24);
  border-radius: 8px;
  background: rgba(216, 182, 106, 0.08);
  padding: 22px;
}

.note-box strong {
  display: block;
  color: var(--gold-2);
  margin-bottom: 8px;
}

.luxe-light .note-box {
  border-color: rgba(185, 151, 82, 0.24);
  background: rgba(255, 255, 255, 0.62);
}

.luxe-light .note-box strong {
  color: #74551b;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 22px;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #171308;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-weight: 900;
}

.portal-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111321;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portal-bar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #080b08;
}

.portal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.portal-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.portal-row {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.portal-row span {
  display: block;
  color: var(--soft);
  font-size: 0.86rem;
}

.portal-row strong {
  display: block;
  margin-top: 4px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 62px;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 850;
}

.faq-question::after {
  content: "+";
  color: var(--gold-2);
  font-size: 1.3rem;
  font-weight: 900;
}

.faq-item.open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: 44px;
  align-items: start;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

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

.field label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 6, 13, 0.72);
  color: var(--ink);
  min-height: 46px;
  padding: 10px 12px;
  outline: none;
}

.field textarea {
  min-height: 136px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(216, 182, 106, 0.72);
}

.form-status {
  margin-top: 12px;
  color: var(--gold-2);
  font-weight: 800;
}

.form-helper {
  margin: 18px 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.form-helper a,
.form-status a {
  color: var(--gold);
  font-weight: 900;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 235px;
}

.article-card .topic {
  color: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card a {
  margin-top: auto;
  color: var(--gold-2);
  font-weight: 900;
}

.resource-collection {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.resource-row {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.resource-feature,
.resource-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 30px;
}

.resource-feature h2,
.resource-list h2 {
  font-size: 2rem;
}

.resource-links {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.resource-links a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(213, 190, 135, 0.16);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(231, 209, 154, 0.055);
  font-weight: 850;
}

.resource-links a::after {
  content: "Read";
  color: var(--gold-2);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.article-body {
  max-width: 940px;
  margin: 0 auto;
}

.article-body h2 {
  margin-top: 44px;
  font-size: 2.25rem;
}

.article-body h3 {
  margin-top: 28px;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 1.04rem;
}

.article-body p {
  margin-top: 16px;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 22px;
}

.article-callout {
  margin: 34px 0;
  border: 1px solid rgba(216, 182, 106, 0.28);
  border-radius: 8px;
  background: rgba(216, 182, 106, 0.09);
  padding: 26px;
}

.article-callout strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.local-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 24px;
}

.local-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.local-intro {
  max-width: 1120px;
  margin: 0 auto 38px;
}

.seo-page .local-luxe-grid {
  width: min(1280px, 100%);
  margin: 44px auto 0;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.seo-page .local-photo-card {
  grid-column: span 3;
  min-height: 390px;
  justify-content: end;
  padding: 28px;
  color: #fffdf4;
  border: 1px solid rgba(235, 213, 157, 0.42);
  background:
    linear-gradient(180deg, rgba(8, 11, 8, 0.02), rgba(8, 11, 8, 0.18) 36%, rgba(8, 11, 8, 0.88)),
    var(--area-image) center / cover;
  box-shadow:
    0 34px 90px rgba(54, 36, 10, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.seo-page .local-photo-card:nth-child(5) {
  grid-column: 2 / span 4;
}

.seo-page .local-photo-card::before {
  border-top: 0;
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 0 8px rgba(8, 11, 8, 0.14);
}

.seo-page .local-photo-card::after {
  left: auto;
  right: 26px;
  top: 24px;
  width: 74px;
  height: 54px;
  opacity: 0.22;
  background: linear-gradient(135deg, #fff7dd, #d1a44b);
}

.seo-page .local-photo-card strong {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 520px;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.05;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.72);
}

.seo-page .local-photo-card p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  color: #f4ead5;
  font-size: 1.02rem;
  line-height: 1.62;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.78);
}

.area-kicker,
.area-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
}

.area-kicker {
  margin-bottom: 14px;
  padding: 7px 11px;
  color: #151006;
  background: linear-gradient(135deg, rgba(255, 242, 201, 0.92), rgba(203, 160, 68, 0.92));
  font-size: 0.78rem;
  text-transform: uppercase;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
}

.area-link {
  margin-top: 22px;
  color: #f6d479;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.area-link::after {
  content: "";
  width: 36px;
  height: 1px;
  margin-left: 12px;
  background: currentColor;
}

.seo-page .austin-card {
  --area-image: url("hero-private-residence.png");
}

.seo-page .bee-card {
  --area-image: url("trust-family-time.png");
}

.seo-page .lakeway-card {
  --area-image: url("trust-pool-calm.png");
}

.seo-page .westlake-card {
  --area-image: url("assessment-luxury-home.png");
}

.seo-page .hill-card {
  --area-image: url("homeowner-relaxing-reading.png");
}

.comparison-intro {
  max-width: 1120px;
  margin: 0 auto 42px;
}

.comparison-luxe-grid {
  width: min(1320px, 100%);
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.comparison-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid rgba(235, 213, 157, 0.44);
  border-radius: 8px;
  padding: 30px;
  color: #fffdf4;
  background:
    linear-gradient(180deg, rgba(8, 11, 8, 0.08), rgba(8, 11, 8, 0.25) 34%, rgba(8, 11, 8, 0.9)),
    var(--comparison-image) center / cover;
  box-shadow:
    0 36px 90px rgba(54, 36, 10, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.comparison-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(246, 212, 121, 0.3);
  border-radius: 8px;
  pointer-events: none;
}

.comparison-card::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 36px solid rgba(246, 212, 121, 0.13);
  box-shadow: 0 0 60px rgba(246, 212, 121, 0.18);
}

.comparison-card .topic,
.comparison-card h3,
.comparison-card p,
.comparison-card .area-link,
.comparison-number {
  position: relative;
  z-index: 1;
}

.comparison-card .topic {
  color: #f6d479;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-card h3 {
  margin-top: 10px;
  color: #ffffff;
  font-size: 2.05rem;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.74);
}

.comparison-card p {
  margin-top: 14px;
  color: #f2e6ce;
  font-size: 1.02rem;
  line-height: 1.62;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.78);
}

.comparison-number {
  position: absolute;
  top: 26px;
  left: 28px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1a1307;
  background: linear-gradient(135deg, #f7df9d, #b98927);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.36);
}

.property-card {
  --comparison-image: url("assessment-luxury-home.png");
}

.app-card {
  --comparison-image: url("process-assessment-luxury.png");
}

.estate-card {
  --comparison-image: url("trust-family-time.png");
}

.comparison-statement {
  width: min(980px, 100%);
  margin: 34px auto 0;
  border: 1px solid rgba(162, 125, 52, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 16, 12, 0.94), rgba(48, 38, 18, 0.92)),
    radial-gradient(circle at 24% 10%, rgba(246, 212, 121, 0.2), transparent 26%);
  color: #fffdf4;
  padding: 28px;
  text-align: center;
  box-shadow: 0 28px 80px rgba(55, 36, 9, 0.22);
}

.comparison-statement span {
  display: block;
  color: #d9c9a5;
}

.comparison-statement strong {
  display: block;
  margin-top: 8px;
  color: #f6d479;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.25;
}

.seo-page .faq-list {
  width: min(1080px, 100%);
  margin: 34px auto 0;
  gap: 14px;
}

.seo-page .faq-item {
  border-color: rgba(162, 125, 52, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(249, 241, 226, 0.9));
  box-shadow:
    0 22px 58px rgba(75, 55, 24, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.seo-page .faq-question {
  min-height: 74px;
  color: #11110d;
  padding: 20px 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
}

.seo-page .faq-question::after {
  color: #8a671a;
}

.seo-page .faq-answer {
  color: #51493c;
  padding: 0 24px 22px;
}

.seo-page .band {
  background:
    radial-gradient(circle at 24% 12%, rgba(246, 212, 121, 0.16), transparent 26%),
    linear-gradient(135deg, #0a0d09, #171d15);
  color: var(--ink);
}

.legal-body {
  max-width: 860px;
}

.legal-body h2 {
  margin-top: 38px;
  font-size: 1.65rem;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
}

.legal-body ul {
  padding-left: 20px;
}

.site-footer {
  border-top: 1px solid rgba(213, 190, 135, 0.14);
  background: #050704;
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(150px, 0.7fr));
  gap: 34px;
}

.footer-brand img {
  width: 190px;
}

.footer-logo {
  display: inline-flex;
}

.footer-brand .brand-word {
  font-size: 2.05rem;
}

.footer-brand p {
  margin-top: 14px;
  max-width: 390px;
  color: var(--muted);
}

.footer-col strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 8px 0;
  color: var(--muted);
}

.footer-col a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 0.9rem;
  text-align: center;
}

.footer-legal {
  display: inline-flex;
  gap: 14px;
  margin-left: 14px;
  white-space: nowrap;
}

.footer-legal a {
  color: var(--gold);
  text-decoration: none;
}

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

@media (max-width: 1040px) {
  .desktop-nav,
  .cta-small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand img {
    width: 174px;
  }

  .brand-word {
    font-size: 2.08rem;
  }

  h1 {
    font-size: 3.1rem;
  }

  .hero-copy h1 {
    font-size: 3.65rem;
  }

  .page-hero h1 {
    font-size: 3.65rem;
  }

  .hero-copy .lead {
    font-size: 1.15rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .trust-strip,
  .intelligence-grid,
  .service-grid,
  .plan-grid,
  .article-grid,
  .values-grid,
  .local-grid,
  .kicker-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2n) {
    border-right: 0;
  }

  .split,
  .split.reverse,
  .pain-editorial,
  .trust-mosaic,
  .resource-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .visual {
    order: -1;
  }

  .pain-editorial {
    gap: 44px;
  }

  .visual.enjoying {
    min-height: 560px;
  }

  .lifestyle-frame::before {
    inset: 22px -12px -18px 28px;
  }

  .trust-panel,
  .trust-photo {
    min-height: 360px;
  }

  .trust-panel {
    padding: 34px;
  }

  .seo-page .local-luxe-grid {
    grid-template-columns: 1fr;
  }

  .comparison-luxe-grid {
    grid-template-columns: 1fr;
  }

  .seo-page .local-photo-card,
  .seo-page .local-photo-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .footer-legal {
    display: flex;
    justify-content: center;
    margin: 12px 0 0;
    flex-wrap: wrap;
  }

  .nav-shell,
  .container,
  .hero-inner,
  .trust-strip {
    width: min(100% - 28px, var(--max));
  }

  .nav-shell {
    min-height: 76px;
    height: 76px;
  }

  .brand img {
    width: 154px;
  }

  .brand-word {
    font-size: 1.85rem;
  }

  .brand-tagline {
    font-size: 0.76rem;
  }

  .mobile-panel {
    inset: 76px 0 0;
  }

  .section {
    padding: 62px 0;
  }

  .pain-intro {
    text-align: left;
  }

  .pain-intro h2,
  .pain-intro .lead {
    margin-left: 0;
    margin-right: 0;
  }

  .page-hero {
    min-height: 50vh;
    padding: 70px 0 52px;
  }

  .page-hero .container {
    width: min(100% - 28px, var(--max));
  }

  .page-hero h1 {
    font-size: 2.7rem;
    line-height: 1.04;
  }

  .page-hero .lead {
    font-size: 1.06rem;
  }

  .seo-page .page-hero {
    width: min(100% - 20px, var(--max));
    min-height: 34vh;
    margin: 0 auto 14px;
    padding: 44px 0 38px;
    border-radius: 16px;
  }

  .seo-page main {
    padding-top: 10px;
  }

  .seo-page main > .section {
    padding-top: 46px;
  }

  .seo-page .page-hero h1 {
    font-size: 2.35rem;
  }

  .seo-page .article-body {
    padding: 26px;
  }

  .seo-page .local-photo-card {
    min-height: 330px;
    padding: 22px;
  }

  .seo-page .local-photo-card strong {
    font-size: 1.62rem;
  }

  .comparison-card {
    min-height: 380px;
    padding: 24px;
  }

  .comparison-card h3 {
    font-size: 1.62rem;
  }

  .comparison-number {
    top: 22px;
    left: 22px;
  }

  .comparison-statement {
    padding: 22px;
  }

  .comparison-statement strong {
    font-size: 1.16rem;
  }

  .seo-page .faq-question {
    min-height: 66px;
    padding: 18px 18px;
    font-size: 1.04rem;
  }

  .seo-page .faq-answer {
    padding: 0 18px 18px;
  }

  .area-kicker {
    font-size: 0.7rem;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-inner {
    padding: 84px 0 28px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 2.88rem;
    line-height: 1.03;
  }

  .hero-copy .eyebrow {
    font-size: 0.82rem;
  }

  .hero-copy .lead {
    font-size: 1.06rem;
  }

  .hero-actions .btn {
    min-height: 58px;
  }

  h2 {
    font-size: 2.15rem;
  }

  h3 {
    font-size: 1.18rem;
  }

  .lead {
    font-size: 1.02rem;
  }

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

  .btn {
    width: 100%;
  }

  .trust-strip,
  .intelligence-grid,
  .service-grid,
  .plan-grid,
  .article-grid,
  .values-grid,
  .local-grid,
  .kicker-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: auto;
    padding: 22px 20px;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .visual {
    min-height: 300px;
  }

  .visual.enjoying {
    min-height: 420px;
  }

  .visual.assessment,
  .visual.about-relationship,
  .visual.process {
    min-height: 320px;
  }

  .lifestyle-frame::before {
    display: none;
  }

  .question-ladder {
    margin-top: 26px;
  }

  .question-item {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 20px 0;
  }

  .question-item h3 {
    font-size: 1.2rem;
  }

  .trust-panel {
    padding: 24px;
  }

  .trust-panel h2 {
    font-size: 1.75rem;
  }

  .trust-photo {
    min-height: 250px;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .plan-card,
  .card,
  .value-card,
  .article-card,
  .resource-feature,
  .resource-list,
  .article-callout,
  .local-card,
  .contact-form {
    padding: 20px;
  }

  .price {
    font-size: 2.2rem;
  }
}
