:root {
  --navy: #0d2d74;
  --navy-deep: #081a46;
  --gold: #f3a315;
  --gold-soft: #ffd98d;
  --cream: #fff9f0;
  --paper: rgba(255, 255, 255, 0.74);
  --paper-strong: rgba(255, 255, 255, 0.9);
  --ink: #162444;
  --muted: rgba(22, 36, 68, 0.78);
  --line: rgba(13, 45, 116, 0.12);
  --shadow-lg: 0 28px 80px rgba(10, 25, 65, 0.16);
  --shadow-md: 0 16px 34px rgba(10, 25, 65, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: #f8fbff;
}

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

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 12%, rgba(243, 163, 21, 0.24), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(13, 45, 116, 0.18), transparent 22%),
    linear-gradient(180deg, #f6fbff 0%, #fff7ed 100%);
}

.page-shell {
  width: min(1180px, calc(100% - 28px));
  margin: 18px auto 36px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.brand img {
  width: 160px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 45, 116, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.header-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, #2053ba 100%);
  box-shadow: 0 16px 28px rgba(13, 45, 116, 0.18);
}

.secondary-btn {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(13, 45, 116, 0.12);
}

.header-cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.hero-grid,
.split-layout,
.photo-story,
.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.hero-home {
  padding: 72px 0 34px;
}

.page-hero {
  padding: 68px 0 24px;
}

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

h1,
h2 {
  margin: 0;
  font-family: "Arial Black", "Avenir Next", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--navy-deep);
}

h1 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.6rem, 2.7vw, 2.7rem);
  max-width: 14ch;
}

h3 {
  margin: 0 0 12px;
  color: var(--navy-deep);
  font-size: 1rem;
}

.lead,
p,
li,
span {
  line-height: 1.7;
}

.lead,
.story-copy p,
.content-card p,
.site-footer p,
.service-card p,
.contact-note p,
.stats-grid p,
.process-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.button-row,
.quick-points,
.cta-actions,
.footer-links,
.contact-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-row {
  margin: 28px 0 22px;
}

.quick-points span,
.contact-stack span {
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 45, 116, 0.08);
}

.hero-photo-frame,
.photo-panel,
.content-card,
.trust-strip,
.site-footer {
  border-radius: var(--radius-xl);
}

.hero-photo-frame {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(135deg, var(--navy) 0%, #2053ba 100%);
}

.hero-photo-frame img,
.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-stat {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 6px;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.floating-stat strong {
  color: var(--navy-deep);
}

.floating-stat span,
.floating-stat a {
  color: var(--muted);
}

.floating-stat.top {
  top: 24px;
  left: 24px;
}

.floating-stat.bottom {
  right: 24px;
  bottom: 24px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(13, 45, 116, 0.98), rgba(27, 79, 190, 0.96));
  color: #fff;
  box-shadow: var(--shadow-md);
}

.trust-strip div {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
}

.content-card {
  margin-top: 22px;
  padding: 38px;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.accent-panel,
.stats-grid,
.process-grid {
  display: grid;
  gap: 16px;
}

.accent-block,
.stats-grid article,
.process-grid article,
.quote-card,
.contact-note {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(13, 45, 116, 0.97), rgba(19, 59, 141, 0.95));
  color: #fff;
}

.accent-block span,
.process-grid span,
.stats-grid span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

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

.check-list li {
  padding: 14px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.78);
}

.section-heading {
  margin-bottom: 28px;
}

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

.service-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
  border: 1px solid var(--line);
}

.service-card.tall {
  min-height: 238px;
}

.service-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), #ffc75b);
  color: var(--navy-deep);
  font-weight: 900;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.photo-story {
  grid-template-columns: 0.96fr 1.04fr;
}

.photo-story.reversed {
  grid-template-columns: 1.04fr 0.96fr;
}

.photo-story.reversed .photo-panel {
  order: 2;
}

.photo-panel {
  min-height: 430px;
  overflow: hidden;
}

.story-copy {
  display: grid;
  gap: 10px;
}

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

.stats-grid article h3,
.process-grid article h3 {
  color: #fff;
}

.stats-grid article p,
.process-grid article p {
  color: rgba(255, 255, 255, 0.84);
}

.quote-card {
  display: grid;
  gap: 16px;
  min-height: 100%;
  align-content: center;
}

.quote-card p {
  margin: 0;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
}

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

.contact-layout {
  align-items: start;
}

.contact-info h2 {
  max-width: 10ch;
}

.contact-stack {
  margin: 24px 0 28px;
}

.contact-stack a {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), #ffbb3f);
}

.contact-note strong {
  display: block;
  margin-bottom: 8px;
}

.contact-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.98));
  border: 1px solid rgba(13, 45, 116, 0.1);
}

.lead-form label {
  display: grid;
  gap: 10px;
  font-weight: 800;
  color: var(--navy-deep);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(13, 45, 116, 0.14);
  background: #fff;
  font: inherit;
  color: var(--ink);
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(243, 163, 21, 0.35);
  border-color: rgba(243, 163, 21, 0.72);
}

.form-note,
.form-status {
  margin: 0;
}

.form-status {
  min-height: 24px;
  color: var(--navy);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: 24px 28px;
  background: var(--navy-deep);
  color: #fff;
}

.footer-links a {
  color: var(--gold-soft);
  font-weight: 700;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .photo-story,
  .contact-layout,
  .service-grid,
  .stats-grid,
  .process-grid,
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero-photo-frame {
    min-height: 540px;
  }

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

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 16px, 100%);
  }

  .site-header {
    grid-template-columns: auto auto;
    border-radius: 28px;
  }

  .brand img {
    width: 132px;
  }

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

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 8px;
  }

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

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .photo-story,
  .contact-layout,
  .service-grid,
  .stats-grid,
  .process-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .content-card {
    padding: 28px 22px;
  }

  .hero-home,
  .page-hero {
    padding-top: 54px;
  }

  .hero-photo-frame,
  .photo-panel {
    min-height: 340px;
  }

  .photo-story.reversed .photo-panel {
    order: 0;
  }

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

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }
}
