:root {
  --bg: #f5f7f4;
  --paper: #ffffff;
  --ink: #17232c;
  --muted: #5c6870;
  --soft: #e8efeb;
  --line: #d9e0dc;
  --brand-blue: #1e5fb8;
  --brand: var(--brand-blue);
  --brand-dark: #174a91;
  --green: #2f6f5b;
  --warm: #b87935;
  --deep: #122733;
  --deep-2: #0b1c25;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(18, 39, 51, 0.12);
  --shadow-soft: 0 10px 28px rgba(18, 39, 51, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(21, 90, 157, 0.32);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2rem, 880px);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.25rem 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
}

.text-light .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: #b8d7ef;
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 4rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.45rem;
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
}

h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

p {
  color: var(--muted);
}

.lead {
  max-width: 730px;
  font-size: 1.18rem;
}

.text-light,
.text-light h1,
.text-light h2,
.text-light h3,
.text-light p,
.hero h1,
.hero p,
.page-hero h1,
.page-hero p {
  color: #fff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 224, 220, 0.92);
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(18, 39, 51, 0.08);
}

.header-inner {
  width: min(100% - 2rem, 1180px);
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-weight: 900;
  color: var(--ink);
}

.brand-logo {
  width: auto;
  height: 46px;
  max-width: 190px;
  object-fit: contain;
}

.brand-mark-logo {
  width: 56px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--deep);
  color: #fff;
  font-weight: 900;
  box-shadow: inset 0 -4px 0 var(--brand);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text span {
  font-size: 1.06rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.nav {
  margin-left: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0.72rem;
  border-radius: var(--radius);
  color: #31414b;
  font-size: 0.96rem;
  font-weight: 750;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: var(--soft);
  color: var(--brand-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  border-radius: 999px;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::before {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-2px) rotate(90deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 28px rgba(21, 90, 157, 0.22);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 28px rgba(47, 111, 91, 0.2);
}

.btn-secondary:hover {
  background: #245846;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.btn-small {
  min-height: 42px;
  padding: 0.62rem 0.82rem;
  font-size: 0.92rem;
}

.icon-only {
  width: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: var(--radius);
}

.icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  display: inline-block;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.icon-phone { --icon: url("assets/icons/phone.svg"); }
.icon-mail { --icon: url("assets/icons/mail.svg"); }
.icon-whatsapp { --icon: url("assets/icons/whatsapp.svg"); }
.icon-map { --icon: url("assets/icons/map-pin.svg"); }
.icon-check { --icon: url("assets/icons/check.svg"); }
.icon-tools { --icon: url("assets/icons/tools.svg"); }
.icon-shield { --icon: url("assets/icons/shield.svg"); }
.icon-star { --icon: url("assets/icons/star.svg"); }
.icon-home { --icon: url("assets/icons/home.svg"); }
.icon-tile { --icon: url("assets/icons/tile.svg"); }
.icon-floor { --icon: url("assets/icons/floor.svg"); }
.icon-clock { --icon: url("assets/icons/clock.svg"); }
.icon-interior { --icon: url("assets/icons/interior.svg"); }
.icon-prep { --icon: url("assets/icons/prep.svg"); }
.icon-arrow { --icon: url("assets/icons/arrow-right.svg"); }

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: var(--deep);
}

.hero {
  min-height: 78svh;
  max-height: 760px;
}

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

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  object-position: center;
}

.hero.logo-hero {
  background: linear-gradient(135deg, #07151f 0%, #17232c 58%, #eef4f8 100%);
}

.hero.logo-hero::after {
  background:
    linear-gradient(90deg, rgba(8, 20, 28, 0.9) 0%, rgba(8, 20, 28, 0.72) 48%, rgba(8, 20, 28, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 20, 28, 0.28), rgba(8, 20, 28, 0.04));
}

.hero.logo-hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero.logo-hero .hero-copy {
  max-width: 650px;
}

.hero-logo-display {
  position: absolute;
  top: 50%;
  right: 0;
  width: min(39vw, 465px);
  transform: translateY(-50%);
}

.hero-logo-display img {
  display: block;
  width: 100%;
  height: auto;
  padding: clamp(0.8rem, 2vw, 1.35rem);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.page-hero-media {
  object-position: center;
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 20, 28, 0.88) 0%, rgba(8, 20, 28, 0.66) 44%, rgba(8, 20, 28, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 20, 28, 0.4), rgba(8, 20, 28, 0.08));
}

.hero-content,
.page-hero-content {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
  padding: 4.5rem 0;
}

.hero-copy,
.page-hero-copy {
  max-width: 720px;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #e9f4fb;
  font-weight: 750;
  font-size: 0.94rem;
}

.hero-proof .icon {
  color: #8fc4ea;
}

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip-item {
  background: var(--paper);
  padding: 1.25rem;
}

.trust-strip-item strong {
  display: block;
  color: var(--brand-blue);
  font-size: 1.05rem;
}

.trust-strip-item span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
}

.split-media {
  position: relative;
}

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

.image-note {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--muted);
}

.check-list .icon {
  margin-top: 0.2rem;
  color: var(--green);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

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

.card,
.service-card,
.project-card,
.contact-card,
.legal-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.card,
.service-card,
.contact-card,
.legal-box {
  padding: 1.25rem;
}

.service-card {
  display: grid;
  align-content: start;
}

.service-icon,
.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 95, 184, 0.28);
  background: #eef5ff;
  color: var(--brand-blue);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.service-icon .icon,
