:root {
  --yellow: #f4b728;
  --yellow-strong: #dd9f09;
  --yellow-soft: #fff3cf;
  --blue: #2f6491;
  --blue-deep: #17324a;
  --blue-ink: #274a68;
  --ink: #0f1215;
  --ink-2: #1a1f24;
  --charcoal: #23272c;
  --graphite: #4a5159;
  --white: #ffffff;
  --smoke: #f5f5f2;
  --smoke-2: #ecefea;
  --line: rgba(15, 18, 21, 0.1);
  --line-light: rgba(255, 255, 255, 0.16);
  --container: 1240px;
  --title-font: "Barlow Condensed", sans-serif;
  --body-font: "Manrope", sans-serif;
  --shadow-lg: 0 28px 62px rgba(10, 14, 18, 0.15);
  --shadow-md: 0 16px 34px rgba(10, 14, 18, 0.09);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--body-font);
  background: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

img,
video {
  max-width: 100%;
}

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

.section {
  padding: 104px 0;
}

.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  font-family: var(--title-font);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.floating-whatsapp svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 12, 14, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  background: rgba(10, 12, 14, 0.98);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark-image {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 0;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  color: var(--white);
  font-family: var(--title-font);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.brand-accent {
  color: var(--yellow);
}

.brand-tag {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--white);
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu > li {
  position: relative;
}

.menu > li > a,
.menu > li > button {
  border: 0;
  background: transparent;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--title-font);
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease;
}

.menu > li > a:hover,
.menu > li > button:hover {
  color: var(--yellow);
}

.menu > li > a[aria-current="page"] {
  color: var(--yellow);
}

.menu > li > button::after {
  content: "▾";
  margin-left: 8px;
  font-size: 0.8em;
}

.dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 230px;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  background: rgba(17, 20, 23, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.dropdown li a {
  display: block;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.dropdown li a:hover {
  color: var(--yellow);
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 14px;
  padding: 0 26px;
  font-family: var(--title-font);
  font-size: 1.18rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.header-cta {
  min-height: 50px;
  padding: 0 18px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(244, 183, 40, 0.24);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: min(88vh, 860px);
  overflow: hidden;
  background: #1a1d20;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.42) brightness(0.62) contrast(1.04);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 9, 11, 0.9) 0%, rgba(7, 9, 11, 0.8) 35%, rgba(7, 9, 11, 0.32) 68%, rgba(7, 9, 11, 0.44) 100%),
    linear-gradient(180deg, rgba(18, 31, 31, 0.1), rgba(18, 31, 31, 0.5));
}

.hero__shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: min(88vh, 860px);
  padding: 96px 0 42px;
}

.hero__content {
  max-width: 780px;
}

.hero-kicker,
.section-eyebrow {
  margin: 0 0 18px;
  font-family: var(--title-font);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--yellow);
}

.hero-kicker::after {
  content: "";
  width: 88px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.services-overview h2,
.projects h2,
.trust h2,
.quote-flow h2,
.problem-solutions h2,
.types h2 {
  margin: 0;
  font-family: var(--title-font);
  font-weight: 800;
  line-height: 0.92;
}

.hero h1 {
  max-width: 11.2ch;
  font-size: clamp(3.95rem, 7.8vw, 6.6rem);
}

.hero-title {
  display: block;
}

.hero-title--light {
  color: var(--white);
}

.hero-title--accent {
  color: var(--yellow);
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-width: 180px;
  border: 0;
  cursor: pointer;
}

.button--primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(244, 183, 40, 0.24);
}

.button--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-benefit__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244, 183, 40, 0.36);
  border-radius: 50%;
  color: var(--yellow);
  font-family: var(--title-font);
  font-size: 1rem;
  font-weight: 800;
}

.hero-benefit strong {
  color: var(--white);
  font-family: var(--title-font);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.section-eyebrow {
  color: var(--yellow-strong);
}

.section-eyebrow--gold {
  color: var(--yellow);
}

.section-eyebrow--dark {
  color: rgba(15, 18, 21, 0.58);
}

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

.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.text-link {
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 1.22rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.text-link::after,
.service-card a::after,
.project-card a::after,
.type-card__body a::after {
  content: " →";
}

.services-overview {
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f5 100%);
}

.services-overview__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.services-overview__intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 18px 48px;
  align-items: end;
  padding-right: 0;
  margin-bottom: 8px;
}

