:root {
  --ink: #0d1f26;
  --muted: #52646b;
  --line: #d8e2e5;
  --paper: #f6f8f8;
  --white: #ffffff;
  --green: #123d3b;
  --green-2: #0a2c31;
  --blue: #2f8bc4;
  --gold: #c89b3f;
  --shadow: 0 22px 60px rgba(10, 44, 49, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(246, 248, 248, 0.94);
  border-bottom: 1px solid rgba(216, 226, 229, 0.9);
  backdrop-filter: blur(18px);
  max-width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-logo {
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  background: #080808;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.2;
  margin-top: 2px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 2px solid var(--green);
  transform: rotate(45deg);
  position: relative;
  background: var(--white);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  right: 5px;
  bottom: 5px;
  background: var(--blue);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 32px);
  color: var(--muted);
  font-size: 0.94rem;
  min-width: 0;
  max-width: 100%;
}

.main-nav a,
.header-phone,
.footer-links a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.header-phone:hover,
.footer-links a:hover {
  color: var(--blue);
}

.header-phone {
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: var(--green-2);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 35, 39, 0.94) 0%, rgba(8, 35, 39, 0.72) 43%, rgba(8, 35, 39, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 35, 39, 0.5), rgba(8, 35, 39, 0.08));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 72px) clamp(56px, 10vh, 120px);
  max-width: 100%;
}

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

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

