:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f8fc;
  --surface-strong: #f2f4f8;
  --text: #121826;
  --muted: #5b6472;
  --line: #e7eaf0;
  --shadow: 0 24px 70px rgba(18, 24, 38, 0.08);
  --shadow-soft: 0 10px 32px rgba(18, 24, 38, 0.06);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --brand: #1b3a7a;
  --brand-2: #2d5ec4;
  --ink-blue: #e8f0ff;
  --ink-gold: #fff4df;
  --ink-teal: #e8fbf6;
  --ink-lilac: #f1eaff;
  --ink-rose: #ffecee;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: radial-gradient(circle at top right, rgba(45, 94, 196, 0.08), transparent 24%),
              radial-gradient(circle at bottom left, rgba(27, 58, 122, 0.06), transparent 22%),
              var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.55;
}

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

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

button {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(231, 234, 240, 0.8);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 16px 30px rgba(27, 58, 122, 0.22);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 4px;
}

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

.nav a {
  position: relative;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.96rem;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 18px 36px rgba(27, 58, 122, 0.22);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.btn-large {
  min-width: 220px;
  min-height: 60px;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--shadow-soft);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  padding: 56px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 42px;
}

.hero-copy {
  position: relative;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.hero-text {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.info-chip {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.info-chip-wide {
  grid-column: 1 / -1;
}

.info-chip strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.info-chip p {
  margin: 0;
  color: var(--muted);
}

.info-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--surface-strong), #fff);
  border: 1px solid var(--line);
  font-size: 1.1rem;
}

.hero-visual {
  position: relative;
  min-height: 600px;
  isolation: isolate;
}

.visual-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(231, 234, 240, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.visual-card-main {
  inset: 44px 50px 90px 10px;
  border-radius: 34px;
  padding: 28px 28px 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.82)),
    radial-gradient(circle at top right, rgba(45, 94, 196, 0.12), transparent 35%),
    #fff;
}

.visual-card-side {
  right: 0;
  bottom: 40px;
  width: 240px;
  padding: 20px;
  border-radius: 24px;
}

.visual-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ink-blue);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.86rem;
}

.visual-title {
  margin: 20px 0 18px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.visual-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.visual-card ul li {
  position: relative;
  padding: 16px 18px 16px 50px;
  border-radius: 18px;
  background: rgba(247, 248, 252, 0.9);
  border: 1px solid var(--line);
  font-weight: 600;
}

.visual-card ul li::before {
  content: '•';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-size: 0.95rem;
}

.metric {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ink-gold);
  font-weight: 700;
  font-size: 0.86rem;
}

.visual-card-side strong {
  display: block;
  margin-top: 14px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.floating-dot,
.floating-line {
  position: absolute;
  z-index: -1;
}

.floating-dot {
  border-radius: 50%;
  filter: blur(1px);
}

.dot-a {
  top: 10px;
  right: 28px;
  width: 88px;
  height: 88px;
  background: radial-gradient(circle, rgba(45,94,196,0.2), rgba(45,94,196,0.02));
}

.dot-b {
  left: 34px;
  bottom: 18px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(27,58,122,0.18), rgba(27,58,122,0.03));
}

.floating-line {
  inset: 56px 18px 38px auto;
  width: 1px;
  background: linear-gradient(180deg, rgba(27,58,122,0), rgba(27,58,122,0.18), rgba(27,58,122,0));
}

.section {
  padding: 44px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head h2,
.block-copy h2,
.highlight-strip h2,
.contact-copy h2,
.info-panel h2 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.section-head p,
.block-copy p,
.contact-copy p,
.info-panel p {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
  font-size: 1.03rem;
}

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

.service-card {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: auto -18% 72px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.9;
}

.accent-a::before { background: radial-gradient(circle, rgba(45,94,196,0.18), transparent 68%); }
.accent-b::before { background: radial-gradient(circle, rgba(255,196,0,0.22), transparent 68%); }
.accent-c::before { background: radial-gradient(circle, rgba(25,171,130,0.18), transparent 68%); }
.accent-d::before { background: radial-gradient(circle, rgba(146,102,255,0.18), transparent 68%); }
.accent-e::before { background: radial-gradient(circle, rgba(255,102,122,0.16), transparent 68%); }

.card-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--brand);
  font-weight: 800;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.alt-section {
  padding-top: 18px;
}

