:root {
  --bg: #f5fbfb;
  --surface: #ffffff;
  --surface-alt: #dff4f1;
  --text: #0e2f34;
  --muted: #58787d;
  --line: #bfd8d6;
  --brand: #12747e;
  --brand-dark: #0b5b62;
  --shadow: 0 24px 60px rgba(18, 116, 126, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1120px, calc(100% - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(18, 116, 126, 0.14), transparent 30%),
    linear-gradient(180deg, #f8ffff 0%, var(--bg) 100%);
}

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

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(245, 251, 251, 0.88);
  border-bottom: 1px solid rgba(191, 216, 214, 0.7);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

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

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

.brand small {
  color: var(--muted);
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--brand);
  color: white;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-dark);
}

.nav-cta {
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: var(--brand);
  color: white !important;
}

.menu-toggle {
  display: none;
}

.hero,
.section {
  padding: 6rem 0;
}

.hero-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eyebrow {
  margin: 0 0 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Fraunces", serif;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.6rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.45rem;
}

p,
li,
span,
button {
  line-height: 1.7;
}

.hero-text,
.about-copy p,
.contact-card p,
.location-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
}

.button-primary {
  background: var(--brand);
  color: white;
  box-shadow: var(--shadow);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--brand-dark);
}

.hero-points,
.contact-list,
.hours-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}

.hero-card {
  display: flex;
  align-items: stretch;
}

.hero-panel {
  width: 100%;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #eef8f8 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.panel-photo {
  margin: 0 0 1.4rem;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(191, 216, 214, 0.9);
}

.panel-photo img,
.map-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-label {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-grid,
.service-grid,
.review-grid,
.trust-cards {
  display: grid;
  gap: 1.25rem;
}

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

.stat-grid article,
.service-card,
.review-grid blockquote,
.trust-cards article,
.contact-card,
.location-card {
  background: var(--surface);
  border: 1px solid rgba(191, 216, 214, 0.85);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.stat-grid article {
  padding: 1.2rem;
}

.stat-grid strong {
  display: block;
  font-size: 2rem;
  color: var(--brand-dark);
}

.stat-grid span {
  color: var(--muted);
}

.hours-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
}

.hours-card ul li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(18, 116, 126, 0.14);
}

.hours-card ul li:last-child {
  border-bottom: 0;
}

.trust-bar {
  padding-top: 0;
}

.trust-grid {
  padding: 2rem;
  border-radius: 32px;
  background: #e6f7f5;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 1.3fr;
}

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

.trust-cards article,
.service-card,
.review-grid blockquote {
  padding: 1.5rem;
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.accent-section {
  background: linear-gradient(180deg, rgba(223, 244, 241, 0.4), rgba(223, 244, 241, 0.9));
}

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

blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

cite {
  display: block;
  margin-top: 1rem;
  color: var(--text);
  font-style: normal;
  font-weight: 800;
}

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

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

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.4rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 1.4rem 1.2rem;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-card,
.location-card {
  padding: 2rem;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list li:last-child {
  border-bottom: 0;
}

.map-placeholder {
  margin-top: 1.5rem;
  min-height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(191, 216, 214, 0.85);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  padding: 1.6rem 0 2.4rem;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .trust-grid,
  .service-grid,
  .review-grid,
  .trust-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    min-height: 48px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: white;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-shell {
    position: relative;
    min-height: 76px;
  }

  .hero,
  .section {
    padding: 4.5rem 0;
  }

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

  .footer-shell {
    flex-direction: column;
  }
}
