:root {
  --ink: #082f35;
  --ink-soft: #21465a;
  --green: #1f9277;
  --green-dark: #146b5b;
  --amber: #d96f00;
  --sun: #f4b63f;
  --paper: #f7fbf7;
  --line: #dce7e4;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(8, 47, 53, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 14px clamp(16px, 4vw, 48px);
  color: var(--white);
  background: rgba(8, 47, 53, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--sun);
  font-size: 0.88rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 28px);
  font-weight: 650;
  font-size: 0.95rem;
}

.nav a,
.header-cta {
  opacity: 0.94;
}

.nav a:hover,
.header-cta:hover {
  opacity: 1;
}

.header-cta {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 118px clamp(18px, 5vw, 72px) 72px;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 32, 37, 0.9), rgba(4, 32, 37, 0.52) 48%, rgba(4, 32, 37, 0.2)),
    linear-gradient(0deg, rgba(4, 32, 37, 0.62), rgba(4, 32, 37, 0.1));
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4.8rem, 5.2rem);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 2.55rem, 3rem);
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  background: var(--white);
  padding: 22px;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 1.05rem;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--ink-soft);
}

.section,
.split-section,
.zone-section,
.contact-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading p:not(.eyebrow),
.split-section p,
.zone-copy p,
.contact-section p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.service-card,
.zone-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--ink);
  background: #ffe5b6;
  font-weight: 850;
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 6vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.text-stack {
  display: grid;
  gap: 18px;
}

.text-stack p {
  margin: 0;
}

.muted {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: #edf6f1;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.timeline li {
  min-height: 170px;
  padding: 22px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  font-size: 1.1rem;
}

.timeline span {
  margin-top: 10px;
  color: var(--ink-soft);
}

.zone-section {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: 28px;
}

.zone-panel {
  display: grid;
  align-content: center;
  min-height: 220px;
  color: var(--white);
  background: var(--ink);
  border-color: transparent;
}

.zone-panel strong {
  font-size: 1.55rem;
}

.zone-panel span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 28px;
  margin-bottom: 42px;
  padding: 42px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--sun);
}

.contact-section .eyebrow {
  color: var(--green-dark);
}

.contact-section p {
  color: #173d3f;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.plain-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  font-weight: 800;
  color: var(--ink);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-top: 156px;
  }

  h1 {
    font-size: 3rem;
  }

  .trust-strip,
  .service-grid,
  .timeline,
  .split-section,
  .zone-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .nav {
    gap: 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 90vh;
    padding: 154px 18px 52px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .button,
  .plain-link {
    width: 100%;
  }

  .section,
  .split-section,
  .zone-section {
    padding: 62px 0;
  }

  .contact-section {
    padding: 28px 20px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