.services-overview__intro .section-eyebrow,
.services-overview__intro h2 {
  grid-column: 1;
}

.services-overview__intro > p:not(.section-eyebrow),
.services-overview__intro .text-link {
  grid-column: 2;
}

.services-overview__intro > p:not(.section-eyebrow) {
  grid-row: 1 / 3;
  align-self: end;
  margin-bottom: 0;
}

.services-overview__intro .text-link {
  align-self: start;
}

.services-overview h2,
.projects h2,
.trust h2,
.quote-flow h2,
.problem-solutions h2,
.types h2 {
  max-width: 11ch;
  color: var(--ink);
  font-size: clamp(2.9rem, 4.8vw, 4.55rem);
}

.services-overview__intro p,
.project-card__body p,
.type-card__body p,
.quote-flow__intro p {
  max-width: 62ch;
  color: var(--graphite);
  line-height: 1.85;
}

.service-card,
.project-card,
.type-card,
.trust__panel--light {
  border: 1px solid rgba(15, 18, 21, 0.09);
  box-shadow: var(--shadow-md);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  min-height: 390px;
  padding: 32px 28px 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-card:hover {
  border-color: rgba(15, 18, 21, 0.16);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(10, 14, 18, 0.13);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 4px;
  border-radius: 16px;
  border: 2px solid rgba(15, 18, 21, 0.08);
  color: var(--ink);
  flex: 0 0 auto;
}

.service-card__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.project-card h3,
.type-card__body h3,
.footer-column h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 0.98;
}

.service-card h3 {
  min-height: 3em;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 2.2vw, 2.32rem);
  overflow-wrap: anywhere;
}

.service-card p {
  margin: 0 0 4px;
  color: var(--graphite);
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.service-card a,
.project-card a,
.type-card__body a {
  margin-top: auto;
  padding-top: 8px;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 1.16rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.stats-strip {
  background: #0e1013;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 34px 0;
}

.stat-item {
  display: grid;
  gap: 8px;
  align-content: center;
}

.stat-item strong {
  color: var(--yellow);
  font-family: var(--title-font);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.9;
}

.stat-item span {
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--title-font);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.international {
  background:
    linear-gradient(90deg, rgba(244, 183, 40, 0.11), transparent 34%),
    #f7f7f3;
}

.international__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.international__content h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(3rem, 5vw, 4.7rem);
  font-weight: 800;
  line-height: 0.92;
}

.international__content p {
  max-width: 66ch;
  color: var(--graphite);
  line-height: 1.85;
}

.international__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.international__cards article {
  min-height: 310px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: #0e1013;
  box-shadow: var(--shadow-md);
}

.international__cards span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 36px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--title-font);
  font-weight: 800;
}

.international__cards h3 {
  margin: 28px 0 12px;
  color: var(--white);
  font-family: var(--title-font);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 0.96;
}

.international__cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.nordic-projects {
  background: #0e1013;
  color: var(--white);
}

.nordic-projects h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--white);
  font-family: var(--title-font);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.92;
}

