:root {
  --navy: #2f3a5a;
  --deep: #1f2a44;
  --ink: #071b33;
  --grey: #6e7072;
  --light-grey: #d9d9d9;
  --offwhite: #f4f4f4;
  --white: #ffffff;
  --wood: #b49363;
  --shadow: 0 24px 70px rgba(7, 27, 51, 0.18);
  --radius: 0;
  --max-width: 1180px;
  --section: clamp(4.5rem, 7vw, 8rem);
  --font: "Avenir Next", "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --display: "Arial Narrow", "Avenir Next Condensed", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--navy); color: var(--white); }

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
}
.section-padding { padding: var(--section) 0; }
.section-dark { background: var(--deep); color: var(--offwhite); }
.section-light { background: #ece9e3; }

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  z-index: 999;
  width: auto;
  height: auto;
  top: 1rem;
  left: 1rem;
  padding: .85rem 1rem;
  margin: 0;
  clip: auto;
  color: var(--white);
  background: var(--deep);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: .76rem;
  line-height: 1.3;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--navy);
}
.section-dark .eyebrow,
.hero .eyebrow,
.cta .eyebrow { color: rgba(244, 244, 244, 0.82); }

h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  line-height: .98;
  letter-spacing: .045em;
  text-transform: uppercase;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 7.2vw, 6.4rem); max-width: 780px; }
h2 { font-size: clamp(2.2rem, 5vw, 5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
p { margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 3.2rem;
  padding: .95rem 1.25rem;
  border: 1px solid transparent;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--primary:hover { background: var(--deep); border-color: var(--deep); }
.btn--ghost { border-color: rgba(244, 244, 244, .58); color: var(--white); background: rgba(244, 244, 244, .06); backdrop-filter: blur(12px); }
.btn--ghost:hover { background: var(--white); color: var(--deep); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 1rem 0;
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled,
.site-header:has(.nav__menu.is-open) {
  padding: .6rem 0;
  background: rgba(31, 42, 68, .93);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
}
.nav {
  width: min(1320px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__logo { width: clamp(128px, 13vw, 220px); position: relative; z-index: 60; }
.nav__logo img { width: 100%; height: auto; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 2vw, 2rem);
  color: var(--white);
}
.nav__menu a {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .92;
  transition: opacity .2s ease, transform .2s ease;
}
.nav__menu a:hover { opacity: 1; transform: translateY(-1px); }
.nav__cta {
  padding: .75rem 1rem;
  border: 1px solid rgba(244, 244, 244, .6);
}
.nav__toggle {
  display: none;
  position: relative;
  z-index: 60;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(244, 244, 244, .45);
  background: rgba(244, 244, 244, .07);
  color: var(--white);
}
.nav__toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  background: var(--deep);
}
.hero__video,
.hero__overlay,
.hero__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__video { object-fit: cover; object-position: center center; z-index: -3; }
.hero__overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 74% 28%, rgba(244,244,244,.10), transparent 28rem),
    linear-gradient(90deg, rgba(7, 27, 51, .94), rgba(31, 42, 68, .70) 52%, rgba(7, 27, 51, .82));
}
.hero__grid {
  z-index: -1;
  opacity: .22;
  background-image:
    linear-gradient(rgba(244, 244, 244, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 244, 244, .14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.hero__content {
  padding: 9rem 0 clamp(5rem, 9vh, 7rem);
  max-width: 720px;
  margin-inline: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__lead {
  max-width: 650px;
  margin-top: 1.15rem;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(244, 244, 244, .82);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}
.hero__usp {
  list-style: none;
  display: grid;
  gap: .55rem;
  margin: 1.35rem 0 0;
  padding: 0;
  max-width: 560px;
}
.hero__usp li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(244,244,244,.88);
  font-weight: 700;
}
.hero__usp li::before {
  content: "";
  width: .55rem;
  height: .55rem;
  background: var(--white);
  rotate: 45deg;
  flex: 0 0 auto;
}
.hero__card {
  position: absolute;
  right: clamp(1rem, 5vw, 4.5rem);
  bottom: clamp(1rem, 5vw, 4.5rem);
  width: min(310px, calc(100% - 2rem));
  padding: 1.2rem;
  background: rgba(244, 244, 244, .9);
  color: var(--deep);
  box-shadow: var(--shadow);
}
.hero__card::before {
  content: "";
  position: absolute;
  right: 1rem;
  top: -1.2rem;
  width: 90px;
  height: 52px;
  border-top: 8px solid var(--navy);
  border-right: 8px solid var(--navy);
  transform: skewX(-34deg);
}
.hero__card-label {
  display: block;
  margin-bottom: .6rem;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--grey);
}
.hero__card a {
  display: block;
  font-weight: 800;
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  translate: -50% 0;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(244, 244, 244, .7);
  writing-mode: vertical-rl;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 52px;
  margin: .7rem auto 0;
  background: currentColor;
}

.floating-socials {
  position: fixed;
  right: clamp(.8rem, 2vw, 1.4rem);
  top: 50%;
  translate: 0 -50%;
  z-index: 45;
  display: grid;
  gap: .65rem;
  padding: .7rem;
  background: rgba(31, 42, 68, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(7, 27, 51, .24);
  border: 1px solid rgba(244, 244, 244, .14);
  border-radius: 18px 0 0 18px;
}
.floating-socials__link {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(244, 244, 244, .24);
  color: var(--offwhite);
  background: rgba(244, 244, 244, .04);
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.floating-socials__link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.floating-socials__link .facebook-icon {
  fill: currentColor;
  stroke: none;
  width: 23px;
  height: 23px;
}
.floating-socials__link:hover {
  transform: translateX(-3px);
  background: var(--offwhite);
  color: var(--deep);
  border-color: var(--offwhite);
}

.trustbar {
  position: relative;
  z-index: 5;
  margin-top: -2.4rem;
}
.trustbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--offwhite);
  box-shadow: var(--shadow);
}
.trustbar article {
  min-height: 122px;
  padding: 1.25rem;
  border-right: 1px solid rgba(47, 58, 90, .12);
  display: grid;
  align-content: center;
  gap: .35rem;
}
.trustbar article:last-child { border-right: 0; }
.trustbar strong {
  color: var(--navy);
  letter-spacing: .22em;
  font-size: .72rem;
}
.trustbar span {
  font-weight: 800;
  letter-spacing: .04em;
}

.intro__grid,
.before-after__grid,
.about__grid,
.cta__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.intro__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--light-grey);
}
.intro__media img,
.about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1.2rem 1.6rem;
  background: var(--deep);
  color: var(--offwhite);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .22em;
}
.intro__text p:not(.eyebrow) {
  margin-top: 1.2rem;
  max-width: 670px;
  color: rgba(7, 27, 51, .76);
}
.signature-line {
  position: relative;
  margin-top: 2rem;
  padding-top: 1.2rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
}
.signature-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 96px;
  height: 1px;
  background: var(--navy);
}