.feature-icon .icon {
  width: 1.45rem;
  height: 1.45rem;
}

.service-icon .card-icon-img,
.feature-icon .card-icon-img {
  display: block;
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(31%) sepia(60%) saturate(1564%) hue-rotate(194deg) brightness(88%) contrast(91%);
}

.service-card p,
.card p,
.contact-card p {
  margin-bottom: 0;
}

.service-card h3,
.project-card-body h3,
.gallery-caption strong {
  color: var(--brand-blue);
}

.band {
  background: var(--deep);
  color: #fff;
}

.band p,
.band h2,
.band h3 {
  color: #fff;
}

.band .muted {
  color: #c9d6dc;
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-tags li {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  color: #edf6fa;
  font-weight: 750;
}

.project-card {
  overflow: hidden;
}

.project-card img,
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-card-body {
  padding: 1.1rem;
}

.project-card-body p {
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-item {
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.gallery-item.wide {
  grid-column: span 6;
}

.gallery-button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.gallery-caption {
  padding: 0.9rem 1rem 1rem;
}

.gallery-caption strong {
  display: block;
  color: var(--brand-blue);
}

.gallery-caption span {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

.cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(21, 90, 157, 0.3), rgba(47, 111, 91, 0.25));
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.cta h2,
.cta p {
  color: #fff;
}

.cta p {
  margin-bottom: 0;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.contact-link {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-link:hover {
  border-color: rgba(21, 90, 157, 0.42);
  box-shadow: var(--shadow-soft);
}

.contact-link .service-icon {
  margin-bottom: 0;
}

.contact-link strong,
.contact-link span {
  display: block;
}

.contact-link span {
  color: var(--muted);
  font-size: 0.94rem;
}

.form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.38rem;
}

.field label,
.checkbox-field {
  color: var(--ink);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0.78rem 0.85rem;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 90, 157, 0.14);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.7rem;
  align-items: start;
  font-size: 0.94rem;
  font-weight: 650;
  color: var(--muted);
}

.checkbox-field input {
  margin-top: 0.28rem;
}

.checkbox-field a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.review-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.25rem;
  align-items: stretch;
}

.review-main {
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.review-side {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--deep);
  color: #fff;
}

.review-side p,
.review-side h3 {
  color: #fff;
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-box h2 {
  font-size: 1.45rem;
}

.legal-box p,
.legal-box li {
  color: var(--muted);
}

.legal-box a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background: var(--deep-2);
  color: #dbe7ec;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 3.25rem 0;
}

.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer a {
  color: #eef6f9;
}

.site-footer .brand {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius);
  background: #fff;
}

.site-footer .brand-logo {
  height: 44px;
  max-width: 185px;
}

.site-footer .brand-mark-logo {
  width: 58px;
  height: 42px;
}

.site-footer .brand-text span {
  color: var(--ink);
}

.site-footer .brand-text small {
  color: var(--muted);
}

.site-footer p {
  color: #b9cad3;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #b9cad3;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0;
  color: #9fb4bf;
  font-size: 0.92rem;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(5, 14, 20, 0.82);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-dialog {
  width: min(100%, 980px);
  max-height: calc(100svh - 2rem);
  overflow: auto;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-media {
  width: 100%;
  max-height: 72svh;
  object-fit: contain;
  background: #0b1c25;
}

.lightbox-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: var(--ink);
}

.lightbox-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
}

@media (max-width: 1040px) {
  .header-actions .btn-small {
    display: none;
  }

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

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

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

@media (max-width: 900px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    margin: 0;
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: block;
  }

  .nav-list {
    display: grid;
    gap: 0.35rem;
  }

  .nav-link {
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 0.9rem;
  }

  .header-actions {
    margin-left: 0;
  }

  .split,
  .split.reverse,
  .area-layout,
  .contact-layout,
  .review-panel,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item,
  .gallery-item.wide {
    grid-column: span 6;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 3.5rem 0;
  }

  .section-tight {
    padding: 2.5rem 0;
  }

  h1 {
    font-size: 2.3rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .lead {
    font-size: 1.04rem;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    height: 38px;
    max-width: 150px;
  }

  .brand-mark-logo {
    width: 50px;
    height: 36px;
  }

  .site-footer .brand-logo {
    height: 40px;
    max-width: 165px;
  }

  .brand-text span {
    font-size: 0.98rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .nav {
    inset-block-start: 68px;
  }

  .header-actions .icon-only {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero::after,
  .page-hero::after {
    background:
      linear-gradient(90deg, rgba(8, 20, 28, 0.92), rgba(8, 20, 28, 0.68)),
      linear-gradient(0deg, rgba(8, 20, 28, 0.32), rgba(8, 20, 28, 0.12));
  }

  .hero.logo-hero .hero-content {
    padding: 2rem 0 3rem;
  }

  .hero-logo-display {
    position: relative;
    top: auto;
    right: auto;
    width: min(78vw, 285px);
    margin: 0 auto 1.4rem;
    transform: none;
  }

  .hero-logo-display img {
    padding: 0.75rem;
  }

  .hero-actions,
  .action-row {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trust-strip-grid,
  .grid-4,
  .process,
  .form-row,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.wide {
    grid-column: 1 / -1;
  }

  .review-main {
    padding: 1.25rem;
  }

  .footer-bottom-inner {
    display: grid;
  }
}

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