.section-note {
  max-width: 55ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.faroe-panorama {
  overflow: hidden;
  margin: 42px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.faroe-panorama img {
  display: block;
  width: 100%;
  height: clamp(280px, 45vw, 560px);
  object-fit: cover;
}

.faroe-panorama figcaption {
  max-width: 78ch;
  padding: 18px 22px 20px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.nordic-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 42px;
}

.nordic-feature {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.nordic-feature__media {
  position: relative;
}

.nordic-feature__media img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.nordic-feature__body {
  position: relative;
  padding: 34px 32px 36px;
}

.nordic-feature__body .project-tag {
  position: static;
  display: inline-flex;
  margin-bottom: 18px;
}

.nordic-feature h3 {
  max-width: 16ch;
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--title-font);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.95;
}

.nordic-feature p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.nordic-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.nordic-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.nordic-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
}

.nordic-media-grid {
  display: grid;
  gap: 18px;
}

.nordic-media-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.nordic-media-grid img,
.nordic-media-grid video {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.nordic-media-grid figcaption {
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.5;
}

.projects {
  background: var(--white);
}

.projects-intro {
  max-width: 52ch;
  margin: 0;
  color: var(--graphite);
  line-height: 1.8;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.project-grid--index {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.project-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.project-card:hover {
  border-color: rgba(15, 18, 21, 0.16);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(10, 14, 18, 0.13);
}

.project-card__media {
  position: relative;
}

.project-card__media img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-card__media video {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-tag {
  position: absolute;
  left: 20px;
  bottom: 18px;
  padding: 7px 12px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 24px 28px;
}

.project-card__body p {
  margin: 0;
}

.civil-projects {
  background:
    linear-gradient(90deg, rgba(244, 183, 40, 0.12), transparent 36%),
    #f5f5f2;
}

.civil-projects h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.92;
}

.civil-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 42px;
}

.civil-showcase__media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #0e1013;
  box-shadow: var(--shadow-md);
}

.civil-showcase__media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.civil-showcase__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.civil-showcase__content .project-tag {
  position: static;
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 22px;
}

.civil-showcase__content h3 {
  max-width: 15ch;
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 0.94;
}

.civil-showcase__content p {
  max-width: 62ch;
  margin: 0;
  color: var(--graphite);
  line-height: 1.85;
}

.civil-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.civil-points article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--smoke);
}

.civil-points strong {
  color: var(--yellow-strong);
  font-family: var(--title-font);
  font-size: 1.6rem;
  line-height: 1;
}

.civil-points span {
  color: var(--ink-2);
  font-weight: 700;
  line-height: 1.45;
}

.fire-projects {
  background:
    linear-gradient(90deg, rgba(244, 183, 40, 0.13), transparent 38%),
    #0e1013;
  color: var(--white);
}

.fire-projects h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--white);
  font-family: var(--title-font);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.92;
}

.fire-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 42px;
}

.fire-hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  border-radius: var(--radius-lg);
  background: #111418;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.fire-hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fire-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 24%, rgba(8, 10, 12, 0.45) 58%, rgba(8, 10, 12, 0.92) 100%),
    linear-gradient(90deg, rgba(8, 10, 12, 0.72), transparent 54%);
}

.fire-hero__content {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 1;
}

.fire-hero__content .project-tag {
  position: static;
  display: inline-flex;
  margin-bottom: 20px;
}

.fire-hero h3 {
  max-width: 13ch;
  margin: 0 0 18px;
  color: var(--white);
  font-family: var(--title-font);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.9;
}

.fire-hero p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.fire-gallery {
  display: grid;
  gap: 18px;
}

.fire-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.fire-gallery img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.fire-gallery figcaption {
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.gallery-page {
  background: var(--white);
}

.gallery-hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 13, 15, 0.96), rgba(12, 13, 15, 0.78)),
    url("./assets/media/nordic-basin-finished.jpg") center / cover;
  color: var(--white);
}

.gallery-hero__inner {
  max-width: 850px;
}

.gallery-hero h1,
.gallery-section h2,
.gallery-cta h2 {
  margin: 0;
  font-family: var(--title-font);
  font-weight: 800;
  line-height: 0.92;
}

.gallery-hero h1 {
  max-width: 9ch;
  font-size: clamp(4.2rem, 8vw, 7rem);
}