.testimonial-band {
  padding: 0 0 var(--section);
  background: var(--offwhite);
}
.testimonial-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
  gap: 1px;
  background: rgba(47, 58, 90, .16);
}
.testimonial-band__quote,
.testimonial-band__aside {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.testimonial-band__quote {
  background: linear-gradient(135deg, var(--deep), var(--navy));
  color: var(--offwhite);
}
.testimonial-band__mark {
  display: block;
  font-size: 4rem;
  line-height: .8;
  color: rgba(244,244,244,.75);
}
.testimonial-band__quote blockquote {
  margin: .5rem 0 1.25rem;
  max-width: 520px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.25;
}
.testimonial-band__quote cite {
  font-style: normal;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.testimonial-band__aside {
  background: #f5f2ec;
  display: grid;
  align-content: center;
}
.testimonial-band__aside strong {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--navy);
}
.testimonial-band__aside p {
  margin-top: .85rem;
  color: rgba(7,27,51,.72);
  max-width: 28ch;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .45fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.section-heading > p:last-child { color: rgba(244, 244, 244, .72); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(244, 244, 244, .18);
  border: 1px solid rgba(244, 244, 244, .18);
}
.service-card {
  min-height: 310px;
  padding: 6.1rem 1.6rem 1.7rem;
  background: var(--deep);
  display: grid;
  align-content: start;
  gap: .9rem;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto auto;
  width: 84px;
  height: 84px;
  border-top: 1px solid rgba(244,244,244,.3);
  border-right: 1px solid rgba(244,244,244,.3);
}
.service-card__icon {
  position: absolute;
  left: 1.4rem;
  top: 1.2rem;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(244,244,244,.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: .62rem;
  color: var(--offwhite);
  background: rgba(244,244,244,.035);
  z-index: 2;
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  max-width: 12ch;
  margin-top: .2rem;
}
.service-card p { color: rgba(244, 244, 244, .72); }

.reviews {
  background: #efede8;
}
.reviews .section-heading > p:last-child {
  color: rgba(7,27,51,.7);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.review-card {
  background: var(--white);
  border: 1px solid rgba(7,27,51,.08);
  box-shadow: 0 16px 40px rgba(7,27,51,.08);
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
}
.review-card__stars {
  letter-spacing: .18em;
  color: var(--wood);
  font-size: .9rem;
}
.review-card p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(7,27,51,.8);
}
.review-card strong {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
}

.signature-split {
  padding: var(--section) 0;
  background: linear-gradient(135deg, var(--deep), var(--navy));
  color: var(--offwhite);
}
.signature-split__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 520px;
  background: rgba(244,244,244,.08);
  box-shadow: 0 28px 90px rgba(7,27,51,.22);
}
.signature-split__quote {
  padding: clamp(1.8rem, 5vw, 4rem);
  display: grid;
  align-content: center;
  gap: 1.2rem;
}
.quote-mark {
  display: block;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .7;
  color: rgba(244,244,244,.72);
  font-family: Georgia, serif;
}
.signature-split__quote h2 { max-width: 560px; }
.signature-split__quote p { max-width: 510px; color: rgba(244,244,244,.76); }
.signature-split__usp {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1rem;
}
.signature-split__usp span {
  padding: .65rem .8rem;
  border: 1px solid rgba(244,244,244,.22);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.signature-split__image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.signature-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.signature-split__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,27,51,.35), transparent 56%);
  pointer-events: none;
}
.signature-label {
  position: absolute;
  left: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vw, 2.5rem);
  z-index: 1;
  padding: 1rem 1.4rem;
  background: rgba(244,244,244,.94);
  color: var(--deep);
  box-shadow: var(--shadow);
}
.signature-label strong,
.signature-label span {
  display: block;
}
.signature-label strong {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.signature-label span {
  margin-top: .2rem;
  font-size: .88rem;
  color: rgba(7,27,51,.72);
}

.projects__heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, .56fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.projects__heading > p { color: rgba(7, 27, 51, .7); }
.project-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(47,58,90,.16);
  border: 1px solid rgba(47,58,90,.14);
}
.project-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: var(--offwhite);
  background: var(--deep);
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.project-card:hover img { transform: scale(1.045); }
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,27,51,.92), rgba(7,27,51,.2) 62%, rgba(7,27,51,.08));
}
.project-card > div {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 1.3rem;
}
.project-card span,
.project-card a,
.project-card--quote cite {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.project-card h3 {
  margin-top: .75rem;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  max-width: 19ch;
}
.project-card a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.2rem;
  color: rgba(244,244,244,.88);
}
.project-card a::after { content: "→"; font-size: 1.1rem; }
.project-card--quote {
  padding: 1.5rem;
  display: grid;
  align-content: center;
  background: linear-gradient(135deg, var(--deep), var(--navy));
}
.project-card--quote::after { content: none; }
.project-card--quote blockquote {
  margin: .6rem 0 1.2rem;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.35;
}
.project-card--quote cite { font-style: normal; color: rgba(244,244,244,.8); }
.mosaic {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  grid-auto-rows: minmax(230px, auto);
  gap: 1px;
  background: rgba(47, 58, 90, .16);
}
.mosaic__item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #e8e3d8;
}
.mosaic__item.large { grid-row: span 2; }
.mosaic__item.wide { grid-column: span 2; }
.mosaic__item.full { grid-column: 1 / -1; min-height: 320px; }
.mosaic__item--image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  transition: transform .7s ease;
}
.mosaic__item--image:hover img { transform: scale(1.04); }
.mosaic__item--image span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: .65rem .85rem;
  background: rgba(244, 244, 244, .88);
  color: var(--deep);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.mosaic__item--quote,