h1 {
  margin-bottom: 22px;
  max-width: 720px;
  font-size: clamp(2.55rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

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

.hero-copy {
  max-width: 650px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: normal;
  overflow-wrap: anywhere;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

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

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

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

.trust-band div {
  padding: 26px clamp(18px, 4vw, 48px);
  background: var(--white);
  min-width: 0;
}

.trust-band strong {
  display: block;
  color: var(--green);
  font-size: 1.1rem;
}

.trust-band span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

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

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  background: var(--white);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p:last-child,
.contact-panel p:last-child,
.group-section p:last-child {
  margin-bottom: 0;
}

.process-section {
  background: var(--paper);
}

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

.process-grid article {
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(10, 44, 49, 0.08);
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 54px;
  border-radius: 999px;
  background: rgba(47, 139, 196, 0.12);
  color: var(--blue);
  font-weight: 900;
}

.process-grid p,
.coverage-grid p,
.form-note {
  color: var(--muted);
}

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

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

.service-item {
  min-height: 272px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-item span {
  display: block;
  margin-bottom: 44px;
  color: var(--blue);
  font-weight: 900;
}

.service-item p,
.proof-list p,
.testimonial-grid blockquote,
.division-list p,
.contact-panel p,
.contact-list,
.site-footer p {
  color: var(--muted);
}

.service-item a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--green);
  font-weight: 900;
}

.service-item a:hover {
  color: var(--blue);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: var(--green-2);
  color: var(--white);
  overflow: hidden;
}

.page-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 5rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  overflow-wrap: anywhere;
}

.page-hero img {
  width: 100%;
  height: min(520px, 54vw);
  min-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero .hero-points,
.page-hero .hero-points span {
  max-width: 100%;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  min-height: 660px;
  background: var(--green-2);
  color: var(--white);
}

.proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-content {
  padding: clamp(46px, 7vw, 92px);
  align-self: center;
}

.proof-content h2 {
  margin-bottom: 36px;
}

.proof-list {
  display: grid;
  gap: 24px;
}

.proof-list div {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-list p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.capability-list span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.coverage-section {
  background: var(--paper);
}

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

.coverage-grid div {
  min-height: 230px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
}

.owners-section {
  background: var(--white);
}

.owner-grid {
  display: grid;
  gap: 22px;
}

.owner-grid article {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.owner-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.owner-grid p {
  color: var(--muted);
}

.cta-band {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: clamp(46px, 7vw, 78px) clamp(18px, 5vw, 72px);
  background: var(--green);
  color: var(--white);
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.cta-band p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

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

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-grid figure {
  min-height: 236px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.testimonial-grid blockquote {
  margin: 0 0 24px;
  font-size: 1.05rem;
}

.testimonial-grid figcaption {
  color: var(--ink);
  font-weight: 800;
}

.group-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 90px);
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: var(--green);
  color: var(--white);
}

.group-section p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.division-list {
  display: grid;
  gap: 18px;
}

.division-list article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.division-list span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.division-list p {
  margin-bottom: 0;
}

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

.contact-panel {
  max-width: 720px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 32px 0 0;
}

.contact-list div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-list dt {
  color: var(--ink);
  font-weight: 900;
}

.contact-list dd {
  margin: 2px 0 0;
}

.contact-list a {
  color: var(--green);
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 16px;
  align-self: start;
  padding: clamp(24px, 4vw, 36px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

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

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(47, 139, 196, 0.24);
  border-color: var(--blue);
}

.quote-form .button {
  width: 100%;
  font: inherit;
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 72px);
  background: #071d22;
  color: var(--white);
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  gap: 22px;
  align-items: start;
  color: rgba(255, 255, 255, 0.78);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .brand-logo {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .trust-band,
  .intro,
  .proof-section,
  .group-section,
  .contact-section,
  .page-hero,
  .owner-grid article {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .testimonial-grid,
  .process-grid,
  .coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-section {
    min-height: 0;
  }

  .proof-image {
    min-height: 340px;
  }

  .page-hero img {
    height: 360px;
  }

  .owner-grid article {
    align-items: start;
  }

  .owner-grid img {
    max-width: 360px;
  }
}

@media (max-width: 680px) {
  * {
    max-width: 100%;
  }

  html,
  body,
  main,
  .site-header,
  .page-hero,
  .section,
  .proof-section,
  .group-section,
  .contact-section,
  .site-footer {
    width: 100%;
    max-width: 100vw;
  }

  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .header-phone {
    font-size: 0.9rem;
    justify-self: start;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 8px 14px;
    overflow-x: visible;
  }

  .hero {
    min-height: 680px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(8, 35, 39, 0.9) 0%, rgba(8, 35, 39, 0.62) 58%, rgba(8, 35, 39, 0.2) 100%);
  }

  .hero-content {
    margin: 0 18px 48px;
    width: min(320px, calc(100% - 36px));
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 7vw, 2.05rem);
    line-height: 1.08;
  }

  .page-hero h1 {
    font-size: clamp(1.48rem, 6vw, 1.72rem);
  }

  .page-hero h1 span {
    display: inline;
  }

  .page-hero h1 {
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.48rem, 6vw, 1.72rem);
    line-height: 1.12;
  }

  .page-hero {
    padding-top: 46px;
    max-width: 100vw;
  }

  .section-heading,
  .intro-copy,
  .page-hero > div,
  .proof-content,
  .contact-panel,
  .coverage-grid div,
  .process-grid article {
    width: min(100%, calc(100vw - 80px));
    max-width: calc(100vw - 80px);
  }

  .page-hero img {
    min-height: 250px;
    height: 280px;
  }

  .page-hero .hero-points {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .page-hero .hero-points span {
    display: block;
    width: fit-content;
    max-width: 100%;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1.02rem;
  }

  .hero-copy,
  .trust-band span,
  .service-item p,
  .testimonial-grid blockquote {
    overflow-wrap: anywhere;
  }

  .trust-band span {
    max-width: 26ch;
  }

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

  .hero-points {
    gap: 8px;
  }

  .hero-points span {
    max-width: 100%;
    font-size: 0.8rem;
  }

  .trust-band,
  .service-grid,
  .testimonial-grid,
  .process-grid,
  .coverage-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: 0;
  }

  .service-item span {
    margin-bottom: 24px;
  }

  .process-grid article,
  .coverage-grid div {
    min-height: 0;
  }

  .process-grid span {
    margin-bottom: 26px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .main-nav {
    flex-wrap: wrap;
    gap: 8px 10px;
    overflow-x: visible;
    font-size: 0.86rem;
  }

  .hero-content {
    width: min(282px, calc(100% - 36px));
  }

  h1 {
    font-size: 1.72rem;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .page-hero h1 {
    font-size: 1.55rem;
  }
}