.gallery-hero p:last-child {
  max-width: 58ch;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.gallery-section {
  background: var(--smoke);
}

.gallery-section h2,
.gallery-cta h2 {
  color: var(--ink);
  font-size: clamp(3.1rem, 5.8vw, 5rem);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0 32px;
}

.gallery-filter {
  min-height: 44px;
  border: 1px solid rgba(15, 18, 21, 0.12);
  border-radius: 999px;
  padding: 0 17px;
  background: var(--white);
  color: var(--graphite);
  font-family: var(--title-font);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.gallery-filter:hover,
.gallery-filter.is-active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

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

.gallery-chooser {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.gallery-grid[hidden],
.gallery-chooser[hidden],
.gallery-category-note[hidden] {
  display: none;
}

.gallery-category-note {
  margin: 0 0 30px;
  border: 1px solid rgba(15, 18, 21, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.gallery-category-note > span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 11px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-category-note h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 0.96;
}

.gallery-category-note p {
  max-width: 900px;
  margin: 16px 0 0;
  color: var(--graphite);
  line-height: 1.8;
}

.gallery-choice {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 340px;
  border: 0;
  border-radius: var(--radius-md);
  padding: 0;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(10, 14, 18, 0.08);
}

.gallery-choice img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-choice::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0.94;
  transition: opacity 220ms ease;
}

.gallery-choice:hover img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.04);
}

.gallery-blocks {
  display: grid;
  gap: 46px;
}

.gallery-block {
  display: grid;
  gap: 18px;
}

.gallery-block[hidden] {
  display: none;
}

.gallery-block__head {
  display: grid;
  max-width: 760px;
  gap: 8px;
}

.gallery-block__head h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(2.15rem, 3.4vw, 3.1rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.gallery-block__head p {
  margin: 0;
  color: var(--graphite);
  font-size: 1rem;
  line-height: 1.65;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.gallery-block__empty {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px dashed rgba(15, 18, 21, 0.18);
  border-radius: var(--radius-md);
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--graphite);
  font-weight: 700;
}

.gallery-block__empty[hidden] {
  display: none;
}

.gallery-block__empty code {
  color: var(--ink);
  font-weight: 800;
}

.gallery-item {
  position: relative;
  display: block;
  grid-column: span 2;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  min-height: 310px;
  border: 0;
  border-radius: var(--radius-md);
  padding: 0;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(10, 14, 18, 0.08);
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item img,
.gallery-item video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item--video {
  cursor: default;
}

.gallery-item--feature-video {
  grid-column: span 3;
  aspect-ratio: 16 / 9;
  min-height: 420px;
}

.gallery-item--feature-card {
  grid-column: span 3;
  aspect-ratio: 16 / 9;
  min-height: 420px;
}

.gallery-item--feature-row-start {
  grid-column: 1 / span 3;
}

.gallery-item--feature-row-start + .gallery-item--feature-video {
  grid-column: 4 / span 3;
}

.gallery-item--full-video {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  min-height: 460px;
}

.gallery-item--feature-video video {
  min-height: 420px;
}

.gallery-item--feature-card img {
  min-height: 420px;
}

.gallery-item--full-video video {
  min-height: 460px;
}

.gallery-item--video::after,
.gallery-item--video .gallery-item__overlay {
  pointer-events: none;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.76) 100%);
  opacity: 0.92;
  transition: opacity 220ms ease;
}

.gallery-item__overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: grid;
  gap: 7px;
  text-align: left;
}

.gallery-item__overlay span {
  width: fit-content;
  padding: 6px 10px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-item__overlay strong {
  max-width: 22ch;
  font-family: var(--title-font);
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.gallery-item__overlay p {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.04);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-empty {
  margin: 28px 0 0;
  color: var(--graphite);
  font-weight: 700;
}

.gallery-cta {
  background: var(--yellow);
  color: var(--ink);
}

.gallery-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 54px 0;
}

.gallery-cta .button--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 7, 9, 0.88);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox__frame {
  width: min(1040px, 100%);
  max-height: calc(100vh - 88px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #0c0d0f;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.gallery-lightbox__frame img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  background: #050607;
}

.gallery-lightbox__frame figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 18px 22px 20px;
  color: var(--white);
}

.gallery-lightbox__frame figcaption span {
  padding: 6px 10px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--title-font);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-lightbox__frame figcaption strong {
  font-family: var(--title-font);
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-lightbox__frame figcaption p {
  flex-basis: 100%;
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.5;
}

.gallery-lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
}

body.gallery-modal-open {
  overflow: hidden;
}

.trust {
  background:
    linear-gradient(90deg, #0e1013 0%, #0e1013 52%, #f5f5f2 52%, #f5f5f2 100%);
}

.trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.trust__panel {
  padding: 54px 48px;
}

.trust__panel--dark {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.04), transparent 44%),
    #0e1013;
}

