:root {
  --blue: #013583;
  --rust: #964006;
  --ink: #111317;
  --muted: #5f6672;
  --line: #d9dde5;
  --panel: #f6f7f9;
  --soft-blue: #eaf0f8;
  --soft-rust: #f4ebe5;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 19, 23, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(1, 53, 131, 0.08), transparent 34%),
    linear-gradient(295deg, rgba(150, 64, 6, 0.09), transparent 38%),
    linear-gradient(#fff, #f8f9fb);
}

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

a {
  color: var(--blue);
}

a:hover {
  color: var(--rust);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.65rem 0.9rem;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(217, 221, 229, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.1;
}

.brand strong {
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0;
}

.brand span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.menu-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.7rem 0.85rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.menu-icon {
  width: 18px;
  height: 12px;
  display: inline-grid;
  gap: 4px;
}

.menu-icon::before,
.menu-icon::after,
.menu-icon span {
  content: "";
  display: block;
  height: 2px;
  background: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
}

.nav-links a {
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue);
  background: var(--soft-blue);
}

.nav-links .phone-link {
  margin-left: 0.35rem;
  color: var(--white);
  background: var(--blue);
}

.nav-links .phone-link:hover {
  color: var(--white);
  background: var(--rust);
}

.main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: min(760px, calc(100svh - 120px));
  padding: clamp(3rem, 7vw, 6rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.hero-content {
  width: min(680px, 100%);
  align-self: center;
}

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

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

h1 {
  max-width: 12ch;
  margin-bottom: 1.1rem;
  color: var(--ink);
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: #303641;
  font-size: clamp(1.08rem, 2.1vw, 1.35rem);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.08rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(1, 53, 131, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  color: var(--white);
  background: var(--rust);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(150, 64, 6, 0.18);
}

.btn.secondary {
  color: var(--blue);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.btn.secondary:hover {
  color: var(--white);
  border-color: var(--rust);
  background: var(--rust);
}

.hero-proof {
  width: min(92%, 390px);
  margin-top: 2rem;
  padding: 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(217, 221, 229, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-proof strong {
  display: block;
  color: var(--blue);
  font-size: 1.45rem;
  line-height: 1.1;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-image-panel {
  min-height: clamp(440px, 52vw, 680px);
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line);
}

.section.compact {
  padding-top: clamp(2.3rem, 5vw, 4rem);
}

.section-header {
  max-width: 760px;
  margin-bottom: clamp(1.5rem, 4vw, 2.6rem);
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 4.7vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.lead {
  color: #343a45;
  font-size: clamp(1.03rem, 1.7vw, 1.22rem);
}

.feature-grid,
.service-grid,
.quote-grid,
.contact-grid,
.tip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.service-card,
.quote-card,
.contact-card,
.tip-card,
.testimonial {
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(17, 19, 23, 0.05);
}

.card strong,
.service-card strong,
.quote-card strong,
.tip-card strong {
  color: var(--blue);
}

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:nth-child(2),
.quote-card:nth-child(2),
.tip-card:nth-child(2) {
  background: var(--soft-blue);
}

.service-card:nth-child(3),
.quote-card:nth-child(3),
.tip-card:nth-child(3) {
  background: var(--soft-rust);
}

.service-card a,
.card-link {
  color: var(--ink);
  text-decoration: none;
}

.card-link {
  margin-top: 1rem;
  display: inline-flex;
  font-weight: 800;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.video-frame,
.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.video-frame video,
.image-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-frame.portrait img {
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.stat-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat {
  padding: 1rem;
  border-left: 4px solid var(--rust);
  background: var(--panel);
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1.1;
}

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

.testimonial blockquote {
  margin: 0;
  color: #242934;
  font-size: 1.02rem;
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.cta-band {
  margin: clamp(2rem, 5vw, 4rem) 0;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(120deg, var(--blue), #05214e 68%, var(--rust));
}

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

.cta-band p {
  margin-bottom: 0;
  max-width: 660px;
}

.cta-band .btn {
  color: var(--blue);
  background: var(--white);
  box-shadow: none;
  white-space: nowrap;
}

.page-hero {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero .lead {
  max-width: 700px;
}

.page-aside {
  padding: 1.4rem;
  border-top: 5px solid var(--rust);
  border-radius: var(--radius);
  background: var(--panel);
}

.copy-block {
  max-width: 780px;
  color: #2d333d;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
}

.copy-block p {
  margin-bottom: 1.15rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.check-list,
.plain-list {
  padding-left: 1.2rem;
  margin: 1rem 0 0;
}

.check-list li,
.plain-list li {
  margin-bottom: 0.7rem;
}

.step-list {
  counter-reset: steps;
  display: grid;
  gap: 1rem;
}

.step {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 1.15rem;
  top: 1.15rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  font-weight: 800;
}

.contact-card a {
  word-break: break-word;
  font-weight: 800;
}

.email-list {
  display: grid;
  gap: 0.35rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.social-link img {
  width: 22px;
  height: 22px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.disclaimer {
  padding: 1rem;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.site-footer {
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  background: #e0e0e0;
}

.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: #343a45;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--blue);
}

@media (max-width: 960px) {
  .menu-btn {
    display: inline-flex;
  }

  .nav-shell {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a,
  .nav-links .phone-link {
    margin-left: 0;
    padding: 0.85rem;
  }

  .hero,
  .page-hero,
  .story-band,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image-panel {
    display: none;
  }

  .feature-grid,
  .service-grid,
  .quote-grid,
  .contact-grid,
  .tip-grid,
  .testimonial-grid,
  .stat-list {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .nav-shell {
    width: min(100% - 24px, 1180px);
    height: 66px;
  }

  .main,
  .footer-shell {
    width: min(100% - 24px, 1180px);
  }

  .brand span {
    display: none;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .hero-proof {
    width: 100%;
  }

  .feature-grid,
  .service-grid,
  .quote-grid,
  .contact-grid,
  .tip-grid,
  .testimonial-grid,
  .stat-list,
  .photo-strip {
    grid-template-columns: 1fr;
  }

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