:root {
  --ink: #102733;
  --muted: #536a74;
  --blue: #3f58b4;
  --blue-dark: #263f91;
  --teal: #279db7;
  --teal-soft: #78c4dc;
  --coral: #cf684e;
  --coral-dark: #a94b35;
  --line: #d8e5ea;
  --panel: #f4fafb;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(16, 39, 51, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(2rem, 6vw, 4.8rem);
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
  font-size: 1.22rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

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

.container {
  width: calc(100% - 2rem);
  max-width: var(--max);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 229, 234, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-weight: 800;
  color: var(--ink);
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.site-nav {
  position: fixed;
  inset: 74px 0 auto;
  display: none;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  padding: 0.8rem 0.75rem;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 750;
}

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

.header-actions {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
}

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

.button-primary:hover {
  background: var(--coral-dark);
  color: var(--white);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--blue-dark);
}

.button-secondary:hover {
  border-color: var(--teal);
  background: var(--panel);
  color: var(--blue-dark);
}

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

.button-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.hero {
  overflow: hidden;
  padding: 3.2rem 0 4.2rem;
  background:
    linear-gradient(125deg, rgba(244, 250, 251, 0.95), rgba(255, 255, 255, 0.98) 58%),
    linear-gradient(0deg, rgba(120, 196, 220, 0.28), rgba(120, 196, 220, 0));
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-grid > *,
.split > * {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--blue-dark);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.trust-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 720;
}

.trust-list li::before {
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.hero-media {
  position: relative;
}

.hero-photo {
  width: min(100%, 470px);
  margin-inline: auto;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.quick-card {
  display: grid;
  gap: 0.5rem;
  width: min(100%, 390px);
  margin: -1.3rem auto 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(16, 39, 51, 0.1);
}

.quick-card strong {
  color: var(--blue-dark);
  font-size: 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-soft {
  background: var(--panel);
}

.section-blue {
  background: var(--blue-dark);
  color: var(--white);
}

.section-blue h2,
.section-blue h3,
.section-blue p {
  color: var(--white);
}

.section-head {
  display: grid;
  gap: 0.85rem;
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-head p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-blue .section-head p {
  color: rgba(255, 255, 255, 0.82);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.service-card,
.info-card,
.contact-card,
.article-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.service-card {
  overflow: hidden;
  padding: 0;
}

.service-card > :not(img) {
  margin-inline: 1.1rem;
}

.service-card > :last-child {
  margin-bottom: 1.1rem;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card-featured {
  background: linear-gradient(135deg, var(--white), var(--panel));
}

.service-card:hover,
.article-card:hover {
  border-color: rgba(39, 157, 183, 0.5);
  box-shadow: 0 14px 32px rgba(16, 39, 51, 0.08);
}

.service-card p,
.info-card p,
.article-card p {
  color: var(--muted);
}

.service-card h2,
.article-card h2 {
  font-size: 1.22rem;
}

.service-card a,
.article-card a {
  color: var(--blue-dark);
  font-weight: 850;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.22rem 0.5rem;
  border-radius: 8px;
  background: rgba(120, 196, 220, 0.22);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.split-media img {
  width: 100%;
  max-height: 620px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.65rem;
}

.check-list li::before {
  display: inline-flex;
  width: 1.6rem;
  height: 1.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  content: "✓";
  font-weight: 900;
}

.cta-band {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  padding: 1.4rem;
  border-radius: 8px;
  background: var(--blue-dark);
  color: var(--white);
}

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

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

.details-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.details-list div {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.details-list dt {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 850;
  text-transform: uppercase;
}

.details-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
}

.page-hero {
  padding: 3rem 0;
  background: var(--panel);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--blue-dark);
  font-weight: 760;
}

.content {
  display: grid;
  gap: 1.5rem;
  max-width: 860px;
}

.content h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.content h3 {
  margin-top: 0.2rem;
}

.content ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.1rem;
}

.content li {
  color: var(--muted);
}

.notice {
  padding: 1rem;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
}

.footer {
  padding: 3rem 0 5.5rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
}

.footer h2,
.footer h3 {
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer a {
  color: var(--white);
  font-weight: 760;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 850;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.65rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.mobile-cta .button {
  min-height: 48px;
  padding-inline: 0.7rem;
}

@media (min-width: 720px) {
  .container {
    width: calc(100% - 3rem);
    max-width: var(--max);
  }

  .hero {
    padding: 4.8rem 0 5.5rem;
  }

  .hero-grid,
  .split {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }

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

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

  .cta-band {
    grid-template-columns: 1fr auto;
    padding: 1.6rem;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 519px) {
  .container {
    width: 100%;
    max-width: none;
    padding-inline: 1rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand {
    gap: 0.55rem;
    font-size: 0.95rem;
  }

  .nav-wrap {
    min-height: 66px;
  }

  .site-nav {
    inset: 66px 0 auto;
  }

  .hero {
    padding-top: 2.7rem;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-actions .button,
  .section-actions .button {
    max-width: 100%;
    width: 100%;
    white-space: normal;
  }

  .quick-card {
    margin-top: 0.75rem;
  }

  .mobile-cta .button {
    min-width: 0;
    font-size: 0.95rem;
    white-space: normal;
  }
}

@media (max-width: 719px) {
  .hero {
    padding-top: 0;
  }

  .hero .container {
    width: 100%;
    max-width: none;
    padding-inline: 1rem;
  }

  .hero-grid {
    gap: 1.35rem;
  }

  .hero-media {
    order: -1;
    margin-inline: -1rem;
  }

  .hero-photo {
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-photo img {
    aspect-ratio: 16 / 10;
    object-position: center 35%;
  }

  .quick-card {
    display: none;
  }
}

@media (min-width: 980px) {
  body {
    padding-bottom: 0;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.65rem 0.8rem;
  }

  .header-actions {
    display: flex;
    gap: 0.6rem;
  }

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

  .service-card-featured {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
  }

  .service-card-featured img {
    grid-row: 1 / span 4;
    height: 100%;
    min-height: 300px;
    aspect-ratio: auto;
  }

  .service-card-featured > :not(img) {
    grid-column: 2;
    margin-inline: 1.5rem;
  }

  .service-card-featured > :last-child {
    margin-bottom: 1.5rem;
  }

  .mobile-cta {
    display: none;
  }

  .footer {
    padding-bottom: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
