:root {
  --ink: #142019;
  --muted: #526056;
  --paper: #e9eee1;
  --surface: #ffffff;
  --line: #c9d3c0;
  --sage: #617a4f;
  --pine: #1d4e31;
  --clay: #4f6f58;
  --gold: #f2b84b;
  --blue: #5f7168;
}

body {
  background: #e9eee1;
}

.hub-shell {
  background: #e9eee1;
  min-height: 100vh;
  padding: 14px;
}

.hub-shell .nav {
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 260px 1fr;
  max-width: none;
  padding: 14px;
}

.hub-shell .nav-links {
  justify-content: flex-end;
}

.hub-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) 300px;
  grid-template-areas:
    "copy contact"
    "media contact";
  margin: 14px 0 0;
}

.hub-grid .hero-copy,
.hub-contact-panel,
.hub-media {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.hub-grid .hero-copy {
  grid-area: copy;
  padding: clamp(24px, 5vw, 56px);
}

.hub-grid h1 {
  font-size: clamp(3rem, 7.4vw, 7.4rem);
  max-width: 980px;
}

.hub-contact-panel {
  align-self: stretch;
  display: grid;
  gap: 14px;
  grid-area: contact;
  padding: 24px;
}

.hub-contact-panel strong {
  color: var(--pine);
  display: block;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 0.9;
}

.hub-contact-panel span {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
}

.hub-media {
  aspect-ratio: 2.45;
  grid-area: media;
  min-height: 260px;
}

.hub-media img {
  object-position: center 38%;
}

.hub-strip {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 14px 0 0;
  max-width: none;
}

.hub-strip span {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--pine);
  padding: 16px 14px;
}

.section {
  max-width: none;
}

.intro {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 14px;
  padding: 36px;
}

.services {
  padding: 56px 14px;
}

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

.service-card,
.path-card,
.store-grid article,
.visit-card,
.review-card,
.rating-card,
details {
  background: #ffffff;
  border-color: var(--line);
  box-shadow: none;
}

.service-card {
  min-height: 250px;
  padding: 20px;
}

.service-icon {
  background: #e1ead7;
}

.store-section {
  background: #dbe4d1;
}

.team {
  background: #1d4e31;
}

.community {
  background: #ffffff;
  gap: 20px;
  grid-template-columns: minmax(250px, 0.46fr) minmax(0, 1fr);
  margin: 14px;
  padding: 34px;
}

.community-photo {
  aspect-ratio: 1.35;
}

.reviews,
.visit,
.faq {
  padding-left: 14px;
  padding-right: 14px;
}

.rating-card {
  background: #1d4e31;
}

.eyebrow,
.section-kicker,
.path-card span,
.reviewer {
  color: #4f6f58;
}

.button.call {
  background: #2f6a43;
}

.team .section-kicker,
.role {
  color: #cfe0c5 !important;
}

.stars,
.rating-card .review-count {
  color: var(--gold);
}

.care-note {
  margin: 14px;
  border-radius: 8px;
}

@media (max-width: 1100px) {
  .hub-shell .nav,
  .hub-grid,
  .community {
    grid-template-columns: 1fr;
  }

  .hub-grid {
    grid-template-areas:
      "copy"
      "contact"
      "media";
  }

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

@media (max-width: 620px) {
  .hub-shell {
    padding: 8px;
  }

  .hub-shell .nav-links {
    justify-content: flex-start;
  }

  .hub-media {
    aspect-ratio: 1.15;
    min-height: 0;
    width: 100%;
  }

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

  .intro,
  .community,
  .care-note {
    margin: 8px;
  }
}