.mosaic__item--text {
  padding: 1.6rem;
  display: grid;
  align-content: center;
}
.mosaic__item--quote {
  background: var(--deep);
  color: var(--offwhite);
}
.mosaic__item--quote blockquote {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.2;
}
.mosaic__item--quote small { margin-top: 1rem; color: rgba(244,244,244,.68); letter-spacing: .12em; text-transform: uppercase; }
.mosaic__item--text h3 { max-width: 330px; }
.mosaic__item--text p { margin-top: 1rem; color: rgba(7,27,51,.68); }
.mosaic__item--text.navy { background: var(--navy); color: var(--offwhite); }
.mosaic__item--text.navy p { color: rgba(244,244,244,.72); }

.before-after { background: var(--offwhite); }
.before-after__grid { grid-template-columns: .7fr 1fr; }
.before-after__text p:not(.eyebrow) { margin-top: 1.2rem; color: rgba(7,27,51,.72); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: .7rem;
}
.check-list li {
  display: flex;
  gap: .7rem;
  align-items: center;
  font-weight: 800;
}
.check-list li::before {
  content: "";
  width: .65rem;
  height: .65rem;
  border: 2px solid var(--navy);
  rotate: 45deg;
}
.comparison {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--deep);
}
.comparison__image { position: absolute; inset: 0; }
.comparison__image img { width: 100%; height: 100%; object-fit: cover; }
.comparison__image--after { clip-path: inset(0 0 0 var(--position)); }
.comparison__image span {
  position: absolute;
  top: 1rem;
  padding: .55rem .8rem;
  background: rgba(244,244,244,.9);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.comparison__image--before span { left: 1rem; }
.comparison__image--after span { right: 1rem; }
.comparison__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}
.comparison__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  translate: -1px 0;
  background: var(--white);
  pointer-events: none;
}
.comparison__line::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--deep);
  font-weight: 900;
}

