:root {
  --navy-950: #071726;
  --navy-900: #0b1f33;
  --navy-800: #15324a;
  --navy-700: #24465f;
  --ink: #17212b;
  --muted: #5d6873;
  --off-white: #f5f1ea;
  --paper: #fffdf9;
  --line: #dcd5ca;
  --copper: #b1774f;
  --copper-dark: #8e5939;
  --green: #315f50;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(7, 23, 38, 0.08);
  --shadow-lg: 0 28px 80px rgba(7, 23, 38, 0.16);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--off-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(177,119,79,.45); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.bg-paper { background: var(--paper); }
.bg-navy { background: var(--navy-950); color: var(--white); }
.bg-soft { background: #ece6dc; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--copper-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.bg-navy .eyebrow { color: #d8a47f; }

h1, h2, h3 { margin: 0; color: var(--navy-950); font-weight: 760; letter-spacing: -.035em; line-height: 1.08; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }
h1 { font-size: clamp(2.75rem, 6vw, 5.4rem); max-width: 880px; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.45rem); letter-spacing: -.02em; }
p { margin: 0; }
.lead { margin-top: 26px; max-width: 730px; color: #d7e0e6; font-size: clamp(1.05rem, 2vw, 1.28rem); }
.intro { margin-top: 22px; max-width: 720px; color: var(--muted); font-size: 1.1rem; }
.bg-navy .intro { color: #cbd6dd; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(7, 23, 38, .95);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--white); font-weight: 780; letter-spacing: -.02em; }
.brand-mark { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.22); border-radius: 12px; display: grid; place-items: center; overflow: hidden; }
.brand-mark img { width: 34px; height: 34px; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy small { margin-top: 5px; color: #9dafba; font-size: .69rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: #dce4e8; font-size: .94rem; font-weight: 650; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after { content: ""; display: block; width: 100%; height: 2px; margin-top: 5px; background: var(--copper); }
.nav-cta { padding: 11px 17px; border-radius: 999px; background: var(--copper); color: var(--white) !important; }
.nav-cta::after { display: none !important; }
.menu-button { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: transparent; color: white; }
.menu-button span, .menu-button::before, .menu-button::after { content: ""; display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: .2s ease; }
.menu-button.open span { opacity: 0; }
.menu-button.open::before { transform: translateY(7px) rotate(45deg); }
.menu-button.open::after { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; overflow: hidden; padding: 118px 0 102px; background: var(--navy-950); color: white; }
.hero::before { content: ""; position: absolute; width: 650px; height: 650px; top: -300px; right: -180px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(177,119,79,.025); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(310px, .65fr); gap: 70px; align-items: end; }
.hero h1 span { display: block; margin-top: .08em; color: #dfb08e; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 760; transition: transform .2s ease, background .2s ease, border .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--copper); color: white; }
.btn-primary:hover { background: var(--copper-dark); }
.btn-light { border-color: rgba(255,255,255,.25); color: white; background: rgba(255,255,255,.05); }
.btn-light:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.09); }
.btn-dark { background: var(--navy-950); color: white; }
.btn-outline { border-color: var(--line); background: transparent; color: var(--navy-950); }

.hero-panel { border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: rgba(255,255,255,.055); box-shadow: var(--shadow-lg); overflow: hidden; }
.hero-panel-top { padding: 28px; border-bottom: 1px solid rgba(255,255,255,.1); }
.hero-panel-top strong { display: block; font-size: 1.25rem; }
.hero-panel-top span { color: #aebdc7; font-size: .94rem; }
.trust-list { margin: 0; padding: 12px 28px 26px; list-style: none; }
.trust-list li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: #e4ebef; }
.trust-list li:last-child { border: 0; }
.check { width: 21px; height: 21px; margin-top: 2px; border-radius: 50%; display: grid; place-items: center; background: rgba(177,119,79,.18); color: #e5b897; font-size: .76rem; font-weight: 900; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 54px; border-top: 1px solid rgba(255,255,255,.12); }
.stat { padding: 24px 24px 0 0; }
.stat strong { display: block; color: #fff; font-size: 1.04rem; }
.stat span { color: #9eafb9; font-size: .9rem; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-head p { max-width: 560px; color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-sm); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 14px; background: #eee3d8; color: var(--copper-dark); font-weight: 900; }
.card p { margin-top: 14px; color: var(--muted); }
.card ul { margin: 18px 0 0; padding: 0; list-style: none; }
.card li { position: relative; padding: 8px 0 8px 24px; color: var(--muted); }
.card li::before { content: ""; position: absolute; left: 0; top: 18px; width: 8px; height: 8px; border-radius: 50%; background: var(--copper); }

.focus-band { display: grid; grid-template-columns: .85fr 1.15fr; overflow: hidden; border-radius: var(--radius-lg); background: var(--navy-900); color: white; box-shadow: var(--shadow-lg); }
.focus-copy { padding: 58px; }
.focus-copy h2 { color: white; }
.focus-copy p { margin-top: 22px; color: #c9d4db; }
.position-list { display: grid; grid-template-columns: repeat(2, 1fr); border-left: 1px solid rgba(255,255,255,.1); }
.position-list span { display: flex; align-items: center; min-height: 86px; padding: 20px 24px; border-right: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 700; }
.position-list span::before { content: ""; width: 8px; height: 8px; margin-right: 13px; border-radius: 50%; background: var(--copper); }

.process { counter-reset: steps; }
.process-step { position: relative; display: grid; grid-template-columns: 74px 1fr; gap: 26px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.process-step:last-child { border: 0; }
.process-step::before { counter-increment: steps; content: "0" counter(steps); width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--navy-950); color: white; font-size: .86rem; font-weight: 800; }
.process-step p { margin-top: 10px; color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.quote-card { padding: 48px; border-radius: var(--radius-lg); background: var(--navy-950); color: white; box-shadow: var(--shadow-lg); }
.quote-card p { color: #d5dfe5; font-size: 1.2rem; }
.quote-card strong { display: block; margin-top: 30px; }
.quote-card span { color: #aebdc7; font-size: .92rem; }

.portrait-card {
  position: relative;
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
}
.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(7,23,38,.82) 100%);
  pointer-events: none;
}
.portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center 38%;
}
.portrait-card-about img { object-position: center 34%; }
.portrait-card figcaption {
  position: absolute;
  z-index: 1;
  left: 30px;
  right: 30px;
  bottom: 25px;
  display: grid;
  color: white;
}
.portrait-card figcaption strong { font-size: 1.18rem; }
.portrait-card figcaption span { margin-top: 2px; color: #d4dde3; font-size: .9rem; }

.monogram { min-height: 470px; border-radius: var(--radius-lg); display: grid; place-items: center; background: linear-gradient(145deg, var(--navy-950), var(--navy-800)); color: white; overflow: hidden; position: relative; }
.monogram::before, .monogram::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.monogram::before { width: 360px; height: 360px; }
.monogram::after { width: 520px; height: 520px; }
.monogram-inner { position: relative; z-index: 1; text-align: center; }
.monogram-inner b { display: block; font-size: 5rem; letter-spacing: -.08em; }
.monogram-inner span { color: #d9b095; font-weight: 700; }

.cta-box { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 54px; border-radius: var(--radius-lg); background: var(--navy-950); color: white; box-shadow: var(--shadow-lg); }
.cta-box h2 { color: white; }
.cta-box p { margin-top: 14px; color: #c9d4db; max-width: 700px; }

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 76px;
  background: var(--navy-950);
  color: white;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7,23,38,.99) 0%, rgba(7,23,38,.96) 43%, rgba(7,23,38,.72) 67%, rgba(7,23,38,.28) 100%);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7,23,38,.08), rgba(7,23,38,.32));
}
.page-hero-visual {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 42%;
}
.page-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.78) contrast(1.04);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  position: relative;
  z-index: 2;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  mix-blend-mode: normal;
  filter: none;
  text-shadow: 0 2px 3px rgba(7,23,38,.9), 0 10px 32px rgba(7,23,38,.72);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 820px;
}
.page-hero .lead { max-width: 720px; }
.breadcrumbs { margin-bottom: 26px; color: #9eafb9; font-size: .9rem; }
.breadcrumbs a:hover { color: white; }

.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 70px; }
.prose h2 { margin-top: 58px; font-size: 2rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 34px; }
.prose p { margin-top: 18px; color: var(--muted); }
.prose ul { margin: 20px 0; padding-left: 22px; color: var(--muted); }
.prose li { margin: 10px 0; }
.sidebar-card { position: sticky; top: 105px; padding: 30px; border-radius: var(--radius); background: var(--navy-950); color: white; }
.sidebar-card h3 { color: white; }
.sidebar-card p { margin-top: 14px; color: #c9d4db; }
.sidebar-card .btn { width: 100%; margin-top: 24px; }

.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 36px; align-items: start; }
.contact-info { padding: 40px; border-radius: var(--radius-lg); background: var(--navy-950); color: white; }
.contact-info h2 { color: white; font-size: 2rem; }
.contact-info p { margin-top: 16px; color: #c8d4db; }
.contact-method { margin-top: 30px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); }
.contact-method small { display: block; color: #93a7b4; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.contact-method a { display: inline-block; margin-top: 7px; color: white; font-weight: 750; word-break: break-word; }
.form-card { padding: 40px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--navy-950); font-size: .92rem; font-weight: 750; }
input, select, textarea { width: 100%; border: 1px solid #cfc6b9; border-radius: 12px; background: white; color: var(--ink); padding: 14px 15px; }
textarea { min-height: 150px; resize: vertical; }
.form-note { margin-top: 16px; color: var(--muted); font-size: .88rem; }
.form-status { display: none; margin-top: 18px; padding: 14px 16px; border-radius: 12px; background: #e6efe9; color: var(--green); font-weight: 700; }

.legal-box { margin-top: 30px; padding: 24px; border-left: 4px solid var(--copper); background: #eee6dc; color: #55483d; }

.site-footer { padding: 64px 0 26px; background: var(--navy-950); color: #c7d2d9; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 60px; }
.footer-brand p { margin-top: 18px; max-width: 430px; color: #9fb0ba; }
.footer-title { color: white; font-weight: 780; }
.footer-links { display: grid; gap: 10px; margin-top: 17px; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); color: #8196a3; font-size: .86rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .menu-button { display: block; }
  .nav-links { position: fixed; inset: 78px 0 auto; display: none; padding: 24px 20px 34px; background: var(--navy-950); border-top: 1px solid rgba(255,255,255,.08); flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 12px; border-radius: 10px; }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .hero-grid, .split, .contact-grid, .content-layout { grid-template-columns: 1fr; }
  .hero-panel { max-width: 620px; }
  .focus-band { grid-template-columns: 1fr; }
  .position-list { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .sidebar-card { position: static; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 76px 0; }
  .section-sm { padding: 54px 0; }
  .brand-copy small { display: none; }
  .hero { padding: 80px 0 70px; }
  .hero-grid { gap: 46px; }
  .hero-actions .btn { width: 100%; }
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .section-head { align-items: start; flex-direction: column; margin-bottom: 34px; }
  .grid-2, .grid-3, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .focus-copy, .quote-card, .form-card, .contact-info { padding: 30px; }
  .position-list { grid-template-columns: 1fr; }
  .position-list span { min-height: 68px; }
  .process-step { grid-template-columns: 54px 1fr; gap: 18px; }
  .process-step::before { width: 48px; height: 48px; }
  .monogram, .portrait-card, .portrait-card img { min-height: 360px; }
  .cta-box { grid-template-columns: 1fr; padding: 34px 28px; }
  .cta-box .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
}

/* Requested visual refinements: branded logo in the header and a transparent editorial hero image. */
.hero-visual {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56%;
  overflow: hidden;
  pointer-events: none;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.78) contrast(1.04) brightness(.76);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy-950) 0%, rgba(7,23,38,.91) 13%, rgba(7,23,38,.55) 42%, rgba(7,23,38,.18) 74%, rgba(7,23,38,.34) 100%),
    linear-gradient(0deg, rgba(7,23,38,.72) 0%, rgba(7,23,38,.08) 47%, rgba(7,23,38,.18) 100%);
}
.hero::before { z-index: 1; }
.hero-grid { z-index: 2; }
.hero-panel {
  background: rgba(7,23,38,.72);
  backdrop-filter: blur(10px);
}

@media (max-width: 980px) {
  .hero-visual { width: 74%; opacity: .58; }
}

@media (max-width: 720px) {
  .hero-visual { width: 100%; opacity: .28; }
  .hero-visual img { object-position: center center; }
}

@media (max-width: 760px) {
  .page-hero-visual { inset: 0; opacity: .5; }
  .page-hero::before { background: linear-gradient(90deg, rgba(7,23,38,.98), rgba(7,23,38,.82)); }
}

/* Ensure the large headings in all page banners remain fully opaque and clearly readable. */
.page-hero h1 {
  position: relative;
  z-index: 3;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .42);
}

/* Keep the main homepage hero headline fully visible over the dark banner. */
.hero h1 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .34);
}
.hero h1 span {
  -webkit-text-fill-color: #dfb08e !important;
}

/* Mobile refinement — desktop presentation remains unchanged. */
@media (max-width: 980px) {
  html { scroll-padding-top: 74px; }
  body { overflow-x: hidden; }

  .hero-grid > *,
  .split > *,
  .contact-grid > *,
  .content-layout > *,
  .grid-2 > *,
  .grid-3 > *,
  .focus-band > *,
  .cta-box > *,
  .footer-grid > * { min-width: 0; }

  .nav-links {
    top: 78px;
    bottom: 0;
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 0 24px 50px rgba(0, 0, 0, .28);
  }

  .nav-links a { min-height: 48px; display: flex; align-items: center; }
  .nav-links .nav-cta { justify-content: center; }

  .hero-grid { align-items: start; }
  .hero-grid > div,
  .hero-panel { width: 100%; max-width: none; }

  .page-hero .container,
  .content-layout,
  .prose,
  .sidebar-card { min-width: 0; }

  .prose,
  .prose p,
  .prose li,
  .prose a,
  .sidebar-card,
  .contact-method a,
  .footer-links a { overflow-wrap: anywhere; word-break: normal; }
}

@media (max-width: 720px) {
  :root {
    --radius: 17px;
    --radius-lg: 23px;
  }

  html { scroll-padding-top: 68px; }
  body { line-height: 1.58; }

  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 68px 0; }
  .section-sm { padding: 48px 0; }

  h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.12rem, 10.2vw, 3rem);
    line-height: 1.03;
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
  }
  h2 { font-size: clamp(1.72rem, 7.7vw, 2.35rem); line-height: 1.09; }
  h3 { font-size: 1.16rem; line-height: 1.2; }
  .lead { margin-top: 20px; font-size: 1rem; line-height: 1.58; }
  .intro { margin-top: 16px; font-size: 1rem; }
  .eyebrow { gap: 8px; margin-bottom: 15px; font-size: .72rem; letter-spacing: .12em; }
  .eyebrow::before { width: 22px; }

  .site-header { backdrop-filter: blur(14px); }
  .nav-wrap { min-height: 68px; gap: 12px; }
  .brand { min-width: 0; gap: 10px; }
  .brand-mark { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; }
  .brand-mark img { width: 31px; height: 31px; }
  .brand-copy { min-width: 0; font-size: .94rem; white-space: nowrap; }
  .menu-button { flex: 0 0 auto; width: 44px; height: 44px; }
  .nav-links {
    top: 68px;
    max-height: calc(100dvh - 68px);
    padding: 18px 16px max(26px, env(safe-area-inset-bottom));
  }
  .nav-links a { padding: 12px 14px; font-size: 1rem; }
  .nav-links a.active { background: rgba(255, 255, 255, .07); }
  .nav-cta { min-height: 50px !important; margin-top: 10px; }

  .hero { padding: 66px 0 62px; }
  .hero::before { display: none; }
  .hero-grid { gap: 30px; }
  .hero-visual { width: 100%; opacity: .33; }
  .hero-visual img { object-position: 58% center; }
  .hero-visual::after {
    background:
      linear-gradient(180deg, rgba(7,23,38,.80) 0%, rgba(7,23,38,.84) 38%, rgba(7,23,38,.96) 76%, var(--navy-950) 100%),
      linear-gradient(90deg, rgba(7,23,38,.96), rgba(7,23,38,.34));
  }
  .hero h1 span { margin-top: .14em; }
  .hero-actions { display: grid; gap: 11px; margin-top: 28px; }
  .hero-actions .btn { width: 100%; }
  .btn { min-height: 50px; padding-inline: 19px; }

  .stats { margin-top: 34px; }
  .stat { padding: 16px 0; }
  .stat:first-child { border-top: 1px solid rgba(255,255,255,.1); }
  .stat strong { font-size: 1rem; }
  .stat span { display: block; margin-top: 2px; }

  .hero-panel { border-radius: 19px; backdrop-filter: blur(8px); }
  .hero-panel-top { padding: 22px 21px 18px; }
  .hero-panel-top strong { font-size: 1.12rem; line-height: 1.25; }
  .hero-panel-top span { display: block; margin-top: 5px; line-height: 1.45; }
  .trust-list { padding: 7px 21px 18px; }
  .trust-list li { grid-template-columns: 22px minmax(0, 1fr); gap: 10px; padding: 13px 0; }
  .check { width: 20px; height: 20px; }

  .page-hero { min-height: 0; padding: 58px 0 52px; }
  .page-hero-visual { inset: 0; opacity: .6; }
  .page-hero-visual img { object-position: 62% center; filter: saturate(.78) contrast(1.04) brightness(.82); }
  .page-hero::before {
    background:
      linear-gradient(90deg, rgba(7,23,38,.98) 0%, rgba(7,23,38,.90) 58%, rgba(7,23,38,.70) 100%);
  }
  .page-hero::after { background: linear-gradient(180deg, rgba(7,23,38,.12), rgba(7,23,38,.45)); }
  .page-hero .lead { max-width: 100%; }
  .breadcrumbs { margin-bottom: 20px; font-size: .82rem; }

  .section-head { gap: 16px; }
  .section-head p { font-size: .98rem; }

  .grid-2,
  .grid-3 { gap: 16px; }
  .card { padding: 25px 23px; }
  .card-icon { width: 43px; height: 43px; margin-bottom: 21px; border-radius: 12px; }
  .card p { margin-top: 11px; }
  .card .btn { width: 100%; }

  .focus-band { border-radius: 21px; }
  .focus-copy { padding: 30px 24px; }
  .focus-copy p { margin-top: 16px; }
  .position-list span { min-height: 60px; padding: 16px 22px; border-right: 0; }

  .split { gap: 34px; }
  .process-step { grid-template-columns: 46px minmax(0, 1fr); gap: 15px; padding: 24px 0; }
  .process-step::before { width: 44px; height: 44px; }
  .process-step p { margin-top: 7px; }

  .quote-card { padding: 29px 24px; }
  .quote-card p { font-size: 1.06rem; line-height: 1.62; }
  .quote-card strong { margin-top: 22px; }

  .portrait-card,
  .portrait-card img {
    min-height: 0;
    height: auto;
  }
  .portrait-card { aspect-ratio: 4 / 5; }
  .portrait-card img { width: 100%; height: 100%; }
  .portrait-card figcaption { left: 22px; right: 22px; bottom: 20px; }

  .monogram { min-height: 330px; }
  .monogram-inner b { font-size: 4.25rem; }

  .cta-box { gap: 24px; padding: 29px 24px; }
  .cta-box p { margin-top: 11px; }

  .content-layout { gap: 36px; }
  .prose h2 { margin-top: 44px; font-size: 1.68rem; line-height: 1.14; }
  .prose h3 { margin-top: 28px; }
  .prose p { margin-top: 14px; }
  .prose ul { margin: 16px 0; padding-left: 19px; }
  .prose li { margin: 8px 0; }
  .sidebar-card { padding: 25px 23px; border-radius: 18px; }

  .contact-grid { gap: 22px; }
  .contact-info,
  .form-card { padding: 27px 23px; border-radius: 20px; }
  .contact-info h2,
  .form-card h2 { font-size: 1.72rem; }
  .contact-method { margin-top: 24px; padding-top: 20px; }
  .form-card .intro { margin-top: 13px; }
  .form-grid { gap: 16px; }
  input,
  select,
  textarea { min-height: 48px; padding: 13px 14px; font-size: 16px; }
  textarea { min-height: 132px; }
  .form-note { line-height: 1.5; }

  .site-footer { padding: 51px 0 24px; }
  .footer-grid { gap: 30px; }
  .footer-brand p { margin-top: 15px; }
  .footer-links { gap: 7px; margin-top: 13px; }
  .footer-links a { min-height: 40px; display: flex; align-items: center; }
  .footer-bottom { gap: 8px; margin-top: 35px; padding-top: 20px; }
}