.trust__panel--light {
  background: var(--white);
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.85;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--yellow);
  font-family: var(--title-font);
  font-size: 1.45rem;
  font-weight: 800;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.cert-badge {
  display: grid;
  place-items: center;
  min-height: 72px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--smoke);
  color: var(--blue-ink);
  font-family: var(--title-font);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.trust__media {
  margin-top: 28px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.trust__media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111418;
}

.quote-flow {
  background:
    linear-gradient(90deg, var(--yellow) 0%, var(--yellow) 32%, #0d0f12 32%, #0d0f12 100%);
}

.quote-flow__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.quote-flow__intro {
  padding: 56px 44px;
  background: linear-gradient(180deg, #f8c53f 0%, var(--yellow) 100%);
}

.quote-flow__intro h2 {
  max-width: 9ch;
}

.quote-flow__intro p {
  margin-top: 16px;
}

.quote-points {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.quote-points li {
  position: relative;
  padding-left: 34px;
  color: rgba(15, 18, 21, 0.88);
  line-height: 1.8;
  font-weight: 600;
}

.quote-points li::before {
  content: "•";
  position: absolute;
  left: 10px;
  color: var(--ink);
  font-size: 1.4rem;
}

.quote-flow__form {
  padding: 42px 42px 38px;
  background: #0d0f12;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.step {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 12px;
  padding-bottom: 16px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.step::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.step span {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--title-font);
  font-size: 1rem;
  font-weight: 800;
}

.step strong {
  font-family: var(--title-font);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.step.is-active {
  color: var(--yellow);
}

.step.is-active span {
  background: var(--yellow);
  color: var(--ink);
}

.step.is-active::after {
  height: 2px;
  background: var(--yellow);
}

.multi-step-form {
  min-height: 420px;
}

.form-panel {
  display: none;
}

.form-panel.is-active {
  display: block;
}

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

.form-grid__full {
  grid-column: 1 / -1;
}

.form-grid label,
.measure-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-grid label span,
.measure-grid label span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid textarea,
.form-grid select,
.measure-grid input,
.measure-grid select {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 16px 18px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus,
.measure-grid input:focus,
.measure-grid select:focus {
  border-color: rgba(244, 183, 40, 0.92);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(244, 183, 40, 0.78);
  outline-offset: 4px;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder,
.measure-grid input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.upload-area {
  margin-bottom: 20px;
}

.upload-area input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.upload-area__label {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 220px;
  padding: 32px 24px;
  border: 1.5px dashed rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  cursor: pointer;
}

.upload-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 2.2rem;
  font-weight: 800;
}

.upload-area__label strong {
  font-family: var(--title-font);
  font-size: 1.9rem;
  text-transform: uppercase;
}

.upload-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
}

.upload-list li {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.form-status {
  flex-basis: 100%;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-status.is-error {
  color: var(--yellow);
  font-weight: 700;
}

.form-status.is-success {
  color: rgba(255, 255, 255, 0.86);
}

.form-grid [aria-invalid="true"],
.measure-grid [aria-invalid="true"] {
  border-color: rgba(244, 183, 40, 0.92);
  background: rgba(244, 183, 40, 0.08);
}

.button.is-hidden {
  display: none;
}

.types {
  background: linear-gradient(180deg, #f5f5f2 0%, #edf0eb 100%);
}

.types-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.carousel-window {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 320ms ease;
}

.type-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
}

.type-card__media {
  min-height: 100%;
  background: #101317;
}

.type-card__media img,
.type-card__media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.type-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.carousel-nav {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(244, 183, 40, 0.2);
}

.carousel-status {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 1.2rem;
  font-weight: 700;
}

.problem-solutions {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f5f2 0%, #edf0eb 100%);
}

.problem-solutions.section {
  padding-top: 96px;
  padding-bottom: 98px;
}

.problem-solutions__head {
  align-items: flex-start;
}

.problem-solutions h2 {
  max-width: 12ch;
}

.problem-solutions__intro {
  max-width: 690px;
  margin: 8px 0 0;
  color: var(--graphite);
  font-size: 1.04rem;
  line-height: 1.85;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.problem-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 410px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(15, 18, 21, 0.09);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 183, 40, 0.42);
  box-shadow: var(--shadow-lg);
}

.problem-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow) 0%, rgba(244, 183, 40, 0.2) 100%);
}

.problem-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(244, 183, 40, 0.44);
  background: rgba(244, 183, 40, 0.16);
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 1.1rem;
  font-weight: 800;
}

.problem-card h3,
.problem-cta h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(1.95rem, 2.6vw, 2.55rem);
  font-weight: 800;
  line-height: 0.98;
}