.about__grid { grid-template-columns: 1fr .85fr; }
.about__content p:not(.eyebrow) { margin-top: 1.2rem; color: rgba(7,27,51,.72); }
.about__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2rem;
  background: rgba(47,58,90,.16);
}
.about__facts div {
  background: var(--offwhite);
  padding: 1rem;
}
.about__facts strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  color: var(--navy);
}
.about__facts span {
  display: block;
  margin-top: .35rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
}
.about__visual {
  min-height: 620px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.process-step {
  position: relative;
  padding: 1.5rem;
  min-height: 260px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(7,27,51,.06);
  overflow: hidden;
}
.process-step::after {
  content: "";
  position: absolute;
  right: -2.4rem;
  bottom: 1.4rem;
  width: 150px;
  height: 80px;
  border-top: 9px solid rgba(47,58,90,.12);
  border-right: 9px solid rgba(47,58,90,.12);
  transform: skewX(-34deg);
}
.process-step span {
  display: inline-block;
  margin-bottom: 4rem;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .22em;
}
.process-step p { margin-top: 1rem; color: rgba(7,27,51,.68); }

.cta {
  position: relative;
  overflow: hidden;
  color: var(--offwhite);
  background:
    linear-gradient(135deg, rgba(7,27,51,.96), rgba(31,42,68,.97)),
    url('../assets/img/roof-work.webp') center / cover;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(244,244,244,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(244,244,244,.25) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta__grid { position: relative; grid-template-columns: .82fr 1fr; }
.cta__copy p:not(.eyebrow) { margin-top: 1.1rem; max-width: 540px; color: rgba(244,244,244,.76); }
.contact-list {
  display: grid;
  gap: .75rem;
  margin-top: 2rem;
}
.contact-list a {
  width: fit-content;
  border-bottom: 1px solid rgba(244,244,244,.3);
  font-weight: 800;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.social-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244, 244, 244, .38);
  background: rgba(244, 244, 244, .07);
  color: var(--offwhite);
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.social-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-icon .facebook-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
}
.social-icon:hover {
  transform: translateY(-2px);
  background: var(--offwhite);
  color: var(--deep);
  border-color: var(--offwhite);
}
.contact-list .social-icons { margin-top: .35rem; }
.contact-list .social-icon {
  width: 44px;
  border-bottom: 1px solid rgba(244, 244, 244, .38);
}
.footer__links .social-icons {
  justify-content: flex-end;
  margin-top: .45rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(244,244,244,.94);
  color: var(--deep);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(47,58,90,.22);
  background: var(--white);
  color: var(--deep);
  padding: .9rem 1rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(47,58,90,.12);
}
.contact-form textarea { resize: vertical; }
.form-note {
  font-size: .78rem;
  color: rgba(7,27,51,.62);
}

.footer {
  padding: 3rem 0 1.2rem;
  background: var(--deep);
  color: var(--offwhite);
}
.footer__grid {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 2rem;
  align-items: center;
}
.footer__logo img { width: 180px; }
.footer h2 {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  margin-bottom: .35rem;
}
.footer p { color: rgba(244,244,244,.68); }
.footer__links {
  display: grid;
  gap: .35rem;
  justify-items: end;
  font-weight: 800;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(244,244,244,.16);
  color: rgba(244,244,244,.62);
  font-size: .85rem;
}
.footer__policy-links { display: inline-flex; flex-wrap: wrap; gap: 1rem; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.thankyou-page { min-height: 100svh; display: grid; place-items: center; background: var(--offwhite); }
.thankyou { width: min(700px, calc(100% - 2rem)); text-align: center; padding: 2rem; }
.thankyou img { width: min(320px, 80%); margin: 0 auto 2rem; }
.thankyou p { margin-top: 1rem; color: rgba(7,27,51,.72); }
.thankyou .btn { margin-top: 2rem; }

@media (max-width: 1080px) {
  .service-grid,
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .project-cards { grid-template-columns: repeat(2, 1fr); }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic__item.wide { grid-column: span 1; }
  .mosaic__item.full { grid-column: 1 / -1; }
  .hero__card { display: none; }
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav__toggle { display: block; }
  .floating-socials { right: .75rem; top: auto; bottom: 1rem; translate: 0 0; border-radius: 18px; }
  .testimonial-band__grid { grid-template-columns: 1fr; }
  .signature-split__grid { grid-template-columns: 1fr; }
  .nav__menu {
    position: fixed;
    inset: 0;
    padding: 8rem 1.2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.1rem;
    background: rgba(31,42,68,.98);
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu a { font-size: 1.15rem; }
  .nav__cta { width: 100%; text-align: center; }
  .hero { min-height: 82svh; }
  .hero__content { padding-bottom: 5rem; }
  .hero__scroll { display: none; }
  .intro__grid,
  .before-after__grid,
  .about__grid,
  .cta__grid,
  .section-heading,
  .projects__heading {
    grid-template-columns: 1fr;
  }
  .intro__media,
  .about__visual { min-height: 460px; }
  .before-after__grid { gap: 2rem; }
  .footer__grid { grid-template-columns: 1fr; justify-items: start; }
  .footer__links { justify-items: start; }
  .footer__links .social-icons { justify-content: flex-start; }
}

@media (max-width: 620px) {
  h1 { font-size: clamp(3rem, 17vw, 5.4rem); }
  .hero__video { object-position: center center; }
  .floating-socials { left: 50%; right: auto; translate: -50% 0; grid-auto-flow: column; gap: .55rem; padding: .55rem .7rem; width: max-content; border-radius: 999px; }
  .floating-socials__link { width: 42px; height: 42px; }
  .container, .nav { width: min(100% - 1rem, var(--max-width)); }
  .hero__actions .btn { width: 100%; }
  .trustbar { margin-top: 0; }
  .trustbar__inner,
  .service-grid,
  .process__steps,
  .mosaic,
  .about__facts,
  .project-cards { grid-template-columns: 1fr; }
  .trustbar article { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(47,58,90,.12); }
  .service-card { min-height: 240px; }
  .mosaic__item.large { grid-row: span 1; }
  .mosaic__item.full { grid-column: span 1; }
  .comparison { aspect-ratio: 4 / 5; }
  .footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .hero__video { display: none; }
}


.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-note a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: .18em;
}
.footer__legal-line {
  margin-top: .25rem;
  font-size: .82rem;
}
.footer__policy-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .9rem;
}
.footer__policy-links a {
  text-decoration: underline;
  text-underline-offset: .25em;
}
.cookie-notice {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 80;
  width: min(520px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  color: var(--deep);
  background: rgba(244, 244, 244, .96);
  border: 1px solid rgba(47, 58, 90, .18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.cookie-notice.is-hidden { display: none; }
.cookie-notice strong {
  display: block;
  margin-bottom: .2rem;
  font-weight: 900;
}
.cookie-notice p {
  font-size: .88rem;
  color: rgba(7, 27, 51, .72);
}
.cookie-notice__actions {
  display: flex;
  gap: .55rem;
  align-items: center;
}
.cookie-notice__actions a,
.cookie-notice__actions button {
  border: 1px solid rgba(47, 58, 90, .28);
  padding: .65rem .8rem;
  background: transparent;
  color: var(--deep);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}
.cookie-notice__actions button {
  background: var(--deep);
  color: var(--offwhite);
}
.legal-page {
  background: var(--offwhite);
  color: var(--ink);
}
.legal-hero {
  padding: 9rem 0 3rem;
  color: var(--offwhite);
  background: linear-gradient(135deg, rgba(7, 27, 51, .98), rgba(31, 42, 68, .96));
}
.legal-content {
  width: min(880px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 4rem 0 6rem;
}
.legal-content h2 {
  margin-top: 2.4rem;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}
.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: .65rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}
.legal-content p,
.legal-content li {
  color: rgba(7, 27, 51, .75);
}
.legal-content ul {
  padding-left: 1.2rem;
}
.legal-card {
  padding: 1.2rem;
  margin: 1.5rem 0;
  background: #ece9e3;
  border-left: 4px solid var(--navy);
}
.legal-back {
  display: inline-flex;
  margin-top: 2rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: .25em;
}
@media (max-width: 620px) {
  .cookie-notice {
    grid-template-columns: 1fr;
    bottom: 5.5rem;
  }
  .cookie-notice__actions {
    justify-content: space-between;
  }
}


/* ===== FINAL QUALITY PASS: tighter premium layout, less dead space, stronger conversion ===== */
:root {
  --section: clamp(4rem, 6vw, 6.2rem);
}

body {
  overflow-x: hidden;
}

h1 {
  font-size: clamp(3.4rem, 6.4vw, 6.6rem);
  max-width: 820px;
  line-height: .92;
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  line-height: .96;
}

.site-header {
  padding: .75rem 0;
  background: rgba(31, 42, 68, .88);
  backdrop-filter: blur(18px);
}

.nav__logo { width: clamp(128px, 11vw, 190px); }
.nav__menu a { letter-spacing: .14em; }

.hero {
  min-height: min(760px, 86svh);
  align-items: center;
}

.hero__video {
  object-position: center 46%;
  filter: saturate(.9) contrast(1.05);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(7,27,51,.97) 0%, rgba(31,42,68,.86) 42%, rgba(7,27,51,.76) 100%),
    radial-gradient(circle at 68% 34%, rgba(244,244,244,.12), transparent 30rem);
}

.hero__content {
  padding: 8.5rem 0 5.5rem;
  max-width: 760px;
  margin-inline: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__lead {
  max-width: 610px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero__usp {
  grid-template-columns: 1fr;
  gap: .42rem;
}

.hero__card {
  right: clamp(1rem, 4vw, 4rem);
  bottom: clamp(2rem, 6vw, 4.5rem);
  background: rgba(244,244,244,.94);
}

.hero__scroll { display: none; }

.trustbar {
  margin-top: 0;
  background: var(--offwhite);
}

.trustbar__inner {
  box-shadow: 0 18px 60px rgba(7,27,51,.09);
  transform: translateY(-50%);
  margin-bottom: -3.5rem;
}

.trustbar article {
  min-height: 92px;
  padding: 1rem 1.15rem;
}

.intro.section-padding {
  padding-top: clamp(4rem, 7vw, 7rem);
}

.intro__grid,
.about__grid {
  gap: clamp(2.4rem, 5vw, 5.8rem);
}

.intro__media,
.about__visual {
  min-height: auto;
  aspect-ratio: 4 / 5;
  max-height: 640px;
}

.intro__text h2,
.about__content h2,
.cta__copy h2,
.before-after__text h2 {
  max-width: 620px;
}

.services.section-padding {
  padding-top: clamp(4rem, 6vw, 5.8rem);
  padding-bottom: clamp(4rem, 6vw, 5.8rem);
}

.section-heading {
  display: block;
  max-width: 780px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading > p:last-child {
  max-width: 620px;
  margin-top: 1rem;
}

.service-grid {
  border-color: rgba(244,244,244,.22);
}

.service-card {
  min-height: 250px;
  padding: 5.7rem 1.45rem 1.45rem;
  transition: background .22s ease, transform .22s ease;
}

.service-card:hover {
  background: #24304d;
  transform: translateY(-2px);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  z-index: 2;
}

.signature-split {
  padding: clamp(3.8rem, 6vw, 6rem) 0;
}

.signature-split__grid {
  min-height: 0;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
}

.signature-split__quote,
.signature-split__image {
  min-height: clamp(420px, 48vw, 620px);
}

.signature-split__quote h2 {
  max-width: 470px;
  font-size: clamp(2.4rem, 4.8vw, 5rem);
}

.projects.section-padding,
.before-after.section-padding,
.about.section-padding,
.process.section-padding,
.cta.section-padding {
  padding-top: clamp(4rem, 6vw, 6rem);
  padding-bottom: clamp(4rem, 6vw, 6rem);
}

.projects__heading {
  grid-template-columns: minmax(0,.95fr) minmax(260px,.55fr);
  margin-bottom: clamp(1.8rem, 3vw, 2.5rem);
}

.project-card {
  min-height: clamp(310px, 27vw, 430px);
}

.project-card h3 {
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
}

.project-card--quote blockquote {
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
}

.before-after__grid {
  grid-template-columns: minmax(300px,.55fr) minmax(0,1fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.comparison {
  aspect-ratio: 16 / 9;
}

.comparison__image img {
  object-position: center;
}

.process .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.process__steps {
  gap: 1px;
  background: rgba(47,58,90,.13);
  border: 1px solid rgba(47,58,90,.13);
}

.process-step {
  min-height: 230px;
  box-shadow: none;
  background: #fbfaf7;
}

.process-step span {
  margin-bottom: 3.2rem;
}

.cta__grid {
  align-items: start;
}

.contact-form {
  max-width: 680px;
  margin-left: auto;
}

.floating-socials {
  right: .9rem;
}

.cookie-notice {
  max-width: 720px;
}

@media (max-width: 1180px) {
  .hero__card { display: none; }
  .project-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1080px) {
  .trustbar__inner { transform: none; margin-bottom: 0; }
  .intro.section-padding { padding-top: var(--section); }
  .reviews__grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .hero { min-height: 820px; }
  .hero__content { padding-top: 8rem; }
  .service-card { padding-top: 5.6rem; }
  .intro__grid,
  .about__grid,
  .before-after__grid,
  .signature-split__grid,
  .projects__heading {
    grid-template-columns: 1fr;
  }
  .signature-split__quote,
  .signature-split__image {
    min-height: auto;
  }
  .signature-split__image { aspect-ratio: 4 / 5; }
  .service-card { min-height: 230px; }
  .process .section-heading { text-align: left; }
}

@media (max-width: 620px) {
  h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  h2 { font-size: clamp(2.15rem, 11vw, 3.8rem); }
  .hero { min-height: 760px; }
  .hero__video { object-position: 55% center; }
  .hero__actions .btn { width: 100%; }
  .trustbar__inner,
  .service-grid,
  .process__steps,
  .project-cards {
    grid-template-columns: 1fr;
  }
  .project-card { min-height: 360px; }
  .intro__media,
  .about__visual { aspect-ratio: 4 / 5; }
  .floating-socials { bottom: .7rem; }
  .cookie-notice { inset-inline: .7rem; bottom: .7rem; }
}


/* FINAL FIX 2026-06-01: Hero text should be left-aligned inside the page container, not glued to viewport edge. */
.hero > .container.hero__content {
  width: min(var(--max-width), calc(100% - 2rem)) !important;
  max-width: var(--max-width) !important;
  margin-inline: auto !important;
  padding-left: clamp(0rem, 1.2vw, 1.25rem);
  padding-right: clamp(0rem, 1.2vw, 1.25rem);
  text-align: left !important;
  align-items: flex-start !important;
}

.hero > .container.hero__content h1,
.hero > .container.hero__content .hero__lead,
.hero > .container.hero__content .hero__usp,
.hero > .container.hero__content .hero__actions {
  max-width: 720px;
}

@media (min-width: 1320px) {
  .hero > .container.hero__content {
    transform: translateX(0);
  }
}

@media (max-width: 820px) {
  .hero > .container.hero__content {
    width: min(100% - 1rem, var(--max-width)) !important;
    padding-left: 0;
    padding-right: 0;
  }
}

/* FINAL FIX: keep all service icons locked at the top of the cards. */
.service-card {
  align-content: start !important;
  padding-top: 5.8rem !important;
}
.service-card__icon {
  top: 1.25rem !important;
  left: 1.45rem !important;
  z-index: 3 !important;
  flex: 0 0 auto !important;
}
.service-card h3 {
  margin-top: 0 !important;
  max-width: 13ch;
}


/* FINAL MOBILE + WHITE HEADER FIX 2026-06-02
   White premium header with original logo, cleaner mobile hero, and improved mobile navigation. */
.site-header,
.site-header.is-scrolled,
.site-header:has(.nav__menu.is-open) {
  background: rgba(255, 255, 255, .96) !important;
  color: var(--ink) !important;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(7, 27, 51, .08);
}
.nav__menu { color: var(--ink) !important; }
.nav__menu a { color: var(--ink); }
.nav__cta {
  background: var(--deep) !important;
  color: var(--white) !important;
  border-color: var(--deep) !important;
}
.nav__toggle {
  color: var(--ink) !important;
  border-color: rgba(7, 27, 51, .32) !important;
  background: rgba(7, 27, 51, .03) !important;
}
.nav__toggle span:not(.sr-only) { background: currentColor !important; }

@media (max-width: 820px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header:has(.nav__menu.is-open) {
    padding: .7rem 0 !important;
  }
  .nav { width: min(100% - 1.5rem, var(--max-width)) !important; }
  .nav__logo { width: clamp(138px, 38vw, 172px) !important; }
  .nav__toggle {
    width: 48px !important;
    height: 48px !important;
  }
  .nav__menu {
    position: fixed !important;
    inset: 92px .75rem auto .75rem !important;
    min-height: auto !important;
    height: auto !important;
    padding: 1.2rem !important;
    display: grid !important;
    gap: .3rem !important;
    background: rgba(255,255,255,.98) !important;
    color: var(--ink) !important;
    border: 1px solid rgba(7,27,51,.10) !important;
    box-shadow: 0 22px 60px rgba(7,27,51,.16) !important;
    transform: translateY(-12px) scale(.98) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity .22s ease, transform .22s ease !important;
    z-index: 80 !important;
  }
  .nav__menu.is-open {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }
  .nav__menu a {
    width: 100%;
    padding: .9rem .75rem;
    font-size: .92rem !important;
    letter-spacing: .16em !important;
    color: var(--ink) !important;
    border-bottom: 1px solid rgba(7,27,51,.08);
  }
  .nav__menu a:last-child { border-bottom: 0; }
  .nav__cta {
    margin-top: .35rem;
    justify-content: center;
    text-align: center;
    border-bottom: 0 !important;
  }

  .hero {
    min-height: auto !important;
    padding: clamp(8.2rem, 26vw, 10rem) 0 3.8rem !important;
    align-items: center !important;
  }
  .hero > .container.hero__content {
    width: min(100% - 2rem, var(--max-width)) !important;
    padding: 0 !important;
    margin-inline: auto !important;
  }
  .hero__content {
    padding: 0 !important;
    max-width: 100% !important;
  }
  .hero h1,
  .hero > .container.hero__content h1 {
    font-size: clamp(2.75rem, 13.2vw, 4.3rem) !important;
    line-height: .94 !important;
    letter-spacing: .035em !important;
    max-width: 100% !important;
    overflow-wrap: normal;
  }
  .hero__lead,
  .hero > .container.hero__content .hero__lead {
    max-width: 34rem !important;
    font-size: clamp(1rem, 4.2vw, 1.15rem) !important;
    line-height: 1.65 !important;
    margin-top: 1.05rem !important;
  }
  .hero__usp { display: none !important; }
  .hero__actions {
    width: 100%;
    margin-top: 1.7rem !important;
    gap: .75rem !important;
  }
  .hero__actions .btn {
    width: 100%;
    min-height: 3.25rem;
  }
  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(7,27,51,.96) 0%, rgba(31,42,68,.86) 55%, rgba(7,27,51,.70) 100%),
      radial-gradient(circle at 70% 35%, rgba(244,244,244,.10), transparent 28rem) !important;
  }

  .floating-socials {
    left: auto !important;
    right: .55rem !important;
    top: 58% !important;
    bottom: auto !important;
    translate: 0 -50% !important;
    grid-auto-flow: row !important;
    gap: .35rem !important;
    width: auto !important;
    padding: .35rem !important;
    border-radius: 999px !important;
    background: rgba(31,42,68,.84) !important;
    backdrop-filter: blur(14px) !important;
    box-shadow: 0 14px 34px rgba(7,27,51,.20) !important;
  }
  .floating-socials__link {
    width: 38px !important;
    height: 38px !important;
  }
  .floating-socials__link svg {
    width: 19px !important;
    height: 19px !important;
  }

  .services.section-padding {
    padding-top: 3.4rem !important;
    padding-bottom: 3.4rem !important;
  }
  .section-heading {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
  }
  .section-heading h2 {
    font-size: clamp(2.25rem, 12vw, 4rem) !important;
    line-height: .96 !important;
  }
  .service-grid {
    width: min(100% - 2rem, var(--max-width)) !important;
    margin-inline: auto !important;
  }
  .service-card {
    min-height: auto !important;
    padding: 5.35rem 4.2rem 1.6rem 1.35rem !important;
  }
  .service-card__icon {
    top: 1.15rem !important;
    left: 1.25rem !important;
    width: 52px !important;
    height: 52px !important;
  }
  .service-card h3 {
    font-size: clamp(1.45rem, 7vw, 2rem) !important;
    line-height: 1 !important;
    max-width: 12ch;
  }
  .service-card p {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }
}

@media (max-width: 430px) {
  .hero h1,
  .hero > .container.hero__content h1 {
    font-size: clamp(2.55rem, 12.4vw, 3.6rem) !important;
  }
  .hero__lead,
  .hero > .container.hero__content .hero__lead {
    font-size: 1rem !important;
  }
  .service-card {
    padding-right: 3.75rem !important;
  }
}


/* =========================================================
   FINAL OVERRIDES — white header, full-width video hero,
   mobile polish, and exact image filenames from uploaded HTML
   ========================================================= */
:root {
  --header-height: 118px;
}

.site-header,
.site-header.is-scrolled,
.site-header:has(.nav__menu.is-open) {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  min-height: var(--header-height);
  padding: 0;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.97) !important;
  color: var(--ink) !important;
  box-shadow: 0 12px 38px rgba(7,27,51,.08);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1320px, calc(100% - 2rem));
  min-height: var(--header-height);
}
.nav__logo { width: clamp(150px, 12vw, 230px) !important; }
.nav__menu { color: var(--ink) !important; }
.nav__menu a { color: var(--ink) !important; }
.nav__cta,
.nav__menu .nav__cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  border-color: var(--ink) !important;
  padding: .95rem 1.35rem;
}
.nav__toggle {
  color: var(--ink) !important;
  border-color: rgba(7,27,51,.28) !important;
  background: rgba(7,27,51,.035) !important;
}

.hero {
  margin-top: var(--header-height);
  min-height: calc(100svh - var(--header-height));
  width: 100%;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}
.hero__video,
.hero__overlay,
.hero__grid {
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__video {
  object-fit: cover;
  object-position: 58% center;
}
.hero__overlay {
  background:
    linear-gradient(90deg, rgba(7,27,51,.94) 0%, rgba(7,27,51,.76) 42%, rgba(7,27,51,.34) 100%),
    radial-gradient(circle at 72% 42%, rgba(244,244,244,.12), transparent 28rem);
}
.hero__content,
.hero > .container.hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  max-width: none;
  text-align: left;
  display: block;
}
.hero h1,
.hero > .container.hero__content h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 7.2vw, 7.1rem);
  line-height: .93;
}
.hero__lead,
.hero > .container.hero__content .hero__lead {
  max-width: 650px;
  font-size: clamp(1.04rem, 1.35vw, 1.25rem);
}
.hero__usp,
.hero > .container.hero__content .hero__usp {
  max-width: 620px;
}
.hero__actions {
  max-width: 620px;
}

.floating-socials {
  z-index: 90;
}

.service-card {
  padding-top: 5.7rem !important;
  align-content: start !important;
}
.service-card__icon {
  top: 1.2rem !important;
  left: 1.4rem !important;
  z-index: 2;
}
.service-card h3 { margin-top: .15rem; }

.intro__media img,
.signature-split__image img,
.about__visual img,
.project-card img,
.comparison__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 820px) {
  :root { --header-height: 116px; }
  .site-header,
  .site-header.is-scrolled,
  .site-header:has(.nav__menu.is-open) {
    min-height: var(--header-height);
  }
  .nav {
    min-height: var(--header-height);
    width: min(100% - 1.35rem, var(--max-width));
  }
  .nav__logo { width: clamp(150px, 42vw, 190px) !important; }
  .nav__menu {
    top: var(--header-height);
    inset: var(--header-height) 0 auto 0 !important;
    height: calc(100svh - var(--header-height));
    padding: 1.6rem 1.25rem 2rem !important;
    background: rgba(255,255,255,.98) !important;
    color: var(--ink) !important;
    transform: translateX(100%);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(7,27,51,.10);
    font-size: 1rem !important;
  }
  .nav__menu .nav__cta {
    justify-content: center;
    padding: 1rem 1.2rem !important;
    margin-top: .35rem;
  }

  .hero {
    margin-top: var(--header-height);
    min-height: calc(100svh - var(--header-height));
    align-items: end;
  }
  .hero__video { object-position: 58% center; }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(7,27,51,.50) 0%, rgba(7,27,51,.82) 44%, rgba(7,27,51,.96) 100%),
      linear-gradient(90deg, rgba(7,27,51,.76), rgba(7,27,51,.30));
  }
  .hero__content,
  .hero > .container.hero__content {
    width: min(100% - 1.35rem, var(--max-width));
    padding: clamp(3.2rem, 15vw, 5rem) 0 2.8rem;
  }
  .hero h1,
  .hero > .container.hero__content h1 {
    max-width: 100%;
    font-size: clamp(3.05rem, 13.8vw, 5.2rem) !important;
    line-height: .96;
    letter-spacing: .035em;
  }
  .hero__lead,
  .hero > .container.hero__content .hero__lead {
    max-width: 34rem;
    font-size: 1.03rem !important;
    line-height: 1.75;
    margin-top: 1.05rem;
  }
  .hero__usp { display: none !important; }
  .hero__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
    margin-top: 1.5rem;
  }
  .hero__actions .btn {
    width: 100%;
    min-height: 3.35rem;
  }
  .hero__card { display: none !important; }

  .floating-socials {
    top: auto !important;
    right: .85rem !important;
    bottom: .85rem !important;
    left: auto !important;
    translate: 0 0 !important;
    grid-auto-flow: row !important;
    padding: .45rem !important;
    border-radius: 999px !important;
    background: rgba(31,42,68,.78) !important;
  }
  .floating-socials__link {
    width: 40px !important;
    height: 40px !important;
  }

  .service-grid { grid-template-columns: 1fr !important; }
  .service-card {
    min-height: auto !important;
    padding: 5.4rem 1.35rem 1.6rem !important;
  }
  .service-card h3 { max-width: none; }
  .service-card p { font-size: .98rem; line-height: 1.7; }

  .signature-split__quote,
  .signature-split__image,
  .intro__media,
  .about__visual {
    min-height: auto !important;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 430px) {
  :root { --header-height: 108px; }
  .nav__logo { width: clamp(138px, 44vw, 174px) !important; }
  .nav__toggle { width: 48px; height: 48px; }
  .hero h1,
  .hero > .container.hero__content h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem) !important;
  }
  .hero__lead,
  .hero > .container.hero__content .hero__lead {
    font-size: .96rem !important;
  }
}


