:root {
  --navy: #0b2341;
  --navy-2: #123962;
  --red: #c92535;
  --ink: #182433;
  --muted: #617184;
  --line: #dbe3ec;
  --paper: #f6f8fb;
  --white: #ffffff;
  --gold: #f3b23f;
  --shadow: 0 20px 50px rgba(11, 35, 65, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 227, 236, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 178px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  border-bottom: 5px solid var(--red);
}

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

.brand small {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 18px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a,
.header-phone,
.footer-actions a {
  text-decoration: none;
}

.nav a:hover,
.footer-actions a:hover {
  color: var(--red);
}

.header-phone {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 1160px) {
  .site-header {
    gap: 14px;
  }

  .brand {
    min-width: 160px;
  }

  .nav {
    gap: 8px;
    font-size: 0.84rem;
  }

  .header-phone {
    padding: 0 12px;
    font-size: 0.9rem;
  }
}

.hero {
  position: relative;
  min-height: clamp(620px, 88vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 20, 39, 0.9) 0%, rgba(5, 20, 39, 0.72) 37%, rgba(5, 20, 39, 0.18) 72%, rgba(5, 20, 39, 0.05) 100%),
    linear-gradient(0deg, rgba(5, 20, 39, 0.18), rgba(5, 20, 39, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 84px);
  color: var(--white);
  padding: 74px 0 96px;
}

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

.hero .eyebrow,
.cta-band .eyebrow {
  color: var(--gold);
}

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

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(201, 37, 53, 0.24);
}

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

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 36px 0 0;
}

.trust-strip div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.trust-strip dt {
  font-size: 1.5rem;
  font-weight: 900;
}

.trust-strip dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.quick-quote,
.section,
.proof-band,
.review-section,
.cta-band,
.site-footer {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.quick-quote {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--paper);
}

.quote-copy {
  position: sticky;
  top: 110px;
}

.quote-copy p,
.section-heading p,
.split p,
.review-section p,
.cta-band p,
.site-footer p {
  color: var(--muted);
  font-size: 1.03rem;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-step {
  display: grid;
  gap: 14px;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
}

.form-step legend {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-grid,
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

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

input,
select {
  min-height: 48px;
  padding: 0 12px;
}

textarea {
  min-height: 128px;
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(201, 37, 53, 0.2);
  border-color: var(--red);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.hidden-field {
  display: none;
}

.lead-preview {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid #bfd0e2;
  border-radius: 8px;
  background: #eef5fb;
  color: var(--muted);
}

.lead-preview strong {
  color: var(--navy);
}

.check-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #cbd6e2;
  border-radius: 6px;
  background: var(--white);
}

.check-option input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  accent-color: var(--red);
}

.check-option span {
  line-height: 1.2;
}

.form-note a {
  color: var(--navy);
  font-weight: 900;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-actions {
  display: flex;
  margin-top: 26px;
}

.page-hero {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.service-card,
.review-grid figure {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: #eaf0f7;
  color: var(--red);
  font-weight: 900;
}

.service-card p,
.review-grid blockquote {
  margin: 0;
  color: var(--muted);
}

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

.service-detail-grid article,
.process-grid article,
.content-columns article,
.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-detail-grid h2,
.process-grid h2,
.content-columns h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.service-detail-grid a,
.contact-card a {
  color: var(--red);
  font-weight: 900;
}

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

.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: 32px;
  align-items: center;
  background: var(--navy);
}

.proof-band h2,
.cta-band h2 {
  color: var(--white);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.proof-list li {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

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

.area-panel a {
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  background: var(--paper);
}

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

.route-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: var(--paper);
}

.route-grid a {
  display: grid;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.route-grid article:hover {
  border-color: rgba(201, 37, 53, 0.45);
  background: #fff;
}

.route-grid strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.route-grid span {
  color: var(--muted);
}

.east-coast-band {
  background: #102f4c;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.info-list dt {
  color: var(--navy);
  font-weight: 900;
}

.info-list dd {
  margin: 6px 0 0;
  color: var(--muted);
}

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

.photo-proof {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

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

.photo-card {
  display: grid;
  grid-template-rows: auto 1fr;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(11, 35, 65, 0.08);
}

.photo-card-wide {
  grid-column: span 2;
}

.photo-card img,
.service-media img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.photo-card img {
  height: 320px;
}

.photo-card figcaption {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.photo-card strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.photo-card span {
  color: var(--muted);
}

.service-media {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  margin-bottom: 34px;
}

.service-media img {
  height: clamp(280px, 34vw, 430px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

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

.gallery-item {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 12px 36px rgba(11, 35, 65, 0.1);
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 20, 39, 0.82), rgba(5, 20, 39, 0.02) 64%);
}

.gallery-item figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 22px;
  color: var(--white);
}

.gallery-item strong {
  font-size: 1.25rem;
}

.gallery-item span {
  color: rgba(255, 255, 255, 0.78);
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.rating-row a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.rating-row strong {
  margin-right: 6px;
  color: var(--navy);
}

.rating-row a:hover {
  border-color: var(--red);
  color: var(--navy);
}

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

.review-proof-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.proof-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

.review-proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.review-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.review-themes strong {
  margin-right: 4px;
  color: var(--navy);
}

.review-themes span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-weight: 800;
}

.faq-section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.faq-section h2 {
  max-width: 760px;
}

details {
  max-width: 880px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 20px;
  color: var(--navy);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 14px;
  max-width: 960px;
}

.timeline div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline strong {
  color: var(--red);
}

.timeline span {
  color: var(--muted);
}

.contact-quote {
  min-height: calc(100vh - 78px);
}

.contact-quote h1 {
  color: var(--navy);
  font-size: clamp(2.6rem, 5vw, 5.4rem);
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.contact-card strong {
  color: var(--navy);
}

.contact-details-card span {
  color: var(--muted);
}

.review-grid figure {
  display: grid;
  gap: 18px;
}

.review-grid blockquote {
  font-size: 1.15rem;
}

.review-grid figcaption {
  color: var(--navy);
  font-weight: 900;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: var(--red);
  color: var(--white);
}

.cta-band p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: #07182d;
  color: var(--white);
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

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

  .nav {
    display: none;
  }

  .hero {
    min-height: 740px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(5, 20, 39, 0.88), rgba(5, 20, 39, 0.32));
  }

  .quick-quote,
  .proof-band,
  .split {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }

  .service-grid,
  .review-grid,
  .review-proof-grid,
  .process-grid,
  .photo-grid,
  .gallery-grid,
  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-card-wide,
  .gallery-item-wide {
    grid-column: span 2;
  }

  .service-media {
    grid-template-columns: 1fr;
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-phone {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(5, 20, 39, 0.95), rgba(5, 20, 39, 0.58));
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .trust-strip,
  .quote-form,
  .form-grid,
  .option-grid,
  .service-grid,
  .service-detail-grid,
  .content-columns,
  .process-grid,
  .photo-grid,
  .gallery-grid,
  .route-grid,
  .proof-list,
  .area-panel,
  .review-grid,
  .review-proof-grid,
  .timeline div {
    grid-template-columns: 1fr;
  }

  .photo-card-wide,
  .gallery-item-wide {
    grid-column: span 1;
  }

  .photo-card img {
    height: 260px;
  }

  .gallery-item {
    min-height: 320px;
  }

  .site-footer,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-actions {
    flex-direction: column;
  }
}