.problem-card__copy {
  display: grid;
  gap: 16px;
  margin-top: auto;
}

.problem-card__copy p {
  margin: 0;
  color: var(--graphite);
  line-height: 1.72;
}

.problem-card__copy span {
  display: block;
}

.problem-card__solution {
  padding: 16px 16px 17px;
  border-left: 4px solid var(--yellow);
  border-radius: 16px;
  background: #f6f6f1;
}

.problem-card__copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.problem-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  margin-top: 28px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: #0e1013;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.problem-cta h3 {
  color: var(--white);
}

.problem-cta p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.problem-cta .button {
  justify-self: end;
  white-space: nowrap;
}

.site-footer {
  background: #0c0d0f;
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.8fr 0.9fr;
  gap: 34px;
  padding: 60px 0 48px;
}

.brand-mark-image--footer {
  width: 72px;
  height: 72px;
}

.footer-brand p,
.footer-column ul,
.footer-column li,
.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  text-decoration: none;
}

.footer-column--links a {
  cursor: pointer;
  transition: color 180ms ease;
}

.footer-column--links a:hover {
  color: var(--yellow);
}

.footer-column h3 {
  color: var(--white);
  font-size: 2.2rem;
}

.certifications {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-cert-title {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--title-font);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.footer-socials a:hover {
  border-color: rgba(244, 183, 40, 0.55);
  background: rgba(244, 183, 40, 0.08);
  color: var(--yellow);
}

.footer-socials svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.certifications span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--yellow);
  font-family: var(--title-font);
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 28;
  width: 60px;
  height: 60px;
  background: #24d366;
  box-shadow: 0 18px 30px rgba(36, 211, 102, 0.24);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

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

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1120px) {
  .services-overview__grid,
  .project-grid,
  .problem-grid,
  .gallery-chooser,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-overview__intro {
    grid-column: 1 / -1;
    max-width: none;
  }

  .trust {
    background: #f5f5f2;
  }

  .trust__grid,
  .quote-flow__grid,
  .international__grid,
  .nordic-showcase,
  .civil-showcase,
  .fire-showcase {
    grid-template-columns: 1fr;
  }

  .quote-flow {
    background: #0d0f12;
  }

  .quote-flow__intro {
    background: linear-gradient(180deg, #f8c53f 0%, var(--yellow) 100%);
  }

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

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

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

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

  .fire-hero {
    min-height: 560px;
  }

  .problem-cta {
    grid-template-columns: 1fr;
  }

  .problem-cta .button {
    justify-self: start;
  }

  .civil-showcase__media video {
    max-height: 620px;
  }

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

  .gallery-item,
  .gallery-item--feature-video,
  .gallery-item--feature-card {
    grid-column: span 2;
  }

  .gallery-item--feature-row-start {
    grid-column: span 2;
  }

  .gallery-item--full-video {
    grid-column: 1 / -1;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: 84px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    background: rgba(10, 12, 14, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.3);
  }

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

  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 16px 22px;
  }

  .menu > li > a,
  .menu > li > button {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
  }

  .dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 10px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .has-dropdown.is-open .dropdown {
    display: block;
  }

  .hero-benefits,
  .services-overview__grid,
  .international__cards,
  .nordic-media-grid,
  .fire-gallery,
  .project-grid,
  .problem-grid,
  .gallery-chooser,
  .gallery-grid,
  .footer-grid,
  .form-grid,
  .measure-grid {
    grid-template-columns: 1fr;
  }

  .services-overview__grid {
    gap: 22px;
  }

  .gallery-item,
  .gallery-item--feature-video,
  .gallery-item--feature-card {
    grid-column: 1 / -1;
  }

  .gallery-item--feature-row-start {
    grid-column: 1 / -1;
  }

  .gallery-item--full-video {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .gallery-item--full-video video {
    min-height: 300px;
  }

  .footer-grid {
    gap: 30px;
  }

  .problem-card {
    min-height: auto;
  }

  .brand-mark-image--footer {
    width: 66px;
    height: 66px;
  }

  .services-overview__intro {
    display: block;
    margin-bottom: 6px;
  }

  .services-overview__intro > p:not(.section-eyebrow) {
    margin-bottom: 0;
  }

  .service-card {
    min-height: 360px;
    padding: 30px 28px 28px;
  }

  .service-card__icon {
    margin-bottom: 2px;
  }

  .service-card h3 {
    max-width: 12ch;
    min-height: 0;
  }

  .service-card p {
    max-width: 100%;
  }

  .section-head--split,
  .gallery-cta__inner,
  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .type-card {
    grid-template-columns: 1fr;
  }

  .type-card__media img,
  .type-card__media video {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 96px;
  }

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

  .services-overview__grid {
    gap: 18px;
  }

  .problem-card,
  .problem-cta {
    padding: 26px 22px;
  }

  .problem-card h3,
  .problem-cta h3 {
    font-size: clamp(1.9rem, 10vw, 2.45rem);
  }

  .service-card {
    gap: 14px;
    min-height: 0;
    padding: 28px 28px 30px;
    border-radius: 20px;
  }

  .service-card h3 {
    margin-bottom: 12px;
    min-height: 0;
    font-size: clamp(2rem, 11vw, 2.55rem);
  }

  .service-card p {
    margin-bottom: 24px;
    line-height: 1.72;
  }

  .site-header__inner {
    gap: 14px;
    min-height: 72px;
  }

  .brand-mark-image {
    width: 56px;
    height: 56px;
  }

  .brand-name {
    font-size: 1.7rem;
  }

  .brand-tag {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero__shell {
    min-height: 680px;
    padding-top: 56px;
    padding-bottom: 34px;
  }

  .hero h1 {
    max-width: 11.4ch;
    font-size: clamp(2.95rem, 13vw, 4.45rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 74px 0;
  }

  .gallery-hero h1 {
    font-size: clamp(3.25rem, 14vw, 4.7rem);
  }

  .gallery-filters {
    gap: 8px;
    margin: 28px 0 24px;
  }

  .gallery-filter {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.94rem;
  }

  .gallery-item,
  .gallery-choice,
  .gallery-item img,
  .gallery-choice img,
  .gallery-item video {
    min-height: 260px;
  }

  .gallery-item__overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .gallery-item__overlay strong {
    font-size: 1.38rem;
  }

  .gallery-item__overlay p {
    font-size: 0.84rem;
    line-height: 1.34;
  }

  .gallery-cta__inner {
    padding: 42px 0;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox__frame figcaption strong {
    font-size: 1.45rem;
  }

  .stats-strip__grid,
  .badge-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    padding-bottom: 12px;
  }

  .quote-flow__intro,
  .quote-flow__form,
  .trust__panel,
  .nordic-feature__body,
  .civil-showcase__content,
  .type-card__body {
    padding: 30px 24px;
  }

  .nordic-feature__media img {
    height: 300px;
  }

  .faroe-panorama img {
    height: 260px;
  }

  .faroe-panorama figcaption {
    padding: 16px 18px 18px;
  }

  .nordic-media-grid img,
  .nordic-media-grid video {
    height: 230px;
  }

  .civil-showcase__media video {
    min-height: 520px;
  }

  .civil-showcase__content {
    order: -1;
  }

  .civil-points article {
    grid-template-columns: 1fr;
  }

  .fire-hero {
    min-height: 520px;
  }

  .fire-hero__content {
    left: 24px;
    right: 24px;
    bottom: 26px;
  }

  .fire-gallery img {
    height: 230px;
  }

  .project-card__media img {
    height: 220px;
  }

  .types-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-nav {
    order: 2;
    justify-self: center;
  }

  .form-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-bottom__inner {
    min-height: auto;
    padding: 18px 0;
  }

  .footer-socials,
  .certifications {
    flex-wrap: wrap;
  }
}

@media (max-width: 380px) {
  .brand {
    gap: 8px;
  }

  .brand-mark-image {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 1.48rem;
  }

  .nav-toggle {
    padding: 9px 11px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 3.7rem);
  }
}