/* =========================================================
   FINAL FIX — true full-width hero video + frosted transparent header on scroll
   ========================================================= */
:root { --header-height: 118px; }
.site-header,
.site-header.is-scrolled,
.site-header:has(.nav__menu.is-open) {
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  z-index: 100 !important;
  min-height: var(--header-height) !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  color: var(--ink) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}
.site-header {
  background: rgba(255,255,255,.98) !important;
  box-shadow: 0 10px 34px rgba(7,27,51,.07) !important;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.74) !important;
  box-shadow: 0 12px 38px rgba(7,27,51,.08) !important;
}
.site-header:has(.nav__menu.is-open) { background: rgba(255,255,255,.98) !important; }
.nav {
  width: min(1320px, calc(100% - 2rem)) !important;
  min-height: var(--header-height) !important;
}
.nav__logo { width: clamp(150px, 12vw, 230px) !important; }
.nav__logo img { opacity: 1 !important; filter: none !important; }
.nav__menu,
.nav__menu a { color: var(--ink) !important; }
.nav__cta,
.nav__menu .nav__cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  border-color: var(--ink) !important;
}
.nav__toggle {
  color: var(--ink) !important;
  border-color: rgba(7,27,51,.28) !important;
  background: rgba(7,27,51,.035) !important;
}
.hero {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  margin-top: var(--header-height) !important;
  min-height: calc(100svh - var(--header-height)) !important;
  overflow: hidden !important;
  isolation: isolate !important;
  display: grid !important;
  align-items: center !important;
  background: var(--deep) !important;
  color: var(--white) !important;
}
.hero__video,
.hero__overlay,
.hero__grid {
  position: absolute !important;
  inset: 0 !important;
  width: 100vw !important;
  max-width: none !important;
  height: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}
