@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap");

:root {
  --navy: #061f33;
  --navy-2: #0b3556;
  --blue: #0f69b4;
  --blue-soft: #e7f2fb;
  --gold: #c9a45c;
  --gold-2: #f2dfaa;
  --ink: #101923;
  --muted: #647386;
  --line: #dce7f1;
  --paper: #ffffff;
  --ice: #f5f9fc;
  --mist: #edf5fb;
  --shadow: 0 26px 70px rgba(6, 31, 51, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Manrope,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

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

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

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(6, 31, 51, 0.06);
}

.site-header.is-solid,
body.inner .site-header {
  position: sticky;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(6, 31, 51, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1240px;
  min-height: 92px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: 82px;
  height: 76px;
  object-fit: contain;
  border-radius: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.88rem;
  font-weight: 900;
}

.site-nav > a,
.dropdown-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  color: currentColor;
  opacity: 0.82;
  border: 0;
  background: transparent;
  padding: 0;
  font-weight: 900;
}

.site-nav a:hover,
.dropdown-button:hover,
.site-nav a[aria-current="page"],
.dropdown.is-active .dropdown-button {
  opacity: 1;
  color: var(--gold);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -24px;
  display: grid;
  width: 312px;
  gap: 6px;
  padding: 16px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
  background: rgba(8, 20, 32, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.is-open .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu a {
  display: grid;
  gap: 2px;
  padding: 12px;
  color: var(--paper);
  border-radius: var(--radius);
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.dropdown-menu small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px !important;
  color: #061f33 !important;
  background: linear-gradient(135deg, #ffe9ad, #c9a45c) !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  opacity: 1 !important;
  box-shadow: 0 16px 30px rgba(201, 164, 92, 0.28);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  color: currentColor;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 84vh;
  padding: 74px 24px 64px;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/property-financing-handshake.jpeg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/client-consultation.jpeg");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.02);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 31, 51, 0.97),
    rgba(6, 31, 51, 0.84) 42%,
    rgba(6, 31, 51, 0.24) 78%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(300px, 0.36fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
.display {
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  overflow-wrap: break-word;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: 4.15rem;
  line-height: 1.04;
  text-wrap: balance;
}

.hero-lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 900;
}

.button.primary {
  color: var(--navy);
  background: var(--gold-2);
  box-shadow: 0 18px 40px rgba(201, 164, 92, 0.22);
}

.button.dark {
  color: var(--paper);
  background: var(--navy);
}

.button.ghost {
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.button.light {
  color: var(--navy);
  background: var(--paper);
  border-color: var(--line);
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.hero-panel .panel-top {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-panel strong {
  display: block;
  font-family: Oswald, Impact, sans-serif;
  color: var(--paper);
  font-size: 2.8rem;
  line-height: 0.9;
}

.hero-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.mini-list {
  display: grid;
  gap: 0;
}

.mini-list span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.9rem;
  font-weight: 800;
}

.mini-list span:last-child {
  border-bottom: 0;
}

.mini-list b {
  color: var(--gold-2);
}

.section {
  padding: clamp(64px, 8vw, 104px) 24px;
}

.section.alt {
  background: var(--ice);
}

.section.dark {
  color: var(--paper);
  background: var(--navy);
}

.container {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head.center {
  display: block;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section h2,
.page-hero h1,
.contact-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: 3.4rem;
  line-height: 1.06;
  text-wrap: balance;
}

.section.dark h2,
.section.dark p,
.section.dark .section-kicker {
  color: var(--paper);
}

.section-kicker,
.section-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.service-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  min-height: 112px;
  border-bottom: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row > * {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.service-row > *:last-child {
  border-right: 0;
}

.service-row h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.16rem;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.service-row h3 a {
  color: var(--blue);
  font-weight: 900;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.proof-strip div {
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

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

.proof-strip strong {
  display: block;
  color: var(--gold-2);
  font-family: Oswald, Impact, sans-serif;
  font-size: 2.45rem;
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  font-weight: 800;
}

.proof-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 0.78rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(320px, 0.52fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.editorial-image {
  min-height: 540px;
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, rgba(6, 31, 51, 0.08), rgba(6, 31, 51, 0.18)),
    url("../images/consultation-meeting.jpeg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.quote-panel {
  padding: clamp(28px, 4vw, 48px);
  color: var(--paper);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: var(--radius);
}

.quote-panel blockquote {
  margin: 0;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 1.08;
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 750;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card,
.review-card,
.info-card,
.contact-form,
.document-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.process-card,
.review-card,
.info-card,
.document-card {
  padding: 28px;
}

.process-card b,
.number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--navy);
  background: var(--gold-2);
  border-radius: var(--radius);
  font-weight: 900;
}

.process-card h3,
.review-card h3,
.info-card h3,
.document-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.18rem;
}

.process-card p,
.review-card p,
.info-card p,
.document-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(34px, 5vw, 58px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(6, 31, 51, 0.95), rgba(11, 53, 86, 0.92)),
    url("../images/property-financing-handshake.jpeg") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 820px;
  color: var(--paper);
  font-size: 3rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  position: relative;
  min-height: 390px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy);
  padding: 112px 24px 58px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--paper);
  max-width: 900px;
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  font-weight: 750;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
  gap: 36px;
  align-items: start;
}

.content-flow {
  display: grid;
  gap: 22px;
}

.content-flow h2 {
  font-size: 3.15rem;
}

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

.check-list li {
  padding-left: 30px;
  color: var(--muted);
  font-weight: 750;
  background: linear-gradient(var(--gold), var(--gold)) 0 0.78em / 16px 2px
    no-repeat;
}

.side-panel {
  position: sticky;
  top: 110px;
  padding: 26px;
  color: var(--paper);
  background: var(--navy);
  border-radius: var(--radius);
}

.side-panel h3,
.side-panel p {
  color: var(--paper);
}

.side-panel p {
  opacity: 0.72;
}

.review-grid,
.info-grid,
.document-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.deep-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-item span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--navy);
  background: var(--gold-2);
  border-radius: var(--radius);
  font-family: Oswald, Impact, sans-serif;
  font-size: 1.35rem;
}

.feature-item h3,
.faq-item h3,
.deliverable h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.feature-item p,
.faq-item p,
.deliverable p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.deliverable {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.faq-item {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.scenario-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.scenario-band article {
  padding: 30px;
  background: var(--paper);
}

.scenario-band h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.scenario-band p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  align-items: stretch;
}

.timeline-item .number {
  margin: 0;
  width: 62px;
  height: 62px;
  font-family: Oswald, Impact, sans-serif;
  font-size: 1.7rem;
}

.timeline-body {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline-body h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.timeline-body p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(320px, 0.58fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.contact-copy h1 {
  margin-bottom: 20px;
}

.contact-copy p,
.legal p,
.legal li {
  color: var(--muted);
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-list div {
  padding: 20px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-list strong {
  display: block;
  color: var(--navy);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 900;
}

.social-links a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline-offset: 3px;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(15, 105, 180, 0.32);
  outline-offset: 3px;
}

.site-footer {
  padding: 64px 24px 30px;
  color: var(--paper);
  background: #041827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 42px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.site-footer .brand-logo {
  width: 116px;
  height: 108px;
  margin-bottom: 14px;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.85rem;
}

@media (max-width: 1180px) {
  .nav-shell {
    max-width: 100%;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.84rem;
  }

  .nav-cta {
    padding: 0 14px !important;
  }

  .brand-logo {
    width: 76px;
    height: 70px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: 4rem;
  }

  .hero-panel {
    align-self: center;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--navy);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: calc(100svh - 110px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .dropdown-button,
  .nav-cta {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 12px;
  }

  .dropdown-menu {
    position: static;
    width: auto;
    visibility: visible;
    opacity: 1;
    transform: none;
    display: none;
    margin: 0 0 8px;
    background: var(--navy);
  }

  .dropdown.is-open .dropdown-menu {
    display: grid;
  }

  .hero-grid,
  .section-head,
  .split,
  .deep-grid,
  .service-detail,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: 3.75rem;
  }

  .hero-lead {
    max-width: 640px;
  }

  .hero-panel {
    max-width: 460px;
  }

  .service-row,
  .proof-strip,
  .process-grid,
  .review-grid,
  .info-grid,
  .document-grid,
  .deliverable-grid,
  .faq-grid,
  .scenario-band {
    grid-template-columns: 1fr;
  }

  .service-row > *,
  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .service-row > *:last-child,
  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .cta-band,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .side-panel {
    position: static;
  }

  .page-hero {
    min-height: 360px;
  }

  .editorial-image {
    min-height: 380px;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    min-height: 76px;
    padding: 0 18px;
  }

  .brand-logo {
    width: 68px;
    height: 64px;
  }

  .hero,
  .page-hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 2.45rem;
    line-height: 0.98;
  }

  .hero-panel {
    display: none;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 0.95rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .section h2,
  .page-hero h1,
  .contact-copy h1 {
    font-size: 2.45rem;
    line-height: 1;
  }

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

  .page-hero p {
    font-size: 0.98rem;
  }

  .page-hero {
    min-height: 320px;
    padding-top: 104px;
    padding-bottom: 42px;
  }

  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .eyebrow::before {
    width: 28px;
  }

  .quote-panel blockquote,
  .content-flow h2,
  .cta-band h2 {
    font-size: 2.15rem;
    line-height: 1.03;
  }

  .button,
  .hero-actions,
  .button-row {
    width: 100%;
  }

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

  .timeline-item .number {
    width: 52px;
    height: 52px;
  }
}