@media (max-width: 390px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  h1,
  .page-hero h1 { font-size: clamp(1.98rem, 10vw, 2.45rem); }
  .brand-copy { font-size: .88rem; }
  .card,
  .focus-copy,
  .quote-card,
  .contact-info,
  .form-card,
  .sidebar-card,
  .cta-box { padding-left: 20px; padding-right: 20px; }
  .hero-panel-top { padding-inline: 19px; }
  .trust-list { padding-inline: 19px; }
}

@media (max-width: 340px) {
  .brand-copy { font-size: .82rem; }
  .brand-mark { width: 36px; height: 36px; }
  .menu-button { width: 42px; height: 42px; }
  h1,
  .page-hero h1 { font-size: 1.85rem; }
  .btn { padding-inline: 15px; font-size: .94rem; }
}

/* Mobile navigation fix: keep the dropdown fully visible below the sticky header. */
@media (max-width: 980px) {
  .site-header {
    overflow: visible;
    isolation: isolate;
  }

  .nav-links {
    position: absolute;
    inset: 100% 0 auto;
    z-index: 1000;
    width: 100%;
    max-height: calc(100dvh - 78px);
  }
}

@media (max-width: 720px) {
  .nav-links {
    top: 100%;
    bottom: auto;
    max-height: calc(100dvh - 68px);
  }
}
