:root {
  --ink: #17212f;
  --muted: #546174;
  --line: #d9e1e8;
  --paper: #ffffff;
  --soft: #f4f7f9;
  --mist: #eaf2f6;
  --navy: #14324a;
  --teal: #0f766e;
  --teal-dark: #0b5c56;
  --gold: #b7791f;
  --gold-soft: #fff4dc;
  --focus: #1d4ed8;
  --shadow: 0 18px 45px rgba(20, 50, 74, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--focus);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text {
  display: grid;
  line-height: 1.12;
}

.brand-text strong {
  font-size: clamp(0.95rem, 2.5vw, 1.08rem);
}

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

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

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

.nav-links.is-open {
  display: grid;
  gap: 0.5rem;
}

.nav-links a {
  display: block;
  min-height: 44px;
  padding: 0.72rem 0.85rem;
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.nav-links a:hover {
  background: var(--soft);
}

.nav-cta {
  background: var(--teal);
  color: #fff !important;
  text-align: center;
}

.nav-cta:hover {
  background: var(--teal-dark) !important;
}

.hero {
  min-height: 62vh;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 28, 43, 0.86) 0%, rgba(9, 28, 43, 0.66) 45%, rgba(9, 28, 43, 0.18) 100%),
    url("../IMG_4095.JPG") center 58% / cover no-repeat;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 24%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0));
  z-index: -1;
}

.hero-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.4rem, 6vw, 4.6rem) 0;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
.hero-title {
  margin: 0;
  max-width: 860px;
  font-size: clamp(2.35rem, 6vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 1.2rem 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2.5vw, 1.32rem);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.05rem;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
}

.button.primary {
  background: var(--teal);
  color: #fff;
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  background: #fff;
  color: var(--navy);
}

.button.secondary:hover {
  background: var(--mist);
}

.button.outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.button.outline:hover {
  background: var(--navy);
  color: #fff;
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
}

.quick-strip {
  background: var(--navy);
  color: #fff;
}

.quick-strip-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
  padding: 1rem 0;
}

.quick-strip a,
.quick-strip span {
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

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

.section.tint {
  background: var(--mist);
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 0.5rem;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section h3 {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.25;
}

.lead {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

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

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

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

.card {
  min-width: 0;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(20, 50, 74, 0.06);
}

.card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.card a {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 100%;
}

.check-list,
.plain-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 1.35rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.55rem;
  height: 2px;
  background: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-photo {
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 58%;
}

.notice {
  margin-top: 1rem;
  padding: 1rem;
  border-left: 4px solid var(--gold);
  background: var(--gold-soft);
  color: #51330a;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 750;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 850;
}

.faq-list details p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--muted);
}

.page-hero {
  background: var(--navy);
  color: #fff;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.page-hero .container {
  max-width: 980px;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 6vw, 4.6rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.breadcrumbs {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: #fff;
  text-underline-offset: 0.2em;
}

.content {
  max-width: 780px;
}

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

.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.sidebar {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 1rem;
}

.sidebar h2 {
  font-size: 1.25rem;
}

.sidebar a {
  color: var(--teal-dark);
  font-weight: 850;
}

.sidebar .button {
  width: 100%;
  margin-top: 0.7rem;
}

.related-links {
  display: grid;
  gap: 0.4rem;
  margin-top: 1rem;
}

.related-links a {
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
}

.cta-band {
  background: var(--navy);
  color: #fff;
}

.cta-band .split {
  align-items: center;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  padding: 2.5rem 0 6rem;
  background: #0b1724;
  color: #d8e3ec;
}

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

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.site-footer a {
  color: #fff;
  text-underline-offset: 0.2em;
}

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

.footer-small {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #b7c8d5;
  font-size: 0.92rem;
}

.sticky-contact {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 95;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(11, 23, 36, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.sticky-contact a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.sticky-contact a:nth-child(2) {
  background: var(--gold);
  color: #14100a;
}

.sticky-contact a:nth-child(3) {
  background: #fff;
  color: var(--navy);
}

@media (min-width: 720px) {
  .quick-strip-inner {
    grid-template-columns: 1.4fr auto auto;
    align-items: center;
  }

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

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

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

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

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

  .nav-links a {
    min-height: 42px;
    padding: 0.55rem 0.72rem;
    font-size: 0.95rem;
  }

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

  .split {
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  }

  .service-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
  }

  .sidebar {
    position: sticky;
    top: 96px;
  }

  .sticky-contact {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 520px) {
  .brand-text span {
    display: none;
  }

  .hero {
    min-height: 64vh;
    background:
      linear-gradient(180deg, rgba(9, 28, 43, 0.82) 0%, rgba(9, 28, 43, 0.56) 62%, rgba(9, 28, 43, 0.2) 100%),
      url("../IMG_4095.JPG") center bottom / cover no-repeat;
  }

  .hero-actions .button,
  .cta-row .button {
    width: 100%;
  }
}
