:root {
  --ink: #12212a;
  --muted: #5f6d75;
  --paper: #f7f5ef;
  --white: #ffffff;
  --line: rgba(18, 33, 42, 0.14);
  --blue: #1d6fb8;
  --blue-dark: #0d4f88;
  --teal: #19747a;
  --gold: #f5b84b;
  --red: #c84838;
  --shadow: 0 20px 55px rgba(18, 33, 42, 0.16);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(12, 27, 36, 0.36);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(247, 245, 239, 0.94);
  box-shadow: 0 12px 34px rgba(18, 33, 42, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(245, 184, 75, 0.82);
  background: #06151f;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  font-size: 0.75rem;
  opacity: 0.78;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.site-header.is-solid .nav {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.nav a,
.header-call {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.nav a:hover,
.header-call:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-solid .nav a:hover,
.site-header.is-solid .header-call:hover {
  background: rgba(29, 111, 184, 0.1);
}

.header-call {
  color: #10242f;
  background: var(--gold);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #101f28;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 26, 0.94), rgba(7, 18, 26, 0.64) 47%, rgba(7, 18, 26, 0.18)),
    linear-gradient(0deg, rgba(7, 18, 26, 0.9), transparent 46%);
}

.hero-content {
  position: relative;
  width: min(780px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 8vw, 84px) clamp(18px, 7vw, 86px);
  padding-top: 120px;
}

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

.hero .eyebrow,
.contact-section .eyebrow,
.review-band .eyebrow {
  color: var(--gold);
}

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

h1 {
  margin-bottom: 18px;
  max-width: 760px;
  font-size: clamp(3.15rem, 8vw, 6.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

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

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

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 2px solid transparent;
  padding: 0 22px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #10242f;
  background: var(--gold);
}

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

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

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

.button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
  font-size: 0.87rem;
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-contact a {
  padding: 24px clamp(18px, 4vw, 54px);
  background: var(--white);
}

.quick-contact span,
.form-note {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.quick-contact strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.brand-strip {
  padding: clamp(22px, 4vw, 46px) clamp(18px, 5vw, 76px);
  background: #07121a;
}

.brand-strip img {
  width: min(1120px, 100%);
  max-height: 520px;
  object-fit: contain;
  margin: 0 auto;
  border: 1px solid rgba(245, 184, 75, 0.28);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.section {
  padding: clamp(64px, 10vw, 118px) clamp(18px, 5vw, 76px);
}

.section-heading {
  width: min(880px, 100%);
  margin-bottom: 42px;
}

.section-heading p,
.split-section > div > p,
.review-band p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-bottom: 36px;
  padding: clamp(18px, 3vw, 28px);
  color: var(--white);
  background: #10242f;
}

.service-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 55% center;
}

.service-feature p {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.service-card {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card:nth-child(2) .icon {
  background: var(--teal);
}

.service-card:nth-child(3) .icon {
  background: var(--red);
}

.service-card:nth-child(4) .icon {
  color: #10242f;
  background: var(--gold);
}

.service-card p,
.trust-list p {
  color: var(--muted);
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.work-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #10242f;
  box-shadow: 0 12px 34px rgba(18, 33, 42, 0.12);
}

.work-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.work-gallery figure:nth-child(1) img {
  object-position: 58% center;
}

.work-gallery figure:nth-child(2) img {
  object-position: 50% center;
}

.work-gallery figure:nth-child(3) img {
  object-position: 50% center;
}

.work-gallery figcaption {
  padding: 12px 14px 14px;
  color: var(--white);
  font-weight: 900;
  font-size: 0.92rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: center;
  background: var(--white);
}

.about-photo-wrap {
  position: relative;
}

.about-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: 8px;
  background: var(--gold);
}

.about-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-list div {
  padding: 22px;
  background: #fbfaf6;
}

.review-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 6vw, 72px);
  padding: clamp(56px, 8vw, 92px) clamp(18px, 5vw, 76px);
  color: var(--white);
  background: #10242f;
}

.review-band p {
  color: rgba(255, 255, 255, 0.78);
  align-self: end;
}

.areas-section {
  background:
    linear-gradient(90deg, rgba(29, 111, 184, 0.08), rgba(25, 116, 122, 0.08)),
    var(--paper);
}

.compact {
  margin-bottom: 28px;
}

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

.area-grid span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(64px, 10vw, 118px) clamp(18px, 5vw, 76px);
  background: var(--white);
}

.contact-copy {
  align-self: center;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(18, 33, 42, 0.2);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 76px);
  color: var(--white);
  background: #0d1a22;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    justify-self: stretch;
    flex-direction: column;
    padding: 10px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .header-call {
    justify-self: end;
  }

  .quick-contact,
  .service-feature,
  .split-section,
  .review-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .area-grid,
  .trust-list,
  .work-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    gap: 10px;
  }

  .brand small {
    display: none;
  }

  .brand-logo,
  .menu-button {
    width: 40px;
    height: 40px;
  }

  .header-call {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 27, 36, 0.96), rgba(12, 27, 36, 0.74)),
      linear-gradient(0deg, rgba(12, 27, 36, 0.9), transparent 45%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 34px;
    padding-top: 100px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.5rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .quick-contact,
  .service-grid,
  .area-grid,
  .trust-list,
  .work-gallery {
    grid-template-columns: 1fr;
  }

  .brand-strip img {
    border-radius: 6px;
  }

  .service-feature {
    padding: 16px;
  }

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

  .site-footer {
    display: grid;
  }
}
