:root {
  --ink: #12222d;
  --muted: #5d6b74;
  --line: #dbe5e8;
  --paper: #f7fbfb;
  --white: #ffffff;
  --green: #0d7a66;
  --green-dark: #075a4c;
  --red: #b83232;
  --blue: #1d5d7a;
  --shadow: 0 18px 50px rgba(13, 38, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 229, 232, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--green-dark);
  white-space: nowrap;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--green-dark);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

.header-call,
.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.secondary {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  align-items: end;
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(44px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: #0b2430;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(6, 31, 42, 0.86), rgba(6, 31, 42, 0.56) 48%, rgba(6, 31, 42, 0.18));
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1100ms ease, transform 6500ms ease;
}

.hero-slider img.active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8be3d0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.05rem, 4.8vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  position: relative;
  z-index: 2;
  padding: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-panel span,
.contact-actions span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel a {
  display: block;
  margin: 6px 0 10px;
  color: var(--red);
  font-size: 2rem;
  font-weight: 900;
  text-decoration: none;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-links a {
  min-height: 132px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 22px;
  background: var(--white);
  text-align: center;
  text-decoration: none;
  font-weight: 900;
}

.quick-links img {
  width: 48px;
  height: 48px;
}

.section {
  padding: clamp(56px, 8vw, 98px) clamp(18px, 5vw, 72px);
}

.section.compact {
  padding-top: clamp(38px, 5vw, 64px);
  padding-bottom: clamp(38px, 5vw, 64px);
}

.split,
.about,
.contact,
.evidence {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.steps,
.service-grid {
  display: grid;
  gap: 16px;
}

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

.steps article,
.service-grid article,
.info-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 38, 51, 0.06);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

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

.service-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.service-grid article {
  box-shadow: none;
}

.about {
  background: #eaf4f3;
}

.about.compact {
  align-items: center;
}

.about-copy p {
  max-width: 720px;
  color: #304653;
}

.about.compact h2 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.about.compact .about-copy p {
  margin: 0 0 12px;
}

.about-media img {
  width: 100%;
  min-height: 280px;
  max-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.evidence {
  grid-template-columns: 1.35fr 0.65fr;
}

.info-card dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.info-card dl div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-weight: 800;
}

dd {
  margin: 0;
}

.info-card.accent {
  color: var(--white);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.info-card.accent p {
  color: rgba(255, 255, 255, 0.82);
}

.info-card.accent strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

.contact {
  background: var(--ink);
  color: var(--white);
}

.contact .eyebrow {
  color: #8be3d0;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.contact-actions a {
  min-height: 120px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.contact-actions strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.addresses {
  color: rgba(255, 255, 255, 0.78);
}

.map {
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  background: #dce7ea;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.legal {
  max-width: 900px;
  min-height: 62vh;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: #d9e6e8;
  background: #0b1820;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #d9e6e8;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(12, 26, 35, 0.96);
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner button {
  min-width: 110px;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: #9de7d7;
  font-weight: 900;
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open,
  .site-nav.visible {
    display: flex;
  }

  .header-call {
    display: none;
  }

  .hero,
  .split,
  .about,
  .contact,
  .evidence {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 74px;
  }

  .steps,
  .service-grid,
  .quick-links,
  .contact-actions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .brand span {
    font-size: 0.95rem;
  }

  .hero-actions,
  .cookie-banner,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .quick-links,
  .steps,
  .service-grid,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .info-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
