
:root {
  --navy: #0A2F7C;
  --sky: #2A95D3;
  --card: #F9F9F9;
  --cream: #F7F4EC;
  --ink: #111827;
  --muted: #5b6576;
  --line: rgba(10, 47, 124, 0.12);
  --shadow: 0 24px 50px rgba(10, 47, 124, 0.09);
  --radius: 0px;
  --container: 1280px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: 'DM Sans', Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--sky);
}
.page-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 244, 236, 0.9);
  border-bottom: 1px solid rgba(10, 47, 124, 0.08);
}
.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img { width: 170px; height: auto; }
.brand-text {
  font-family: 'Hanken Grotesk', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}
.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
}
.menu a {
  position: relative;
  color: #26344d;
}
.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 2px;
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.menu a:hover::after,
.menu a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.phone-chip {
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--sky);
  color: white;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 12px 24px rgba(42, 149, 211, 0.22);
}
.button:hover { transform: translateY(-1px); box-shadow: 0 16px 30px rgba(42, 149, 211, 0.26); }
.button.secondary { background: transparent; color: var(--navy); border: 1px solid rgba(10,47,124,.18); box-shadow: none; }
.hero {
  position: relative;
  min-height: 92svh;
  color: white;
  background: linear-gradient(to bottom, rgba(10, 47, 124, 0.18), rgba(10, 47, 124, 0.35)), url('../images/hero-main.jpg') center/cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,47,124,.18) 0%, rgba(10,47,124,.05) 34%, rgba(10,47,124,.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(92svh - 82px);
  padding: 110px 0 60px;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  align-items: end;
  gap: 40px;
}
.hero h1, .page-hero h1, h2, h3, h4 {
  font-family: 'Hanken Grotesk', Arial, sans-serif;
  line-height: 0.95;
  margin: 0;
}
.hero h1 {
  font-size: clamp(58px, 10vw, 124px);
  max-width: 8ch;
  text-wrap: balance;
}
.hero-copy {
  justify-self: end;
  width: min(460px, 100%);
  padding-bottom: 18px;
}
.hero-copy p { margin: 0 0 14px; font-size: clamp(18px, 2vw, 26px); max-width: 18ch; }
.hero-copy .lead-highlight { color: #B6E9FF; font-weight: 700; }
.section {
  padding: 96px 0;
}
.section-tight { padding: 72px 0; }
.section-dark {
  background: linear-gradient(180deg, #08286A 0%, #071F52 100%);
  color: white;
}
.section-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 48px;
}
.section-heading h2 {
  font-size: clamp(38px, 5vw, 64px);
  text-wrap: balance;
}
.section-heading p {
  margin: 18px auto 0;
  color: var(--muted);
  max-width: 760px;
}
.section-dark .section-heading p,
.section-dark .muted,
.section-dark .faq-answer,
.section-dark .stat-label,
.section-dark .meta,
.section-dark .contact-list,
.section-dark .body-copy { color: rgba(255,255,255,0.8); }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: white;
  border: 1px solid rgba(10, 47, 124, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(42, 149, 211, 0.12);
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 22px;
}
.card h3 { font-size: 28px; margin-bottom: 12px; }
.card p { margin: 0; color: var(--muted); }
.center-action { text-align: center; margin-top: 34px; }
.split-dark {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 38px;
  align-items: stretch;
}
.panel-photo {
  min-height: 560px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}
.panel-content {
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.selection-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
}
.selection-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 16px;
  color: white;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
}
.selection-item.active { background: rgba(42,149,211,0.22); border-color: rgba(127,209,255,0.45); }
.selection-item strong { font-family: 'Hanken Grotesk', Arial, sans-serif; font-size: 26px; }
.selection-item span { color: rgba(255,255,255,0.75); font-size: 14px; }
.stats-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
}
.stats-text h2 { font-size: clamp(38px, 5vw, 60px); margin-bottom: 20px; }
.stats-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.stat-box {
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
}
.stat-number {
  display: block;
  font-family: 'Hanken Grotesk', Arial, sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.team-card {
  background: rgba(255,255,255,0.06);
  border-radius: 26px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.08);
}
.team-photo {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
}
.gallery-slider { position: relative; }
.carousel-window { overflow: hidden; border-radius: 24px; }
.carousel-track {
  display: flex;
  transition: transform .55s ease;
  will-change: transform;
}
.slide {
  min-width: calc((100% - 48px) / 3);
  margin-right: 24px;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.slide figure { margin: 0; }
.slide img { aspect-ratio: 16/10; object-fit: cover; }
.slide figcaption { padding: 20px 20px 24px; }
.slide h3 { font-size: 24px; margin-bottom: 8px; }
.slide p { margin: 0; color: var(--muted); }
.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}
.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow);
  cursor: pointer;
}
.testimonial {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial blockquote {
  margin: 0 0 28px;
  font-family: 'Hanken Grotesk', Arial, sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
}
.testimonial .person {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.person-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(127,209,255,0.45);
}
.person-name { font-weight: 700; }
.faq-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: start;
}
.faq-intro h2 { font-size: clamp(36px, 4vw, 56px); margin-bottom: 20px; }
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
  font-family: 'Hanken Grotesk', Arial, sans-serif;
  font-size: 28px;
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding: 0 0 24px;
  color: var(--muted);
}
.faq-item.open .faq-answer { display: block; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 34px;
  align-items: stretch;
}
.photo-card,
.form-card {
  border-radius: 26px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}
