@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-400.woff2") format("woff2"),
       url("/assets/fonts/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-600.woff2") format("woff2"),
       url("/assets/fonts/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-700.woff2") format("woff2"),
       url("/assets/fonts/manrope-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-800.woff2") format("woff2"),
       url("/assets/fonts/manrope-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader-500.woff2") format("woff2"),
       url("/assets/fonts/newsreader-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader-600.woff2") format("woff2"),
       url("/assets/fonts/newsreader-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #0d1f3c;
  --ink-soft: #40506a;
  --muted: #6d7482;
  --paper: #fdf8f0;
  --paper-deep: #f5efe4;
  --surface: rgba(253, 248, 240, 0.94);
  --surface-strong: #fffaf2;
  --surface-soft: rgba(13, 31, 60, 0.06);
  --line: rgba(13, 31, 60, 0.15);
  --line-strong: rgba(201, 168, 76, 0.58);
  /* Canonical palette: one source-of-truth value per color; aliases keep
     existing references working with pixel-identical rendering (R6 dedupe). */
  --velvet: var(--ink);          /* #0d1f3c */
  --velvet-dark: #07142a;
  --velvet-deep: var(--velvet-dark); /* #07142a */
  --champagne: #c9a84c;
  --velvet-soft: var(--champagne); /* #c9a84c */
  --rose: var(--champagne);      /* #c9a84c */
  --white: #fdf8f0;
  --shadow: 0 24px 70px rgba(13, 31, 60, 0.14), 0 0 0 1px rgba(13, 31, 60, 0.04);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  font-family: Manrope, Avenir Next, Avenir, Segoe UI, Helvetica Neue, Arial, sans-serif;
  background:
    linear-gradient(180deg, #fdf8f0 0%, #f5efe4 46%, #fdf8f0 100%);
  color: var(--ink);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
  -webkit-tap-highlight-color: rgba(201, 168, 76, 0.22);
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--champagne);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(201, 168, 76, 0.5);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--surface-strong);
  color: var(--ink);
  padding: 12px 16px;
  border: 1px solid var(--line);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 10px clamp(16px, 4vw, 44px);
  background: rgba(13, 31, 60, 0.94);
  border-bottom: 1px solid rgba(201, 168, 76, 0.24);
  box-shadow: 0 18px 44px rgba(13, 31, 60, 0.22);
  backdrop-filter: blur(18px);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(13, 31, 60, 0.98);
  border-bottom: 1px solid rgba(201, 168, 76, 0.32);
  box-shadow: 0 18px 46px rgba(13, 31, 60, 0.28);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  min-height: 56px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  min-width: 0;
  color: var(--white);
  font-weight: 700;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(7, 20, 42, 0.36);
}

.brand span {
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.45vw, 22px);
  min-width: 0;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  color: rgba(253, 248, 240, 0.82);
  font-size: clamp(12px, 0.84vw, 14px);
  font-weight: 600;
  white-space: nowrap;
  padding: 0 12px;
}