.hero__video {
  object-fit: cover !important;
  object-position: center center !important;
  z-index: -3 !important;
}
.hero__overlay {
  z-index: -2 !important;
  background:
    linear-gradient(90deg, rgba(7,27,51,.95) 0%, rgba(7,27,51,.78) 42%, rgba(7,27,51,.36) 100%),
    radial-gradient(circle at 75% 45%, rgba(244,244,244,.10), transparent 32rem) !important;
}
.hero__grid { z-index: -1 !important; }
.hero__content,
.hero > .container.hero__content {
  position: relative !important;
  z-index: 2 !important;
  width: min(var(--max-width), calc(100% - 2rem)) !important;
  max-width: none !important;
  margin-inline: auto !important;
  padding: clamp(4.5rem, 8vw, 7rem) 0 !important;
  text-align: left !important;
  display: block !important;
}
.hero h1,
.hero > .container.hero__content h1 {
  max-width: 760px !important;
  font-size: clamp(3.4rem, 7.2vw, 7.1rem) !important;
  line-height: .93 !important;
}
.hero__lead,
.hero > .container.hero__content .hero__lead { max-width: 650px !important; }
@media (max-width: 820px) {
  :root { --header-height: 112px; }
  .site-header,
  .site-header.is-scrolled,
  .site-header:has(.nav__menu.is-open) { min-height: var(--header-height) !important; }
  .nav {
    min-height: var(--header-height) !important;
    width: min(100% - 1.35rem, var(--max-width)) !important;
  }
  .nav__logo { width: clamp(150px, 42vw, 190px) !important; }
  .nav__menu {
    inset: var(--header-height) 0 auto 0 !important;
    height: calc(100svh - var(--header-height)) !important;
    padding: 1.6rem 1.25rem 2rem !important;
    background: rgba(255,255,255,.98) !important;
    color: var(--ink) !important;
  }
  .hero {
    margin-top: var(--header-height) !important;
    min-height: calc(92svh - var(--header-height)) !important;
    align-items: end !important;
  }
  .hero__video { object-position: 50% center !important; }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(7,27,51,.42) 0%, rgba(7,27,51,.82) 46%, rgba(7,27,51,.97) 100%),
      linear-gradient(90deg, rgba(7,27,51,.80), rgba(7,27,51,.30)) !important;
  }
  .hero__content,
  .hero > .container.hero__content {
    width: min(100% - 1.35rem, var(--max-width)) !important;
    padding: clamp(3rem, 14vw, 4.8rem) 0 2.6rem !important;
  }
  .hero h1,
  .hero > .container.hero__content h1 {
    font-size: clamp(2.65rem, 12.2vw, 4.65rem) !important;
    line-height: .98 !important;
    max-width: 100% !important;
  }
  .hero__lead,
  .hero > .container.hero__content .hero__lead {
    font-size: .98rem !important;
    line-height: 1.72 !important;
    max-width: 32rem !important;
  }
}
/* Mobil: gør faste SoMe-knapper mere diskrete */
@media (max-width: 768px) {
  .floating-socials {
    position: fixed;
    right: auto;
    left: 50%;
    bottom: 18px;
    top: auto;
    transform: translateX(-50%);
    z-index: 50;

    display: flex;
    flex-direction: row;
    gap: 0;

    background: rgba(31, 42, 68, 0.86);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    overflow: hidden;

    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  }

  .floating-socials__link {
    width: 52px;
    height: 52px;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    background: transparent;
  }

  .floating-socials__link:last-child {
    border-right: none;
  }

  .floating-socials__link svg {
    width: 21px;
    height: 21px;
  }
}