:root {
  --ink: #17212b;
  --muted: #53616d;
  --line: #dce4e8;
  --soft: #f3f8f9;
  --cyan: #12b2cf;
  --cyan-dark: #087e96;
  --green: #58ad5d;
  --green-dark: #347d38;
  --navy: #0d376d;
  --white: #fff;
  --shadow: 0 16px 45px rgba(13, 55, 109, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background: var(--white);
}
img { max-width: 100%; }
a { color: var(--cyan-dark); }
a:hover { color: var(--navy); }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .65rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: .4rem;
}
.skip-link:focus { top: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .7rem max(1.25rem, calc((100vw - 1240px) / 2));
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid #edf1f3;
  box-shadow: 0 3px 15px rgba(21, 45, 60, .06);
}
.site-logo { display: flex; align-items: center; margin-right: auto; }
.site-logo img { display: block; width: 190px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 1.4rem; }
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--cyan-dark); }
.header-actions { display: flex; align-items: center; gap: .65rem; }
.header-book { flex: 0 0 auto; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .7rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary { color: #fff; background: var(--green); box-shadow: 0 8px 20px rgba(55, 125, 56, .2); }
.button--primary:hover { color: #fff; background: var(--green-dark); }
.button--secondary { color: var(--navy); background: #fff; border-color: #bfd4df; }
.button--secondary:hover { background: var(--soft); }
.button--light { color: var(--navy); background: #fff; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: .5rem;
  background: var(--soft);
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
}
.breadcrumbs {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  font-size: .86rem;
  color: var(--muted);
}
.breadcrumbs ol { display: flex; gap: .55rem; padding: 0; margin: 0; list-style: none; flex-wrap: wrap; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .55rem; color: #98a6af; }
.breadcrumbs a { color: var(--muted); }
.location-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 35, 69, .94), rgba(9, 65, 83, .75)),
    url("/media/mainpagehero.png") center 46% / cover no-repeat;
}
.location-hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -14rem;
  width: 31rem;
  height: 31rem;
  border: 4rem solid rgba(18, 178, 207, .18);
  border-radius: 50%;
}
.location-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  min-height: 570px;
  margin: 0 auto;
  padding: 5.5rem 1.25rem 6rem;
  display: flex;
  align-items: center;
}
.location-hero__content { max-width: 760px; }
.eyebrow {
  margin: 0 0 .7rem;
  color: #8ae5f5;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .82rem;
}
h1, h2, h3 { line-height: 1.18; letter-spacing: -.025em; }
h1 { margin: 0 0 1.1rem; font-size: clamp(2.35rem, 5.5vw, 4.4rem); }
.location-hero__lede { max-width: 680px; margin: 0 0 1.7rem; font-size: clamp(1.05rem, 2vw, 1.3rem); color: #eefbfe; }
.location-hero--simple .location-hero__inner {
  min-height: 430px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.location-hero--simple h1 {
  max-width: 880px;
  font-size: clamp(2.15rem, 5vw, 3.65rem);
}
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; }
.trust-strip { background: var(--navy); color: #fff; }
.trust-strip__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
}
.trust-strip span::before { content: "✓"; margin-right: .45rem; color: #83da88; }
.section { padding: 5rem 1.25rem; }
.section--soft { background: var(--soft); }
.section--dark { color: #fff; background: var(--navy); }
.container { max-width: 1180px; margin: 0 auto; }
.section-heading { max-width: 780px; margin-bottom: 2.25rem; }
.section-heading--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 { margin: 0 0 .85rem; font-size: clamp(1.8rem, 4vw, 3rem); }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.section--dark .section-heading p { color: #d8edf2; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card, .area-card {
  height: 100%;
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(24, 57, 76, .06);
}
.service-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #e2f8fb;
  color: var(--cyan-dark);
  font-size: 1.45rem;
  font-weight: 800;
}
.service-card h3, .area-card h3 { margin: 0 0 .55rem; font-size: 1.22rem; }
.service-card p, .area-card p { margin: 0; color: var(--muted); }
.service-card a, .area-card a { display: inline-block; margin-top: .85rem; font-weight: 700; }
.service-grid--simple .service-card { text-align: center; }
.service-grid--simple .service-card img {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin: 0 auto 1rem;
}
.split { display: grid; grid-template-columns: 1.12fr .88fr; gap: 3.5rem; align-items: center; }
.split h2 { margin-top: 0; font-size: clamp(1.8rem, 4vw, 3rem); }
.split p { color: var(--muted); }
.feature-panel {
  padding: 2rem;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), #075d71);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}
.feature-panel h3 { margin-top: 0; font-size: 1.45rem; }
.check-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.check-list li { position: relative; padding: .6rem 0 .6rem 1.75rem; border-top: 1px solid rgba(255, 255, 255, .15); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #8ae591; font-weight: 900; }
.content-prose { max-width: 860px; }
.content-prose h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.content-prose h3 { margin-top: 2rem; font-size: 1.35rem; }
.content-prose p { color: var(--muted); }
.map-support {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 3rem;
  align-items: center;
}
.map-support__content h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
}
.map-support__content p { color: var(--muted); }
.location-map-section {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
.map-frame {
  overflow: hidden;
  min-height: 390px;
  background: #e2e9ec;
  border: 1px solid var(--line);
  border-radius: .75rem;
  box-shadow: 0 8px 24px rgba(13, 55, 109, .09);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 390px;
}
.local-copy { align-items: start; }
.simple-contact-card {
  padding: 2rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: .75rem;
  text-align: center;
}
.simple-contact-card h3 { margin: 0 0 .6rem; font-size: 1.45rem; }
.simple-contact-card p { margin: 0 0 1.25rem; color: var(--muted); }
.simple-contact-card__phone {
  display: block;
  margin-top: 1rem;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 700;
}
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.step { position: relative; padding: 1.5rem; background: #fff; border-radius: 1rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #fff;
  background: var(--cyan-dark);
  font-weight: 800;
}
.step h3 { margin: 0 0 .5rem; }
.step p { margin: 0; color: var(--muted); }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-list details { margin-bottom: .8rem; background: #fff; border: 1px solid var(--line); border-radius: .75rem; }
.faq-list summary { padding: 1.1rem 3rem 1.1rem 1.2rem; cursor: pointer; font-weight: 750; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; margin-right: -1.8rem; color: var(--cyan-dark); font-size: 1.3rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0; padding: 0 1.2rem 1.15rem; color: var(--muted); }
.nearby-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .8rem; }
.nearby-grid a {
  padding: 1rem;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .65rem;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
}
.nearby-grid a:hover { border-color: var(--cyan); box-shadow: 0 5px 18px rgba(18, 178, 207, .12); }
.cta-band { padding: 4.5rem 1.25rem; color: #fff; text-align: center; background: linear-gradient(115deg, var(--cyan-dark), var(--navy)); }
.cta-band h2 { max-width: 820px; margin: 0 auto 1rem; font-size: clamp(1.9rem, 4vw, 3.2rem); }
.cta-band p { max-width: 680px; margin: 0 auto 1.6rem; color: #e2f6fa; }
.location-hub-hero { padding: 5rem 1.25rem; color: #fff; text-align: center; background: linear-gradient(120deg, var(--navy), #087e96); }
.location-hub-hero h1 { max-width: 900px; margin: 0 auto 1rem; }
.location-hub-hero p { max-width: 760px; margin: 0 auto; font-size: 1.15rem; color: #e5f6f9; }
.site-footer { padding: 3.5rem 1.25rem 1.5rem; background: #f4f6f7; border-top: 1px solid var(--line); }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 2rem; }
.footer-logo { width: 190px; }
.footer-grid h2 { font-size: 1rem; letter-spacing: 0; }
.footer-grid p { color: var(--muted); }
.footer-links { display: grid; gap: .4rem; }
.footer-links a { color: var(--ink); }
.footer-badge { display: flex; align-items: flex-start; justify-content: flex-end; }
.footer-badge img { width: 140px; height: 140px; object-fit: contain; }
.footer-bottom { max-width: 1180px; margin: 2rem auto 0; padding-top: 1.2rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    inset: 84px 0 auto;
    padding: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .75rem .5rem; }
  .header-actions .button--secondary { display: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .nearby-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .site-header { min-height: 72px; gap: .65rem; }
  .site-logo img { width: 145px; }
  .main-nav { top: 72px; }
  .header-book { display: none; }
  .location-hero__inner { min-height: 480px; padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .location-hero--simple .location-hero__inner { min-height: 440px; }
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); text-align: left; }
  .section { padding: 3.8rem 1.1rem; }
  .card-grid, .steps, .split, .footer-grid { grid-template-columns: 1fr; }
  .map-support { grid-template-columns: 1fr; gap: 2rem; }
  .map-frame, .map-frame iframe { min-height: 320px; height: 320px; }
  .footer-badge { justify-content: flex-start; }
  .split { gap: 2rem; }
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .hero-actions .button { width: 100%; }
  .trust-strip__inner { grid-template-columns: 1fr; }
  .nearby-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
