:root {
  --navy: #016fcf;
  --navy-soft: #005bad;
  --charcoal: #0c3d68;
  --white: #ffffff;
  --silver: #d9ebfb;
  --silver-soft: #b9d9f4;
  --surface: #f3f9ff;
  --surface-deep: #e2f0fc;
  --gold: #89c6ff;
  --gold-soft: rgba(1, 111, 207, 0.12);
  --line: rgba(1, 111, 207, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --text: #12395f;
  --muted: #4b6d8d;
  --shadow: 0 24px 64px rgba(1, 84, 157, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-xxl: 96px;
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    linear-gradient(180deg, rgba(1, 111, 207, 0.02) 0%, rgba(1, 111, 207, 0.05) 100%),
    var(--white);
  line-height: 1.65;
}

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

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

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

.skip-link {
  position: absolute;
  left: 50%;
  top: -48px;
  transform: translateX(-50%);
  padding: 12px 18px;
  background: var(--navy);
  color: var(--white);
  z-index: 999;
}

.skip-link:focus {
  top: 12px;
}

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

.topbar {
  background:
    linear-gradient(90deg, rgba(1, 111, 207, 0.98), rgba(0, 91, 173, 0.96));
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line-light);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 56px;
  padding: 10px 0;
}

.topbar p,
.topbar a,
.topbar span {
  margin: 0;
  font-size: 0.84rem;
}

.topbar-note {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-sm);
}

.topbar-meta a,
.topbar-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.topbar-meta a:hover,
.topbar-meta a:focus-visible {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.topbar-meta strong {
  color: var(--silver);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(1, 111, 207, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-light);
}

.header-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-md);
  min-height: 82px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 10px 16px 10px 0;
}

.brand img {
  width: clamp(176px, 18vw, 232px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.92);
  min-width: 0;
}

.site-nav > a,
.nav-dropdown-toggle {
  position: relative;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 10px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav > a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown-toggle:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  gap: 10px;
  min-width: 260px;
  padding: 18px;
  background: rgba(16, 26, 48, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  color: rgba(255, 255, 255, 0.88);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--white);
  color: var(--navy);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.button-gold {
  background: var(--white);
  color: var(--navy);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.button.is-loading {
  opacity: 0.78;
  pointer-events: none;
}

.button-full {
  width: 100%;
  min-height: 56px;
  padding-inline: 28px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 84, 157, 0.94) 0%, rgba(1, 111, 207, 0.8) 48%, rgba(0, 91, 173, 0.82) 100%),
    linear-gradient(180deg, rgba(12, 61, 104, 0.08), rgba(12, 61, 104, 0.45)),
    url("assets/ontario-home-hero.webp") center/cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.5;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 460px);
  gap: var(--space-lg);
  align-items: end;
}

.hero-copy {
  padding: var(--space-lg) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.12;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

h3 {
  font-size: 1.1rem;
}

p {
  max-width: 70ch;
}

.hero-text {
  margin: var(--space-md) 0 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.hero-points article,
.hero-form-card,
.service-card,
.service-detail,
.reasons-grid article,
.process-grid article,
.trust-panel,
.contact-panel,
.contact-cards a,
.about-highlights article,
.profile-card,
.market-list span,
.section-subhead {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.hero-points article {
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-points span {
  display: block;
  margin-bottom: 10px;
  color: var(--silver);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.hero-form-card {
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  color: var(--text);
}

.hero-form-card .button-full {
  min-width: 100%;
}

.hero-form-card h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
}

.hero-form-card p:not(.eyebrow),
.section-heading p,
.section-copy p,
.contact-copy p,
.contact-panel p,
.service-detail p,
.service-card p,
.reasons-grid p,
.process-grid p,
.trust-panel p,
.footer-bottom p {
  color: var(--muted);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 500;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(11, 19, 36, 0.14);
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(200, 155, 60, 0.26);
  outline-offset: 2px;
  border-color: var(--gold);
}

.lead-form input[aria-invalid="true"],
.lead-form select[aria-invalid="true"],
.lead-form textarea[aria-invalid="true"] {
  border-color: #c44b4b;
  background: #fff7f7;
}

.lead-form select {
  padding-right: 48px;
}

.form-note,
.form-response {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
}

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

.form-response {
  color: var(--navy);
  font-weight: 600;
  min-height: 1.5em;
}

.form-response.is-error {
  color: #b63f3f;
}

.form-response.is-success {
  color: #0f6b45;
}

.compliance-strip {
  border-bottom: 1px solid var(--line);
  background: #f7f8fb;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-sm);
  padding: 18px 0;
}

.compliance-grid div {
  display: grid;
  gap: 4px;
}

.compliance-grid span {
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: var(--space-xxl) 0;
}

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

.split-layout,
.trust-layout,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xl);
  align-items: start;
}

.trust-layout > :only-child {
  grid-column: 1 / -1;
}

.section-heading {
  display: grid;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.section-subhead {
  display: grid;
  gap: 8px;
  margin: 0 0 var(--space-md);
  padding: 20px 22px;
  background: rgba(11, 19, 36, 0.03);
}

.section-subhead h3 {
  font-size: 1rem;
}

.section-subhead p {
  margin: 0;
  color: var(--muted);
}

.section-heading.light p,
.section-heading.light h2,
.section-heading.light {
  color: var(--white);
}

.section-heading.left {
  margin-bottom: 0;
}

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

.about-highlights,
.reasons-grid,
.process-grid,
.partner-grid,
.market-list {
  display: grid;
  gap: var(--space-sm);
}

.about-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: var(--space-lg);
}

.about-highlights article,
.profile-card {
  padding: var(--space-md);
  background: var(--white);
}

.profile-panel {
  display: grid;
  gap: var(--space-md);
}

.profile-photo {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-sm);
}

.services-grid-secondary {
  margin-top: var(--space-md);
}

.services-grid-secondary .service-card {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(1, 111, 207, 0.1);
}

.image-band-section {
  padding-top: 0;
}

.image-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
}