.two-column-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.block-copy,
.terrain-panel,
.info-panel,
.contact-banner,
.highlight-strip {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.block-copy {
  border-radius: 30px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.terrain-panel {
  position: relative;
  min-height: 380px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.86)),
    radial-gradient(circle at top left, rgba(45,94,196,0.12), transparent 28%),
    #fff;
}

.terrain-grid {
  position: absolute;
  inset: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.terrain-grid span {
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(45,94,196,0.06), rgba(255,255,255,0.9)),
    #fff;
}

.terrain-grid span:nth-child(2n) {
  transform: translateY(12px);
}

.terrain-grid span:nth-child(3n) {
  background: linear-gradient(135deg, rgba(25,171,130,0.08), rgba(255,255,255,0.9)), #fff;
}

.terrain-badge {
  position: absolute;
  right: 26px;
  bottom: 26px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink-teal);
  border: 1px solid var(--line);
  font-weight: 700;
}

.compact-section {
  padding-top: 26px;
}

.highlight-strip {
  border-radius: 30px;
  padding: 28px 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: flex-end;
}

.highlight-list li {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-weight: 600;
}

.contact-banner {
  border-radius: 30px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.92)),
    radial-gradient(circle at right center, rgba(45,94,196,0.12), transparent 28%),
    #fff;
}

.contact-copy p {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 700;
}

.info-section {
  padding-top: 8px;
  padding-bottom: 70px;
}

.info-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.info-panel {
  border-radius: 30px;
  padding: 34px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 700;
}

.hours-pill-wrap {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hours-pill {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-weight: 700;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.85);
}

.footer-inner {
  padding: 30px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.footer strong {
  display: inline-block;
  margin-bottom: 6px;
}

.footer p,
.footer a {
  margin: 0;
  color: var(--muted);
}

.footer-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .topbar-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    gap: 18px;
  }

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

  .hero-grid,
  .two-column-block,
  .info-layout,
  .highlight-strip,
  .contact-banner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .two-column-block,
  .info-layout {
    display: grid;
  }

  .highlight-strip,
  .contact-banner,
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .highlight-list,
  .footer-meta {
    justify-content: flex-start;
    text-align: left;
    justify-items: start;
  }

  .hero-visual {
    min-height: 480px;
  }
}

@media (max-width: 900px) {
  .topbar-inner {
    grid-template-columns: auto auto auto;
    gap: 12px;
  }

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

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .topbar.menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .topbar.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .topbar.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-info-grid,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-card-main {
    inset: 30px 0 80px 0;
  }

  .visual-card-side {
    width: 210px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, 100%);
  }

  .topbar-inner {
    min-height: 78px;
  }

  .brand-text strong {
    font-size: 0.94rem;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .hero-info-grid,
  .card-grid,
  .info-layout {
    grid-template-columns: 1fr;
  }

  .visual-card-main {
    padding: 22px 18px 18px;
  }

  .visual-title {
    font-size: 1.65rem;
  }

  .visual-card ul li {
    padding-left: 46px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .visual-card-side {
    right: 8px;
    bottom: 22px;
    width: calc(100% - 52px);
  }

  .block-copy,
  .terrain-panel,
  .contact-banner,
  .info-panel,
  .highlight-strip {
    border-radius: 24px;
  }

  .block-copy,
  .contact-banner,
  .info-panel,
  .highlight-strip {
    padding: 24px;
  }

  .btn,
  .btn-large {
    width: 100%;
  }

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