:root {
  --bg: #f4f7f5;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --ink: #102332;
  --muted: #5a6b76;
  --line: rgba(16, 35, 50, 0.12);
  --navy: #0b2d45;
  --teal: #2e7a8a;
  --seafoam: #dcebe8;
  --sand: #f5efe6;
  --shadow: 0 28px 80px rgba(11, 45, 69, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shell: min(1120px, calc(100vw - 32px));
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(46, 122, 138, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(11, 45, 69, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfcfb 0%, #f5f7f4 56%, #eef3f1 100%);
}

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

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

p {
  line-height: 1.7;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(245, 247, 245, 0.82);
  border-bottom: 1px solid rgba(16, 35, 50, 0.08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

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

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--ink);
  padding: 11px 16px;
  font: inherit;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--navy), #155574);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(11, 45, 69, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy) !important;
  border-color: rgba(11, 45, 69, 0.12);
  box-shadow: none;
}

.button-small {
  min-height: 40px;
  padding-inline: 15px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: center;
  overflow: clip;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 18, 27, 0.72) 0%, rgba(7, 18, 27, 0.42) 42%, rgba(7, 18, 27, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.82fr;
  gap: 28px;
  padding: 56px 0;
}

.hero-copy {
  max-width: 660px;
  color: #fff;
}

.eyebrow,
.section-kicker,
.hero-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero h1,
.section-head h2,
.cta-panel h2,
.bio-copy h2,
.trust-panel h2,
.contact-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.97;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.9rem);
  max-width: 11ch;
}

.lede {
  max-width: 58ch;
  margin: 20px 0 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.hero-points li,
.proof-grid div,
.step,
.contact-card,
.hours-card,
.trust-panel,
.cta-panel,
.bio-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(7, 18, 27, 0.14);
}

.hero-points li {
  padding: 12px 14px;
  font-size: 0.94rem;
}

.hero-card {
  align-self: end;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.hero-list li {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.hero-list span,
.contact-list span,
.hours-row span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.hero-list strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.55;
}

.proof-bar {
  padding: 20px 0 6px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.proof-grid div {
  padding: 18px 18px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.proof-grid strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 5px;
}

.proof-grid span,
.small-note,
.footer-copy {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.9));
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.cta-panel h2,
.bio-copy h2,
.trust-panel h2,
.contact-card h2 {
  font-size: clamp(2.05rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 220px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(16, 35, 50, 0.08);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

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

.service-card .tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--seafoam);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.bio-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, rgba(11, 45, 69, 0.96), rgba(21, 85, 116, 0.92));
}

.bio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-copy {
  padding: 30px;
}

.bio-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.bio-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.bio-list li {
  position: relative;
  padding-left: 20px;
}

.bio-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ad8df;
}

.trust-panel,
.contact-card,
.hours-card,
.cta-panel {
  padding: 30px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.trust-panel p,
.contact-card p,
.hours-card p,
.cta-panel p {
  color: var(--muted);
}

.insurance-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.insurance-strip img {
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  object-fit: contain;
  height: 72px;
  width: 100%;
  filter: saturate(0.98);
}

.small-note {
  margin-top: 16px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step {
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--navy);
  font-weight: 800;
}

.step h3 {
  margin: 16px 0 10px;
  font-size: 1.2rem;
}

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

.contact-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 16px;
}

.contact-list li {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-list a {
  font-weight: 700;
}

.hours-card {
  display: grid;
  gap: 12px;
}

.hours-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.hours-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.maintenance-note {
  margin-top: 10px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(46, 122, 138, 0.12), rgba(11, 45, 69, 0.08));
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  line-height: 1;
  color: var(--teal);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--muted);
}

.cta-section {
  padding-bottom: 110px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.3fr auto;
  align-items: center;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(46, 122, 138, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.88);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 22px 0 38px;
  border-top: 1px solid rgba(16, 35, 50, 0.08);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-grid p {
  margin: 6px 0 0;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1060px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .cards-grid,
  .steps-grid,
  .insurance-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bio-card {
    grid-template-columns: 1fr;
  }

  .bio-card img {
    max-height: 340px;
  }
}

@media (max-width: 780px) {
  .header-inner {
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 30px 0 46px;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  .hero-card {
    margin-top: 6px;
  }

  .proof-grid,
  .cards-grid,
  .steps-grid,
  .insurance-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    align-items: flex-start;
  }
}