.image-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  display: flex;
  align-items: end;
  padding: 24px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.image-tile::before {
  content: "";
  position: absolute;
  inset: 0;
}

.image-tile > div {
  position: relative;
  z-index: 1;
}

.image-tile-residential::before {
  background:
    linear-gradient(180deg, rgba(11, 19, 36, 0.06), rgba(11, 19, 36, 0.82)),
    url("assets/ontario-home-hero.jpg") center/cover no-repeat;
}

.image-tile-development::before {
  background:
    linear-gradient(180deg, rgba(1, 84, 157, 0.12), rgba(1, 84, 157, 0.76)),
    url("images/low-rise-wood-frame.webp") center/cover no-repeat;
}

.image-tile-capital::before {
  background:
    linear-gradient(180deg, rgba(1, 84, 157, 0.16), rgba(1, 84, 157, 0.78)),
    url("images/subdivision-development.webp") center/cover no-repeat;
}

.service-card {
  display: grid;
  gap: var(--space-sm);
  padding: 24px;
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(1, 111, 207, 0.45);
  box-shadow: 0 16px 36px rgba(1, 84, 157, 0.1);
}

.service-card-priority {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(244, 250, 255, 1));
}

.service-card-priority::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 16px 0 0 16px;
  background: linear-gradient(180deg, var(--navy), rgba(1, 111, 207, 0.35));
}

.fit-line {
  margin: 0;
  padding-top: var(--space-xs);
  border-top: 1px solid var(--line);
}

.service-card a,
.service-detail a,
.contact-cards a,
.site-footer a {
  color: var(--navy);
}

.service-card a {
  margin-top: auto;
  font-family: "Montserrat", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-stack {
  display: grid;
  gap: var(--space-sm);
}

.service-detail {
  padding: clamp(24px, 3vw, 32px);
  background: var(--white);
}

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

.reasons-grid article,
.process-grid article,
.trust-panel,
.contact-panel {
  padding: 24px;
}

.reasons-grid article {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.reasons-grid p {
  color: rgba(255, 255, 255, 0.72);
}

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

.process-grid article {
  background: var(--white);
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
}

.partner-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: var(--space-md);
}

.partner-card {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.partner-card img {
  width: min(150px, 100%);
  max-height: 38px;
  object-fit: contain;
}

.partner-card-equitable {
  background: #111111;
  border-color: rgba(255, 255, 255, 0.16);
}

.partner-card-copy span {
  color: var(--charcoal);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.market-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.contact-cards a {
  display: grid;
  gap: 4px;
  padding: 20px;
  background: var(--white);
  align-content: start;
  min-height: 100%;
  overflow-wrap: anywhere;
}

.contact-card-email {
  font-size: 0.84rem;
  white-space: nowrap;
}

.contact-cards span {
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel {
  background: var(--navy);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-panel .button-primary {
  background: var(--white);
  color: var(--navy);
}

.contact-panel p,
.contact-panel h3 {
  color: var(--white);
}

.contact-panel .form-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: var(--space-xl) 0 var(--space-lg);
  background: #00529a;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.footer-logo {
  width: min(220px, 100%);
  margin-bottom: 16px;
}

.footer-bottom {
  width: 100%;
  padding-top: var(--space-lg);
}

.footer-bottom-inner {
  width: min(100% - 32px, 1440px);
  margin: 0 auto;
}

.footer-bottom p {
  margin: 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .header-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }

  .hero-grid,
  .split-layout,
  .trust-layout,
  .contact-grid,
  .service-area-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .about-highlights,
  .partner-grid,
  .image-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .topbar-inner,
  .topbar-meta {
    width: 100%;
  }

  .topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .topbar-note {
    width: 100%;
    text-align: center;
  }

  .topbar-meta {
    justify-content: center;
  }

  .topbar-meta a {
    flex: 1 1 100%;
    justify-content: center;
  }

  .brand {
    width: 100%;
    padding-right: 12px;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 0 0 10px;
  }

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

  .header-actions {
    display: none;
  }

  .nav-dropdown,
  .nav-dropdown-menu {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.04);
  }

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

  .hero-points,
  .compliance-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card-email {
    font-size: 0.9rem;
  }
}

@media (max-width: 720px) {
  .section {
    padding: var(--space-xl) 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .lead-form,
  .services-grid,
  .image-band,
  .reasons-grid,
  .process-grid,
  .about-highlights,
  .partner-grid,
  .market-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    min-height: 400px;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero {
    padding: var(--space-lg) 0;
  }

  .hero-copy {
    padding-top: 0;
  }

  .header-shell {
    gap: 12px;
    min-height: 78px;
  }

  .brand {
    padding: 8px 8px 8px 0;
  }

  .brand img {
    width: min(170px, 100%);
  }

  .button {
    padding: 0 16px;
    font-size: 0.82rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
