:root {
  --green: #1ed993;
  --green-dark: #087a59;
  --ink: #14211d;
  --muted: #60706a;
  --line: #dce7e1;
  --paper: #fbfdfb;
  --soft: #eef8f2;
  --blue: #dcecff;
  --rose: #ffe5e1;
  --yellow: #fff3bf;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 33, 29, 0.11);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(251, 253, 251, 0.9);
  border-bottom: 1px solid rgba(220, 231, 225, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  width: min(320px, 62vw);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(30, 217, 147, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  color: #263b34;
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(120deg, rgba(30, 217, 147, 0.16), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(255, 229, 225, 0.8), transparent 24%),
    var(--paper);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  line-height: 1.25;
}

.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button,
.contact-actions a,
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary,
.contact-actions a,
.map-link {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

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

.hero-panel,
.hours-card,
.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.symbol {
  width: 86px;
  height: 86px;
  object-fit: contain;
  padding: 0.75rem;
  border-radius: 8px;
  background: var(--soft);
}

.panel-label {
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-weight: 700;
}

.panel-time {
  margin-bottom: 0;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.1;
}

.quick-info,
.hours-card dl {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.quick-info div,
.hours-card dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-weight: 700;
}

dd {
  margin: 0;
  font-weight: 900;
}

.section,
.split-section,
.contact-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

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

.service-card {
  min-height: 260px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card:nth-child(2) {
  background: var(--blue);
}

.service-card:nth-child(3) {
  background: var(--yellow);
}

.service-card:nth-child(4) {
  background: var(--rose);
}

.service-card p,
.text-block p,
.business-row p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.notice {
  padding: 2rem;
  background: var(--green);
  color: var(--ink);
}

.notice p {
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.18;
}

.notice a {
  font-size: 1.2rem;
  font-weight: 900;
}

.muted {
  background: #f5f8f7;
}

.business-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.business-row p {
  max-width: 840px;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.contact-section .eyebrow,
.contact-section address {
  color: #a7f3d0;
}

address {
  font-style: normal;
  font-size: 1.2rem;
}

.hours-card {
  padding: 1.5rem;
  color: var(--ink);
}

.map-link {
  width: 100%;
  margin-top: 1.25rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 5vw, 5rem);
  background: #0c1714;
  color: #d7e2dd;
  font-size: 0.95rem;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .hero,
  .section-heading,
  .split-section,
  .business-row,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-button {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    inset: 100% 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

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

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

  .service-card {
    min-height: auto;
  }

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

@media (max-width: 480px) {
  .brand {
    width: 230px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button,
  .contact-actions a {
    width: 100%;
  }
}