.form-card {
  padding: 34px;
}
.form-card h2 { font-size: clamp(34px, 4vw, 54px); margin-bottom: 8px; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field.full { grid-column: 1 / -1; }
label { font-size: 14px; font-weight: 700; color: var(--navy); }
input, textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(10,47,124,.12);
  padding: 16px 18px;
  background: #fffdf8;
  color: var(--ink);
}
textarea { min-height: 165px; resize: vertical; }
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 14px;
}
.checkbox-row input { width: 18px; height: 18px; margin-top: 2px; }
.form-note { margin-top: 14px; color: var(--muted); font-size: 14px; }
.footer {
  background: #06193f;
  color: white;
  padding: 34px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr .7fr .7fr;
  gap: 28px;
  align-items: start;
}
.footer p, .footer li, .footer address { color: rgba(255,255,255,0.78); margin: 0; font-style: normal; }
.footer h3 { font-size: 20px; margin: 0 0 14px; }
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 28px;
  padding-top: 18px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}
.page-hero {
  padding: 100px 0 70px;
  background: linear-gradient(180deg, rgba(10,47,124,.95) 0%, rgba(10,47,124,.86) 100%);
  color: white;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.page-hero h1 { font-size: clamp(44px, 6vw, 78px); margin-bottom: 14px; }
.page-hero p { max-width: 50ch; color: rgba(255,255,255,0.82); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.feature-box {
  background: white;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.feature-box h3 { font-size: 30px; margin-bottom: 12px; }
.metric-band {
  border-top: 1px solid rgba(10,47,124,.08);
  border-bottom: 1px solid rgba(10,47,124,.08);
  background: rgba(255,255,255,.35);
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.metric-grid .metric-item {
  padding: 34px 28px;
  border-right: 1px solid rgba(10,47,124,.08);
}
.metric-grid .metric-item:last-child { border-right: 0; }
.metric-item strong { display: block; font-family: 'Hanken Grotesk', Arial, sans-serif; font-size: clamp(34px, 4vw, 52px); line-height: 1; margin-bottom: 8px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.service-card h2 { font-size: 34px; margin-bottom: 12px; }
.service-card p { margin: 0 0 18px; color: var(--muted); }
.image-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.image-grid-3 article,
.gallery-page-grid article {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-grid-3 img,
.gallery-page-grid img { aspect-ratio: 16/11; object-fit: cover; }
.image-grid-3 .copy,
.gallery-page-grid .copy { padding: 22px; }
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.before-after {
  background: white;
  border-radius: 26px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.compare-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.compare-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.compare-card .after-layer {
  clip-path: inset(0 50% 0 0);
}
.compare-card input[type="range"] {
  position: absolute;
  inset: auto 18px 18px 18px;
  width: calc(100% - 36px);
  z-index: 2;
  appearance: none;
  background: transparent;
  pointer-events: auto;
}
.compare-card input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: rgba(255,255,255,0.65);
  border-radius: 999px;
}
.compare-card input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--sky);
  margin-top: -9px;
}
.compare-labels {
  position: absolute;
  inset: 18px 18px auto 18px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
.compare-labels span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(6,25,63,.62);
  color: white;
  font-size: 13px;
  font-weight: 700;
}
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; color: var(--muted); }
.spacer-16 { height: 16px; }
@media (max-width: 1100px) {
  .cards,
  .metric-grid,
  .gallery-page-grid,
  .image-grid-3,
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-inner,
  .split-dark,
  .stats-layout,
  .faq-grid,
  .contact-grid,
  .page-hero-grid,
  .feature-grid,
  .services-grid { grid-template-columns: 1fr; }
  .slide { min-width: calc((100% - 24px) / 2); }
}
@media (max-width: 820px) {
  .navbar { flex-wrap: wrap; padding: 16px 0; }
  .menu { order: 3; width: 100%; overflow: auto; gap: 20px; padding-bottom: 6px; }
  .hero { min-height: auto; }
  .hero-inner { min-height: auto; padding: 96px 0 56px; }
  .hero-copy { justify-self: start; }
  .cards,
  .metric-grid,
  .gallery-page-grid,
  .image-grid-3,
  .services-grid,
  .feature-grid,
  .footer-grid,
  .stats-columns,
  .field-grid { grid-template-columns: 1fr; }
  .slide { min-width: 100%; margin-right: 16px; }
  .faq-question { font-size: 22px; }
  .section { padding: 72px 0; }
  .container { width: min(var(--container), calc(100% - 28px)); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

body { background: #f3eee4; }
.page-header { background: rgba(243, 238, 228, 0.94); }
.hero { background: linear-gradient(to bottom, rgba(10, 47, 124, 0.06), rgba(10, 47, 124, 0.28)), url('../images/hero-main.jpg') center/cover no-repeat; }
.card, .photo-card, .form-card, .service-card, .feature-box, .slide, .before-after, .team-card, .panel-photo, .selection-item, .stat-box, .carousel-window, .team-photo, .person-avatar, .carousel-btn, .button, input, textarea { border-radius: 0 !important; }
.card, .photo-card, .form-card, .service-card, .feature-box, .slide, .before-after, .team-card { box-shadow: none; }
.card, .service-card, .feature-box, .before-after, .form-card, .slide { border: 1px solid rgba(10,47,124,.08); }
.button { padding: 14px 24px; }
.hero-inner { align-items: end; }
.hero-copy { margin-bottom: 48px; }
.hero h1 { max-width: none; }
.section-dark { background: #171317; }
.footer { background: #171317; }
.selection-item.active { background: rgba(42,149,211,.15); }
.slide figcaption { background: #fff; }
.page-hero { background: linear-gradient(180deg, rgba(23,19,23,.96) 0%, rgba(23,19,23,.88) 100%); }


/* v3 stricter figma matching */
html, body { background: #f4efe5; }
.page-header {
  position: relative;
  top: auto;
  backdrop-filter: none;
  background: #ffffff;
  border-bottom: 1px solid #ded8ca;
}
.navbar {
  min-height: 142px;
  display: grid;
  grid-template-columns: 180px 1fr 220px;
  align-items: center;
  gap: 20px;
}
.brand { display: block; }
.page-header .brand img { width: 150px; height: auto; }
.footer .brand img { width: 150px; height: auto; }
.menu {
  justify-content: center;
  gap: 42px;
  font-size: 17px;
}
.menu a { color: #25314b; }
.menu a::after {
  bottom: -12px;
  background: #2A95D3;
}
.nav-actions {
  justify-content: flex-end;
}
.nav-actions .button {
  min-width: 170px;
  height: 58px;
  padding: 0 28px;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 16px;
}
.hero {
  min-height: 720px;
  background-image: linear-gradient(180deg, rgba(6,18,48,0.04) 0%, rgba(6,18,48,0.12) 24%, rgba(6,18,48,0.46) 100%), url('../images/hero-main.jpg');
  background-position: center center;
  background-size: cover;
}
.hero::after { background: linear-gradient(180deg, rgba(6,18,48,.04) 0%, rgba(6,18,48,.1) 20%, rgba(6,18,48,.48) 100%); }
.hero-inner {
  min-height: 720px;
  padding: 60px 0 52px;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
}
.hero h1 {
  font-size: 116px;
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 760px;
}
.hero-copy {
  width: 100%;
  max-width: 430px;
  justify-self: end;
  align-self: start;
  padding-top: 72px;
  margin-bottom: 0;
}
.hero-copy p {
  font-size: 22px;
  line-height: 1.28;
  max-width: 320px;
}
.hero-copy .button {
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 16px 26px;
}
.section {
  padding: 92px 0;
}
.section-heading {
  max-width: 920px;
  margin-bottom: 56px;
}
.section-heading h2 {
  font-size: 76px;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.section-heading p { font-size: 18px; line-height: 1.65; }
.eyebrow { color: #353c48; }
.cards {
  gap: 34px;
}
.card {
  padding: 32px 34px 36px;
  min-height: 340px;
  background: transparent;
  border: 1px solid #e0d8c8;
}
.card-icon {
  width: 68px;
  height: 68px;
  background: transparent;
  color: #b9a57c;
  border: 2px solid #cbb88f;
  font-size: 18px;
}
.card h3 {
  font-size: 28px;
  line-height: 1.1;
  max-width: 220px;
}
.card p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 240px;
}
.center-action .button {
  background: #161215;
  border-radius: 0 !important;
  box-shadow: none !important;
  min-width: 176px;
  height: 64px;
}
.section-dark {
  background: #171215;
}
.split-dark {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.panel-photo {
  min-height: 500px;
  border: 0;
}
.panel-content {
  padding: 58px 64px;
}
.selection-item {
  padding: 10px 0;
  border: 0;
  background: transparent;
}
.selection-item strong { font-size: 48px; line-height: 1; }
.selection-item span { display: none; }
.selection-item.active { background: transparent; }
.stats-layout {
  grid-template-columns: .92fr 1.08fr;
  gap: 50px;
}
.stats-text h2 {
  font-size: 74px;
  line-height: 0.95;
  max-width: 400px;
}
.stats-columns {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}
.stat-box {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  padding: 22px 0 0;
}
.stat-number {
  font-size: 60px;
}
.team-card {
  border: 0;
  background: transparent;
  padding: 0;
}
.team-photo {
  margin-bottom: 0;
}
.gallery-slider .slide {
  background: transparent;
  border: 0;
}
.slide img {
  aspect-ratio: 1 / 1.05;
}
.slide figcaption {
  padding: 12px 0 0;
  background: transparent;
}
.slide h3 { color: #fff; font-size: 18px; }
.slide p { color: rgba(255,255,255,.72); font-size: 14px; }
.carousel-controls { padding-top: 10px; border-top: 1px solid rgba(255,255,255,.12); }
.carousel-btn {
  background: transparent;
  color: #fff;
  border: 0;
  width: 40px;
  height: 40px;
}
.testimonial blockquote {
  font-size: 54px;
  max-width: 1180px;
}
.faq-grid {
  grid-template-columns: .85fr 1.15fr;
  gap: 68px;
}
.faq-intro h2 {
  font-size: 70px;
  line-height: 0.95;
  max-width: 360px;
}
.faq-intro p:last-child { max-width: 360px; }
.faq-question {
  font-size: 30px;
  padding: 26px 0;
}
.contact-grid {
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.photo-card, .form-card {
  background: transparent;
  border: 0;
}
.form-card {
  padding: 42px 48px;
}
.form-card h2 {
  font-size: 64px;
  line-height: 0.95;
  margin-bottom: 18px;
}
.field-grid { gap: 18px; }
input, textarea {
  background: transparent;
  border: 1px solid #e2dac8;
  padding: 16px 18px;
}
.footer {
  background: #001f63;
  padding: 56px 0 24px;
}
.footer-grid {
  grid-template-columns: 1.4fr .9fr .75fr .85fr;
  gap: 56px;
}
.footer p, .footer li, .footer address {
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.65;
}
.footer h3 { font-size: 28px; margin-bottom: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); }
@media (max-width: 1100px) {
  .navbar { grid-template-columns: 1fr; min-height: auto; padding: 24px 0; }
  .nav-actions { justify-content: center; }
  .page-header .brand { text-align: center; }
  .menu { justify-content: center; flex-wrap: wrap; }
  .hero-inner, .split-dark, .stats-layout, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .panel-content { padding: 40px 0 0; }
}

.card-icon { border-radius: 0 !important; }
.page-header .brand img { width: 120px; margin: 12px 0; }
.footer .brand img { width: 120px; margin-bottom: 18px; }
.navbar { min-height: 132px; }
.contact-plain { background: #f4efe5; padding: 88px 0 110px; }
.contact-plain-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; align-items: start; }
.contact-copy h1 { font-family: 'Hanken Grotesk', Arial, sans-serif; font-size: 78px; line-height: .95; letter-spacing: -0.04em; margin: 0 0 24px; }
.contact-copy p { color: #7a7f88; max-width: 430px; }
.contact-copy ul { list-style: none; padding: 0; margin: 36px 0 0; display: grid; gap: 16px; color: #616670; }
.contact-copy li { font-size: 18px; }
.contact-form-clean label { font-size: 16px; }
.contact-form-clean input, .contact-form-clean textarea { background: rgba(255,255,255,0.15); border: 1px solid #e0d8c8; }
.contact-form-clean .button { background: #161215; box-shadow: none !important; border-radius: 0 !important; min-width: 185px; height: 56px; }
.compare-card .handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255,255,255,0.95);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 1px rgba(6,18,48,0.15);
}
.compare-card .handle-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #2A95D3;
  transform: translate(-50%, -50%);
}
.compare-card input[type="range"] { opacity: 0; inset: 0; width: 100%; height: 100%; }
.compare-card input[type="range"]::-webkit-slider-runnable-track { background: transparent; }
.compare-card input[type="range"]::-webkit-slider-thumb { opacity: 0; }
@media (max-width: 1100px) {
  .contact-plain-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-copy h1 { font-size: 56px; }
}

.image-grid-3 article, .gallery-page-grid article, .image-grid-3 img, .gallery-page-grid img, .slide img, .slide, .image-grid-3 .copy, .gallery-page-grid .copy { border-radius: 0 !important; }
.page-header .brand img { width: 116px; }
.footer .brand img { width: 116px; }


/* header update matching provided reference */
body.home .page-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 80;
  background: transparent;
  border-bottom: 0;
}
body.home .page-header .navbar {
  min-height: 88px;
  grid-template-columns: max-content 1fr max-content;
  gap: 34px;
  padding-top: 4px;
}
body.home .page-header .brand img {
  width: 158px;
  filter: brightness(0) invert(1);
}
body.home .page-header .menu {
  gap: 32px;
  font-size: 14px;
}
body.home .page-header .menu a {
  color: rgba(255,255,255,.95);
  font-weight: 500;
}
body.home .page-header .menu a::after {
  background: rgba(255,255,255,.9);
  bottom: -10px;
}
body.home .page-header .nav-actions {
  gap: 22px;
}
.phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
}
.phone-chip svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
body.home .phone-chip {
  color: rgba(255,255,255,.95);
}
body.home .nav-actions .button {
  min-width: 116px;
  height: 42px;
  padding: 0 18px;
  font-size: 13px;
  letter-spacing: .08em;
  border-radius: 0 !important;
  background: #2A95D3;
}
body.home .hero {
  min-height: 100svh;
  background-image: linear-gradient(180deg, rgba(8,25,62,0.12) 0%, rgba(8,25,62,0.06) 26%, rgba(8,25,62,0.28) 100%), url('../images/hero-main.jpg');
}
body.home .hero::after {
  background: linear-gradient(180deg, rgba(8,25,62,.10) 0%, rgba(8,25,62,.04) 26%, rgba(8,25,62,.26) 100%);
}
body.home .hero-inner {
  min-height: 100svh;
  padding-top: 128px;
}
body.home .menu a.active::after,
body.home .menu a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 1100px) {
  body.home .page-header .navbar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 18px 0 10px;
  }
  body.home .page-header .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 22px;
  }
  body.home .page-header .nav-actions {
    gap: 14px;
  }
  body.home .hero-inner {
    padding-top: 190px;
  }
}

@media (max-width: 767px) {
  body.home .phone-chip {
    display: none;
  }
  body.home .page-header .navbar {
    padding-top: 16px;
  }
  body.home .page-header .brand img {
    width: 132px;
  }
  body.home .page-header .menu {
    font-size: 13px;
    gap: 12px 16px;
  }
  body.home .nav-actions .button {
    min-width: 108px;
    height: 40px;
  }
  body.home .hero-inner {
    padding-top: 210px;
  }
}


/* unified fixed header and centered home hero */
:root {
  --header-height: 108px;
}
body {
  padding-top: var(--header-height);
}
body.home {
  padding-top: 0;
}
.page-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(10,47,124,.08);
}
.page-header .navbar {
  min-height: var(--header-height);
  grid-template-columns: 180px 1fr 290px;
  gap: 24px;
  align-items: center;
}
.page-header .brand img {
  width: 112px;
  height: auto;
  filter: none;
}
.page-header .menu {
  justify-content: center;
  gap: 42px;
  font-size: 18px;
}
.page-header .menu a {
  color: #233a70;
  font-weight: 500;
}
.page-header .menu a::after {
  bottom: -12px;
  height: 3px;
  background: #2A95D3;
}
.page-header .nav-actions {
  justify-content: flex-end;
  gap: 24px;
}
.page-header .phone-chip {
  color: #1a3b86;
  font-size: 15px;
  font-weight: 700;
}
.page-header .nav-actions .button {
  min-width: 170px;
  height: 58px;
  padding: 0 28px;
  font-size: 15px;
  letter-spacing: .06em;
  box-shadow: none !important;
}
body.home .page-header {
  background: transparent;
  border-bottom: 0;
}
body.home .page-header .brand img {
  filter: brightness(0) invert(1);
}
body.home .page-header .menu a,
body.home .page-header .phone-chip {
  color: #ffffff;
}
body.home .page-header .menu a::after {
  background: rgba(255,255,255,.95);
}
body.home .hero {
  min-height: 100svh;
}
body.home .hero-inner {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  text-align: center;
  padding: 150px 0 90px;
}
body.home .hero h1 {
  max-width: 900px;
  font-size: clamp(68px, 9vw, 132px);
  line-height: .92;
  letter-spacing: -0.05em;
  text-align: center;
}
body.home .hero-copy {
  max-width: 760px;
  width: 100%;
  justify-self: center;
  align-self: center;
  padding-top: 0;
  margin: 0;
}
body.home .hero-copy p {
  max-width: 720px;
  margin: 0 auto 14px;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.25;
  text-align: center;
}
body.home .hero-copy .lead-highlight {
  font-size: clamp(24px, 2.2vw, 38px);
}
body.home .hero-copy .button {
  margin-top: 10px;
  min-width: 190px;
  height: 56px;
  padding: 0 26px;
}
.page-hero {
  padding-top: calc(var(--header-height) + 36px);
}

@media (max-width: 1200px) {
  .page-header .navbar {
    grid-template-columns: 150px 1fr 260px;
    gap: 20px;
  }
  .page-header .menu {
    gap: 26px;
    font-size: 16px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 132px;
  }
  .page-header .navbar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding: 14px 0 16px;
  }
  .page-header .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
    font-size: 15px;
  }
  .page-header .nav-actions {
    gap: 16px;
  }
  body.home .hero-inner {
    padding-top: 210px;
  }
  body.home .hero h1 {
    font-size: clamp(54px, 12vw, 92px);
  }
  body.home .hero-copy p {
    font-size: clamp(20px, 3vw, 28px);
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 156px;
  }
  .page-header .brand img {
    width: 92px;
  }
  .page-header .menu {
    gap: 10px 16px;
    font-size: 14px;
  }
  .page-header .phone-chip {
    display: none;
  }
  .page-header .nav-actions .button {
    min-width: 138px;
    height: 50px;
    font-size: 14px;
  }
  body.home .hero-inner {
    padding-top: 230px;
    padding-bottom: 70px;
  }
  body.home .hero h1 {
    max-width: 100%;
  }
}


/* final header alignment fix */
:root {
  --header-height: 112px;
}
.page-header .navbar,
body.home .page-header .navbar {
  grid-template-columns: 170px 1fr 290px !important;
  min-height: var(--header-height) !important;
  align-items: center !important;
  gap: 24px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.page-header .brand,
body.home .page-header .brand {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  height: var(--header-height) !important;
}
.page-header .brand img,
body.home .page-header .brand img {
  width: 108px !important;
  min-width: 108px !important;
  max-width: 108px !important;
  height: auto !important;
}
.page-header .menu,
body.home .page-header .menu {
  justify-content: center !important;
  align-items: center !important;
  gap: 38px !important;
  font-size: 17px !important;
  line-height: 1 !important;
}
.page-header .menu a,
body.home .page-header .menu a {
  font-size: 17px !important;
}
.page-header .nav-actions,
body.home .page-header .nav-actions {
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 22px !important;
}
.page-header .phone-chip,
body.home .page-header .phone-chip {
  font-size: 15px !important;
}
.page-header .nav-actions .button,
body.home .page-header .nav-actions .button {
  min-width: 168px !important;
  height: 56px !important;
  font-size: 15px !important;
}
body.home .hero h1 {
  font-size: clamp(56px, 7vw, 104px) !important;
  max-width: none !important;
  white-space: nowrap !important;
}

@media (max-width: 1100px) {
  .page-header .navbar,
  body.home .page-header .navbar {
    grid-template-columns: 150px 1fr 250px !important;
    gap: 18px !important;
  }
  .page-header .brand img,
  body.home .page-header .brand img {
    width: 96px !important;
    min-width: 96px !important;
    max-width: 96px !important;
  }
  .page-header .menu,
  body.home .page-header .menu {
    gap: 22px !important;
    font-size: 15px !important;
  }
  .page-header .menu a,
  body.home .page-header .menu a {
    font-size: 15px !important;
  }
  body.home .hero h1 {
    white-space: normal !important;
    font-size: clamp(52px, 8vw, 84px) !important;
  }
}

@media (max-width: 980px) {
  .page-header .navbar,
  body.home .page-header .navbar {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 14px 0 16px !important;
  }
  .page-header .brand,
  body.home .page-header .brand {
    height: auto !important;
  }
  body.home .hero h1 {
    white-space: normal !important;
  }
}


/* small final polish */
.page-header .brand img,
body.home .page-header .brand img {
  width: 86px !important;
  min-width: 86px !important;
  max-width: 86px !important;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
body.home .hero-copy p {
  font-size: clamp(16px, 1.25vw, 22px) !important;
  line-height: 1.45 !important;
  max-width: 540px !important;
}
body.home .hero-copy .lead-highlight {
  font-size: clamp(17px, 1.35vw, 24px) !important;
}
@media (max-width: 1100px) {
  .page-header .brand img,
  body.home .page-header .brand img {
    width: 82px !important;
    min-width: 82px !important;
    max-width: 82px !important;
  }
}


/* active menu as bold text only */
.menu a::after,
body.home .page-header .menu a::after,
.page-header .menu a::after {
  display: none !important;
}
.menu a,
.page-header .menu a,
body.home .page-header .menu a {
  font-weight: 500 !important;
}
.menu a:hover,
.menu a.active,
.page-header .menu a:hover,
.page-header .menu a.active,
body.home .page-header .menu a:hover,
body.home .page-header .menu a.active {
  font-weight: 700 !important;
}

/* solid header after scroll on homepage */
body.home .page-header {
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
body.home .page-header.scrolled {
  background: rgba(247, 244, 236, 0.96) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10,47,124,.08) !important;
  box-shadow: 0 10px 28px rgba(10,47,124,.08);
}
body.home .page-header.scrolled .brand img {
  filter: none !important;
}
body.home .page-header.scrolled .menu a,
body.home .page-header.scrolled .phone-chip {
  color: #233a70 !important;
}


/* stronger active menu and no hover zoom */
.menu a:hover,
.menu a.active,
.page-header .menu a:hover,
.page-header .menu a.active,
body.home .page-header .menu a:hover,
body.home .page-header .menu a.active {
  font-weight: 700 !important;
}
.button,
.button:hover,
.page-header .nav-actions .button,
.page-header .nav-actions .button:hover {
  transform: none !important;
  transition: none !important;
  box-shadow: none !important;
}


/* requested refinements April 2026 */
body.home .hero h1 {
  font-size: clamp(48px, 6vw, 88px) !important;
  line-height: .94 !important;
}

.contact-plain {
  background: #ffffff !important;
}
.contact-copy h1 {
  font-size: clamp(42px, 4.7vw, 60px) !important;
  line-height: 0.98 !important;
}
.contact-copy p,
.contact-copy ul,
.contact-copy li {
  color: #5f6776 !important;
}
.contact-form-clean input,
.contact-form-clean textarea {
  background: #ffffff !important;
}

.footer {
  background: #00358d !important;
  padding: 88px 0 38px !important;
}
.footer-grid {
  gap: 52px !important;
  padding-bottom: 22px;
}
.footer h3 {
  font-size: 22px !important;
  margin-bottom: 16px !important;
}
.footer p,
.footer li,
.footer address {
  font-size: 15px !important;
  line-height: 1.75 !important;
}
.footer-bottom {
  margin-top: 44px !important;
  padding-top: 22px !important;
}

@media (max-width: 767px) {
  .footer {
    padding: 64px 0 28px !important;
  }
  .footer h3 {
    font-size: 20px !important;
  }
  .contact-copy h1 {
    font-size: clamp(36px, 9vw, 48px) !important;
  }
  body.home .hero h1 {
    font-size: clamp(42px, 10vw, 64px) !important;
  }
}


/* button color update */
.button,
.button:hover,
.page-header .nav-actions .button,
.page-header .nav-actions .button:hover,
.center-action .button,
.center-action .button:hover,
.contact-form-clean .button,
.contact-form-clean .button:hover,
body.home .nav-actions .button,
body.home .nav-actions .button:hover,
body.home .hero-copy .button,
body.home .hero-copy .button:hover {
  background: #2A95D3 !important;
}


/* header height and logo update */
:root {
  --header-height: 86px !important;
}
.page-header .navbar,
body.home .page-header .navbar {
  min-height: var(--header-height) !important;
}
.page-header .brand,
body.home .page-header .brand {
  height: var(--header-height) !important;
}
.page-header .brand img,
body.home .page-header .brand img {
  width: 118px !important;
  min-width: 118px !important;
  max-width: 118px !important;
  margin-top: 4px !important;
  margin-bottom: 4px !important;
  filter: none !important;
}
.page-header .menu,
body.home .page-header .menu {
  gap: 30px !important;
}
.page-header .nav-actions .button,
body.home .page-header .nav-actions .button {
  height: 48px !important;
  min-width: 148px !important;
}
body.home .hero-inner {
  padding-top: 120px !important;
}
@media (max-width: 980px) {
  :root {
    --header-height: 120px !important;
  }
}
@media (max-width: 640px) {
  :root {
    --header-height: 138px !important;
  }
}


/* logo smaller + contact labels darker */
.page-header .brand img,
body.home .page-header .brand img {
  width: 58px !important;
  min-width: 58px !important;
  max-width: 58px !important;
}

.contact-form-clean label,
.contact-form-clean label[for="name-contact"],
.contact-form-clean label[for="email-contact"],
.contact-form-clean label[for="phone-contact"],
.contact-form-clean label[for="message-contact"] {
  color: #0f172f !important;
}


/* header phone button only */
.phone-chip {
  display: none !important;
}
.page-header .nav-actions,
body.home .page-header .nav-actions {
  gap: 0 !important;
}
.page-header .nav-actions .button,
body.home .page-header .nav-actions .button {
  min-width: 170px !important;
}


/* phone icon in header button + contact heading alignment */
.phone-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
}
.phone-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.contact-copy {
  padding-top: 34px;
}
@media (max-width: 942px) {
  .contact-copy {
    padding-top: 0;
  }
}


/* project gallery page refinements */
body.projects .page-hero {
  background: #ffffff !important;
}
body.projects .page-hero-grid {
  grid-template-columns: 1.08fr 0.92fr !important;
  gap: 72px !important;
  align-items: center !important;
}
body.projects .page-hero h1 {
  color: #0f172f !important;
  margin-top: 14px !important;
  max-width: 9ch;
}
body.projects .page-hero p,
body.projects .page-hero .eyebrow {
  color: #5f6776 !important;
}
body.projects .page-hero .photo-card {
  max-width: 80% !important;
  justify-self: end;
}
body.projects .section-dark {
  background: #ffffff !important;
  color: #0f172f !important;
}
body.projects .section-dark .section-heading p,
body.projects .section-dark .muted,
body.projects .section-dark .faq-answer,
body.projects .section-dark .stat-label,
body.projects .section-dark .meta,
body.projects .section-dark .contact-list,
body.projects .section-dark .body-copy,
body.projects .section-dark .eyebrow,
body.projects .section-dark p {
  color: #5f6776 !important;
}
body.projects .section-dark h1,
body.projects .section-dark h2,
body.projects .section-dark h3,
body.projects .section-dark h4,
body.projects .section-dark strong {
  color: #0f172f !important;
}
body.projects .section-dark .before-after {
  border: 1px solid rgba(10,47,124,.08) !important;
}
body.projects .section-dark .compare-labels span {
  background: rgba(15, 23, 47, 0.75) !important;
  color: #ffffff !important;
}
body.projects .section-dark .carousel-controls {
  border-top-color: rgba(10,47,124,.12) !important;
}
body.projects .section-dark .carousel-btn {
  color: #0f172f !important;
}

@media (max-width: 980px) {
  body.projects .page-hero-grid {
    gap: 36px !important;
  }
  body.projects .page-hero .photo-card {
    max-width: 100% !important;
  }
}


/* project gallery page final refinements */
body.projects .page-hero-grid {
  gap: 42px !important;
}
body.projects .page-hero h1 {
  margin-top: 6px !important;
}
body.projects .page-hero .photo-card {
  max-width: 88% !important;
  background: #ffffff !important;
}
body.projects .section,
body.projects .section-dark,
body.projects .page-hero,
body.projects .gallery-page-grid article,
body.projects .before-after,
body.projects .photo-card,
body.projects .copy {
  background: #ffffff !important;
}
body.projects .gallery-page-grid .copy {
  display: none !important;
}
body.projects .gallery-page-grid article {
  box-shadow: none !important;
  border: 1px solid rgba(10,47,124,.08) !important;
}
body.projects .compare-card .handle-line {
  width: 2px !important;
}
body.projects .compare-card .handle-line::before {
  width: 42px !important;
  height: 42px !important;
  border: 2px solid #2A95D3 !important;
  background: #ffffff !important;
  box-shadow: 0 8px 20px rgba(10,47,124,.14);
}
body.projects .compare-card .handle-line::after {
  content: '↔' !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #2A95D3;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}


/* project page spacing + before/after frame removal */
body.projects .page-hero-grid {
  gap: 18px !important;
  grid-template-columns: 1fr 1fr !important;
}
body.projects .page-hero h1 {
  margin-top: 2px !important;
  max-width: 8ch !important;
}
body.projects .page-hero .photo-card {
  max-width: 80% !important;
}
body.projects .before-after {
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
body.projects .services-grid {
  gap: 28px !important;
}


/* projects page centered hero + extra gallery */
body.projects .projects-hero-simple {
  background: #ffffff !important;
  padding: 84px 0 56px !important;
}
body.projects .projects-hero-center {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
body.projects .projects-hero-center h1 {
  max-width: 12ch !important;
  margin: 10px auto 0 !important;
}
body.projects .projects-gallery-extra {
  background: #ffffff !important;
  padding-top: 0 !important;
}
body.projects .gallery-page-grid-12 article {
  background: #ffffff !important;
  border: 1px solid rgba(10,47,124,.08) !important;
  box-shadow: none !important;
}
body.projects .gallery-page-grid-12 img {
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
}


/* projects hero centered text fix */
body.projects .projects-hero-center .eyebrow {
  text-align: center !important;
}
body.projects .projects-hero-center h1 {
  max-width: 16ch !important;
  text-wrap: balance;
}


/* center project gallery eyebrow exactly */
body.projects .projects-hero-center {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}
body.projects .projects-hero-center .eyebrow {
  display: block !important;
  width: 100% !important;
  margin: 0 auto 18px !important;
  text-align: center !important;
}


/* force 2-line projects hero title on desktop */
body.projects .projects-hero-center h1 {
  max-width: none !important;
  width: 100% !important;
  text-align: center !important;
}
body.projects .projects-hero-center br {
  display: block;
}
@media (min-width: 981px) {
  body.projects .projects-hero-center h1 {
    font-size: 82px !important;
    line-height: 1.02 !important;
  }
}

/* mobile cleanup April 2026 */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden;
  }

  .container {
    width: calc(100% - 32px) !important;
  }

  .page-header,
  body.home .page-header {
    position: relative !important;
    background: #f4efe5 !important;
    border-bottom: 1px solid #ded8ca !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .page-header .navbar,
  body.home .page-header .navbar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    min-height: unset !important;
    padding: 20px 0 18px !important;
  }

  .page-header .brand,
  body.home .page-header .brand {
    height: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .page-header .brand img,
  body.home .page-header .brand img {
    width: 78px !important;
    min-width: 78px !important;
    max-width: 78px !important;
    margin: 0 !important;
  }

  .page-header .nav-actions,
  body.home .page-header .nav-actions {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    order: 2 !important;
    margin: 0 !important;
  }

  .page-header .nav-actions .button,
  body.home .page-header .nav-actions .button {
    min-width: 0 !important;
    width: auto !important;
    height: 46px !important;
    padding: 0 22px !important;
    font-size: 15px !important;
  }

  .page-header .menu,
  body.home .page-header .menu {
    order: 3 !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 12px !important;
    justify-content: stretch !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  .page-header .menu a,
  body.home .page-header .menu a {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 15px !important;
    line-height: 1.3 !important;
    padding: 0 !important;
  }

  .page-header .menu a:last-child,
  body.home .page-header .menu a:last-child {
    grid-column: 1 / -1 !important;
  }

  body.home .hero,
  .hero {
    min-height: auto !important;
  }

  body.home .hero-inner,
  .hero-inner {
    min-height: auto !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 54px 0 56px !important;
    text-align: center !important;
  }

  body.home .hero h1,
  .hero h1,
  .page-hero h1,
  .contact-copy h1 {
    font-size: 42px !important;
    line-height: 1.04 !important;
    letter-spacing: -0.03em !important;
    white-space: normal !important;
    text-wrap: balance !important;
  }

  h2,
  .section-heading h2,
  .stats-text h2,
  .faq-intro h2,
  .form-card h2,
  .service-card h2 {
    font-size: 30px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
  }

  h3,
  .card h3,
  .slide h3,
  .feature-box h3,
  .footer h3 {
    font-size: 22px !important;
    line-height: 1.15 !important;
  }

  body.home .hero-copy,
  .hero-copy {
    max-width: 100% !important;
    width: 100% !important;
    justify-self: center !important;
    align-self: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
  }

  body.home .hero-copy p,
  .hero-copy p {
    max-width: none !important;
    font-size: 18px !important;
    line-height: 1.5 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.home .hero-copy .button,
  .hero-copy .button {
    margin-top: 8px !important;
  }

  .section,
  .section-tight,
  .page-hero {
    padding: 56px 0 !important;
  }

  .page-hero {
    text-align: center !important;
  }
}
