:root {
  --navy: #06265c;
  --blue: #0f4f9f;
  --ink: #111827;
  --muted: #596275;
  --silver: #d8dde7;
  --line: #e7eaf0;
  --soft: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 38, 92, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header,
.hero,
.trust-strip,
.section,
.split,
.quote,
.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 70px;
  height: 54px;
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ring,
.roof,
.tiles {
  fill: none;
  stroke: var(--navy);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.roof-secondary,
.tiles {
  stroke: #32363d;
  stroke-width: 4;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
}

.brand-copy span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--navy);
}

.hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 44px;
  align-items: center;
  padding: 68px 0 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.intro,
.section-heading p,
.quote-copy p,
.split p {
  color: var(--muted);
  font-size: 18px;
}

.intro {
  max-width: 650px;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 14px 22px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--blue);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--silver);
}

.hero-panel {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 38, 92, 0.9), rgba(15, 79, 159, 0.78)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 22px),
    #0a2b63;
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.crest {
  position: relative;
  width: min(360px, 78%);
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 34px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.crest::before,
.crest::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 6px solid var(--navy);
  border-radius: 50%;
  opacity: 0.14;
}

.crest::after {
  inset: 32px;
  border-color: #313842;
}

.crest-roof {
  width: 210px;
  height: 78px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.crest-roof span {
  width: 76px;
  height: 54px;
  background: linear-gradient(145deg, #222936, #030a16);
  clip-path: polygon(50% 0, 100% 48%, 100% 100%, 0 100%, 0 48%);
  border-bottom: 6px solid var(--blue);
}

.crest-roof span:nth-child(2) {
  width: 96px;
  height: 72px;
}

.crest-text strong {
  display: block;
  color: var(--navy);
  font-size: 82px;
  line-height: 0.88;
}

.crest-text span {
  display: block;
  margin-top: 10px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.stars {
  margin-top: 18px;
  color: var(--navy);
  letter-spacing: 6px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 76px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

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

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

.trust-strip strong {
  color: var(--navy);
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 78px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-grid article {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-grid article:nth-child(even) {
  background: var(--soft);
}

.service-grid p,
.steps span,
.site-footer span {
  color: var(--muted);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
  padding: 78px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 24px 24px 24px 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

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

.quote {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: start;
  margin-block: 82px;
  padding: 42px;
  border-radius: 8px;
  background: var(--soft);
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--silver);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(15, 79, 159, 0.18);
  border-color: var(--blue);
}

.quote-form textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: grid;
}

.site-footer a {
  color: var(--navy);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header,
  .hero,
  .split,
  .quote,
  .site-footer {
    display: grid;
  }

  .site-header {
    justify-content: start;
    padding-block: 18px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero,
  .split,
  .quote {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    min-height: 420px;
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .trust-strip,
  .section,
  .split,
  .quote,
  .site-footer {
    width: min(100% - 24px, 1160px);
  }

  .brand-copy strong {
    font-size: 24px;
  }

  .brand-mark {
    width: 58px;
  }

  .nav {
    font-size: 13px;
  }

  .hero {
    gap: 28px;
    padding-bottom: 36px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .quote {
    padding: 24px;
  }

  .crest-text strong {
    font-size: 64px;
  }

  .site-footer {
    padding-block: 24px;
  }
}

.construction-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 18%, rgba(15, 79, 159, 0.16), transparent 34%),
    linear-gradient(145deg, #f8fafc 0%, #eef3f9 100%);
}

.construction-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.construction-card {
  width: min(720px, 100%);
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid rgba(6, 38, 92, 0.12);
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.construction-mark {
  width: 138px;
  height: 98px;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
}

.construction-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.construction-card h1 {
  max-width: none;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(42px, 8vw, 76px);
}

.construction-copy {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.construction-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 620px) {
  .construction-page {
    padding: 16px;
  }

  .construction-actions,
  .construction-actions .button {
    width: 100%;
  }
}