.desktop-nav a[aria-current="page"] {
  color: var(--champagne);
  border-bottom: 2px solid currentColor;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d9bd6b, #c9a84c);
  color: var(--velvet-deep);
  border: 1px solid rgba(13, 31, 60, 0.14);
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(13, 31, 60, 0.18);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  color: var(--velvet-deep);
  background: linear-gradient(135deg, #e1c777, #b99236);
  border-color: rgba(13, 31, 60, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(13, 31, 60, 0.22);
}

.button:active {
  transform: translateY(1px);
}

.button-small {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 14px;
}

.button-light {
  background: rgba(253, 248, 240, 0.11);
  color: var(--white);
  border-color: rgba(253, 248, 240, 0.34);
  box-shadow: 0 12px 24px rgba(7, 20, 42, 0.22);
}

.button-light:hover {
  background: rgba(253, 248, 240, 0.18);
  color: var(--white);
  border-color: rgba(201, 168, 76, 0.68);
  box-shadow: 0 16px 34px rgba(7, 20, 42, 0.3);
}

.button-dark {
  background: var(--velvet-deep);
  color: var(--white);
  border-color: rgba(201, 168, 76, 0.34);
  box-shadow: 0 14px 30px rgba(7, 20, 42, 0.3);
}

.button-dark:hover {
  background: #0d1f3c;
  color: var(--white);
  border-color: rgba(201, 168, 76, 0.56);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(253, 248, 240, 0.3);
  border-radius: 8px;
  background: rgba(253, 248, 240, 0.12);
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.site-header.is-scrolled .menu-button,
body.nav-open .menu-button {
  color: var(--white);
  border-color: rgba(201, 168, 76, 0.38);
  background: rgba(253, 248, 240, 0.14);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.mobile-nav {
  max-width: 1440px;
  margin: 12px auto 0;
  padding: 18px;
  max-height: calc(100dvh - 88px - env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(13, 31, 60, 0.98);
  border: 1px solid rgba(201, 168, 76, 0.34);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: var(--white);
  font-weight: 700;
}

.mobile-nav .phone-link {
  display: flex;
  color: var(--champagne);
}

.hero {
  position: relative;
  min-height: min(730px, 88dvh);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  object-position: center center;
  filter: saturate(1.04) contrast(1.02) brightness(1);
}

.hero-image[src*="jonathan-naomi"],
.hero-image[src*="military-hero"],
.hero-image[src*="contact-jonathan"] {
  object-position: center 22%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 31, 60, 0.64) 0%, rgba(13, 31, 60, 0.4) 42%, rgba(13, 31, 60, 0.1) 72%, rgba(13, 31, 60, 0.02) 100%),
    linear-gradient(0deg, rgba(13, 31, 60, 0.03), rgba(13, 31, 60, 0.03));
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 64px;
  color: var(--white);
}

.hero-kicker {
  margin: 0 0 14px;
  max-width: 52ch;
  font-weight: 800;
  color: var(--champagne);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 1;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: Newsreader, Iowan Old Style, Georgia, Times New Roman, serif;
  font-weight: 500;
}

h2 {
  font-size: clamp(30px, 4.5vw, 62px);
  line-height: 1.02;
  margin-bottom: 18px;
  text-wrap: balance;
}

h3 {
  font-size: clamp(21px, 2.1vw, 30px);
  line-height: 1.12;
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(253, 248, 240, 0.88);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-band {
  width: min(1180px, calc(100% - 32px));
  margin: -36px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-band div {
  padding: 24px;
  display: grid;
  gap: 6px;
  border-right: 1px solid var(--line);
}

.proof-band div:last-child {
  border-right: 0;
}

.proof-band strong {
  font-size: 18px;
}

.proof-band span {
  color: var(--ink-soft);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0;
}

.section-light {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, #f5efe4 0%, #fdf8f0 100%);
  border-block: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading p,
.team-copy p,
.editorial-copy p,
.split-feature p,
.two-column p,
.contact-band p,
.faq-teaser p,
.contact-card p {
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 20px);
}

.team-section,
.split-feature,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.team-copy {
  max-width: 680px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.check-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 800;
  color: var(--velvet-dark);
  border-bottom: 2px solid currentColor;
}

.image-panel,
.wide-image,
.split-feature figure {
  margin: 0;
}

.image-panel {
  position: relative;
}

.panel-image,
.feature-image,
.wide-image-media {
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.panel-image {
  aspect-ratio: 1 / 1;
}

figcaption {
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 10px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.path-card {
  min-height: 246px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.path-card:hover {
  color: var(--ink);
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 44px rgba(13, 31, 60, 0.16);
}

.path-card span {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.12;
}

.path-card p {
  margin: 0;
  color: var(--ink-soft);
}

.premium-advisory {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: stretch;
}

.premium-advisory-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(13, 31, 60, 0.98), rgba(7, 20, 42, 0.96)),
    linear-gradient(90deg, rgba(201, 168, 76, 0.2), transparent 68%);
  color: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.32);
  border-radius: 8px;
  box-shadow: 0 26px 64px rgba(13, 31, 60, 0.2);
}

.premium-advisory-copy h2 {
  margin-bottom: 0;
}

.premium-advisory-copy p {
  margin-bottom: 0;
  color: rgba(253, 248, 240, 0.84);
  font-size: clamp(18px, 1.6vw, 21px);
}

.premium-advisory-copy .text-link {
  color: var(--champagne);
  justify-self: start;
}

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

.premium-card {
  min-height: 230px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(13, 31, 60, 0.1);
}

.premium-card:first-child {
  background: linear-gradient(160deg, rgba(201, 168, 76, 0.16), rgba(253, 248, 240, 0.94));
  border-color: rgba(201, 168, 76, 0.5);
}

.premium-card h3 {
  margin-bottom: 12px;
}

.premium-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(300px, 0.35fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: end;
}

.wide-image-media {
  aspect-ratio: 16 / 9;
}

.editorial-copy {
  padding-bottom: 24px;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.area-list a {
  display: flex;
  min-height: 70px;
  align-items: center;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.area-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.area-cards article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  scroll-margin-top: 110px;
}

.copy-deep {
  padding-top: clamp(54px, 8vw, 96px);
}

.copy-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.copy-grid article,
.related-card {
  min-height: 220px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.copy-grid p,
.related-card p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.copy-note {
  max-width: 840px;
  margin: 22px 0 0;
  padding: 20px 22px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 19px);
}

.related-card {
  display: grid;
  align-content: space-between;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.related-card:hover {
  color: var(--ink);
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 44px rgba(13, 31, 60, 0.16);
}

.related-card span {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.local-hero {
  position: relative;
  min-height: 670px;
  padding: 118px clamp(16px, 4vw, 44px) 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--velvet-dark);
  color: var(--white);
  border-bottom: 1px solid rgba(201, 168, 76, 0.28);
}

.local-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 20, 42, 0.68) 0%, rgba(13, 31, 60, 0.46) 46%, rgba(13, 31, 60, 0.16) 76%, rgba(13, 31, 60, 0.05) 100%),
    linear-gradient(0deg, rgba(7, 20, 42, 0.08), rgba(7, 20, 42, 0.08));
}

.local-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.05) contrast(1.03) brightness(1.04);
}

.local-hero .hero-copy {
  color: rgba(253, 248, 240, 0.86);
}

.local-hero-inner {
  width: min(780px, 100%);
}

.content-hero {
  width: min(1180px, calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
  padding: 132px 0 66px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: end;
}

.content-hero-copy {
  max-width: 760px;
}

.content-hero-media {
  margin: 0;
  align-self: center;
}

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

.section-eyebrow {
  margin-bottom: 10px;
  color: var(--velvet-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.content-shell {
  padding-top: 26px;
}

.imported-section {
  padding-top: clamp(42px, 7vw, 84px);
}

.imported-content {
  max-width: 860px;
  color: var(--ink);
  font-size: clamp(17px, 1.35vw, 20px);
}

.imported-content a {
  color: var(--velvet-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.imported-content a:hover {
  color: var(--velvet);
}

.imported-content h2,
.imported-content h3,
.imported-content h4 {
  margin-top: clamp(34px, 5vw, 58px);
  margin-bottom: 14px;
}

.imported-content h2 {
  font-size: clamp(30px, 3.8vw, 48px);
}

.imported-content h3 {
  font-size: clamp(23px, 2.4vw, 32px);
}

.imported-content p,
.imported-content li {
  color: var(--ink-soft);
}

.imported-content p,
.imported-content ul,
.imported-content ol,
.imported-content blockquote,
.imported-image {
  margin-bottom: 22px;
}

.imported-content ul,
.imported-content ol {
  padding-left: 1.35em;
}

.imported-content li + li {
  margin-top: 8px;
}

.imported-content blockquote {
  margin-left: 0;
  padding: 20px 24px;
  background: var(--surface);
  border-left: 4px solid var(--velvet);
  border-radius: 8px;
  color: var(--ink);
}

.imported-image {
  margin-top: 30px;
}

.imported-image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.blog-editorial-brief,
.blog-decision-lens,
.blog-premium-section,
.blog-source-panel,
.blog-faq-panel,
.blog-author-box {
  margin: clamp(34px, 5vw, 58px) 0;
}

.blog-editorial-brief {
  padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(135deg, rgba(13, 31, 60, 0.98), rgba(7, 20, 42, 0.95));
  color: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.26);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(13, 31, 60, 0.2);
}

.blog-brief-kicker {
  margin: 0 0 8px !important;
  color: var(--champagne) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-editorial-brief h2,
.blog-decision-lens h2,
.blog-premium-section h2,
.blog-link-panel h2,
.blog-source-panel h2,
.blog-faq-panel h2 {
  scroll-margin-top: 110px;
}

.blog-editorial-brief ul {
  margin: 18px 0 0;
}

.blog-editorial-brief p,
.blog-editorial-brief li {
  color: rgba(253, 248, 240, 0.86);
}

.blog-link-panel {
  margin: clamp(40px, 6vw, 70px) 0;
  padding: clamp(24px, 4vw, 36px);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.blog-link-grid a {
  min-height: 148px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-link-grid a:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 38px rgba(13, 31, 60, 0.15);
}

.blog-link-grid strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.blog-link-grid span {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.blog-author-box {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: clamp(18px, 4vw, 32px);
  align-items: center;
  padding: clamp(24px, 4vw, 36px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(13, 31, 60, 0.14);
}

.blog-author-box img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.blog-author-box h2 {
  margin-bottom: 12px;
}

.blog-author-box p:last-child {
  margin-bottom: 0;
}

.blog-source-panel {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.blog-source-panel li {
  overflow-wrap: anywhere;
}

.blog-faq-panel {
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.blog-faq-panel h2 + h2,
.blog-faq-panel p + h2 {
  margin-top: 24px;
  font-size: clamp(22px, 2.3vw, 30px);
}

.blog-index-section {
  padding-top: 24px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-card {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  color: var(--ink);
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 44px rgba(13, 31, 60, 0.16);
}

.blog-card span {
  color: var(--velvet-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card h2 {
  font-size: clamp(24px, 2.35vw, 34px);
  margin: 0;
}

.blog-card p {
  margin: 0;
  color: var(--ink-soft);
}

.market-brief {
  display: grid;
  gap: 9px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.market-brief span {
  color: var(--velvet-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.market-brief strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.28;
}

.city-overview {
  padding-bottom: clamp(42px, 7vw, 80px);
}

.compact-columns h2 {
  font-size: clamp(28px, 3.8vw, 46px);
}

.faq-teaser,
.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(42px, 7vw, 72px);
  margin-block: clamp(72px, 9vw, 116px);
  background: linear-gradient(135deg, rgba(13, 31, 60, 0.98), rgba(7, 20, 42, 0.95));
  color: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-teaser p,
.contact-band p {
  color: rgba(253, 248, 240, 0.84);
  max-width: 680px;
}

.contact-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 68px);
}

.credential {
  font-weight: 700;
  color: var(--velvet-dark) !important;
}

.process-section > h2,
.faq-list > h2 {
  max-width: 760px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.process-item {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-item p {
  color: var(--ink-soft);
  margin: 0;
}

.split-feature {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 0.74fr);
}

.feature-image {
  aspect-ratio: 16 / 10;
}

.faq-list {
  max-width: 940px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 14px;
  padding: 0 20px;
}

summary {
  cursor: pointer;
  min-height: 68px;
  display: flex;
  align-items: center;
  font-weight: 800;
}

details p {
  color: var(--ink-soft);
  padding-bottom: 20px;
}

.contact-card {
  align-self: start;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-lines a {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--velvet-dark);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 7px;
}

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

label {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(253, 248, 240, 0.86);
  color: var(--ink);
  padding: 12px 14px;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

textarea {
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
}

.form-note {
  margin: 0;
  align-self: center;
  color: var(--ink-soft);
}

.site-footer {
  background: #0d1f3c;
  color: rgba(253, 248, 240, 0.82);
  padding: 64px clamp(16px, 4vw, 44px) 28px;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 32px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 14px;
}

.site-footer a,
.site-footer p {
  color: rgba(253, 248, 240, 0.86);
  margin: 0 0 10px;
}

.site-footer a {
  display: flex;
  align-items: center;
  min-height: 44px;
}

.site-footer p {
  display: block;
}

.site-footer a:hover {
  color: var(--champagne);
}

.footer-logo {
  width: 92px;
  height: 92px;
  border-radius: 8px;
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(7, 20, 42, 0.36);
}

.badge-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.badge-row img {
  width: 34px;
  height: auto;
}

.legal {
  max-width: 1180px;
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
}

.legal p {
  font-size: 13px;
}

.legal-disclosure-panel {
  padding: 18px;
  background: rgba(253, 248, 240, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 8px;
}

.legal-disclosure-panel h2 {
  font-size: 15px;
  margin-bottom: 8px;
}

.legal-disclosure-panel p:last-child {
  margin-bottom: 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.legal-links a {
  display: inline-flex;
  min-height: 44px;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1160px) {
  .desktop-nav {
    display: none;
  }

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

  .phone-link {
    display: none;
  }
}

@media (max-width: 900px) {
  .proof-band,
  .team-section,
  .editorial,
  .two-column,
  .split-feature,
  .contact-section,
  .content-hero,
  .faq-teaser,
  .contact-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-band div:last-child {
    border-bottom: 0;
  }

  .path-grid,
  .process-grid,
  .area-list,
  .area-cards,
  .copy-grid,
  .blog-grid,
  .related-grid,
  .premium-advisory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .local-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 104px;
  }

  .contact-band-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 8px 12px;
  }

  .header-inner {
    min-height: 52px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand span {
    font-size: 15px;
  }

  .header-actions .button-small {
    display: none;
  }

  .hero {
    min-height: 82dvh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(13, 31, 60, 0.1), rgba(13, 31, 60, 0.4) 48%, rgba(13, 31, 60, 0.72)),
      linear-gradient(0deg, rgba(13, 31, 60, 0.05), rgba(13, 31, 60, 0.05));
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding: 88px 0 44px;
  }

  .content-hero {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    padding: 98px 0 46px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 50px);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .contact-band-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .proof-band {
    width: calc(100% - 28px);
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 58px 0;
  }

  .section-light {
    width: 100%;
    padding-inline: 14px;
  }

  .path-grid,
  .process-grid,
  .area-list,
  .area-cards,
  .copy-grid,
  .blog-grid,
  .blog-author-box,
  .related-grid,
  .check-list,
  .contact-form,
  .premium-advisory,
  .premium-advisory-grid {
    grid-template-columns: 1fr;
  }

  .faq-teaser,
  .contact-band {
    padding: 28px;
    margin-block: 58px;
  }

  .field-full {
    grid-column: auto;
  }
}

/* Audit recovery polish (2026-06): progressive typographic refinement only.
   Additive — no palette, layout, color, or component overrides. Unsupported
   browsers ignore text-wrap and fall back to existing rendering. */
h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li,
figcaption,
.hero-copy {
  text-wrap: pretty;
}
