:root {
  --green: #00bf00;
  --green-dark: #009900;
  --charcoal: #333333;
  --teal: #68ccd1;
  --teal-light: #e6f7f8;
  --white: #ffffff;
  --grey: #666666;
  --grey-light: #f5f5f5;
  --grey-border: #e0e0e0;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Assistant', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.16);

  --container: 1160px;
  --section-pad: clamp(3rem, 6vw, 6rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.0625rem);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 600; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-intro {
  color: var(--grey);
  max-width: 540px;
  margin-inline: auto;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7em 1.75em;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.btn-lg {
  padding: 0.85em 2.2em;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 4px 18px rgba(0,191,0,0.3);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,191,0,0.25);
}

.btn-white-green {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.btn-white-green:hover {
  background: #e6ffe6;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 68px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--green);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  color: var(--white);
  letter-spacing: -0.01em;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  gap: clamp(0.75rem, 2vw, 2rem);
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.25em 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  border-bottom-color: var(--green);
}

.nav-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}

.header-cta {
  flex-shrink: 0;
  font-size: 0.875rem;
  padding: 0.55em 1.3em;
}

.hero {
  position: relative;
  min-height: clamp(520px, 80vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(30,35,30,0.82) 0%, rgba(30,35,30,0.55) 60%, rgba(30,35,30,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(3rem, 8vw, 6rem);
  max-width: 740px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 1rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero-sub {
  color: rgba(255,255,255,0.87);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4em 1em;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.badge-icon {
  color: var(--green);
  font-size: 1rem;
}

.strip-bar {
  background: var(--charcoal);
  border-top: 3px solid var(--green);
  padding-block: 1rem;
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 0;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding-inline: clamp(1rem, 3vw, 2.5rem);
}

.strip-item svg {
  color: var(--teal);
  flex-shrink: 0;
}

.strip-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.2);
}

.about-section {
  padding-block: var(--section-pad);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: visible;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: block;
}

.about-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 55%;
  height: 55%;
  background: var(--teal-light);
  border-radius: var(--radius-md);
  z-index: -1;
  border: 3px solid var(--teal);
}

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--grey);
  margin-bottom: 1rem;
}

.about-text p:last-of-type {
  margin-bottom: 1.75rem;
}

.services-section {
  padding-block: var(--section-pad);
  background: var(--grey-light);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 540px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon-wrap {
  background: var(--charcoal);
  color: var(--green);
  padding: 1.1rem 1.25rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-img {
  transform: scale(1.04);
}

.service-card h3 {
  padding: 1.1rem 1.25rem 0.4rem;
  color: var(--charcoal);
}

.service-card p {
  padding: 0 1.25rem 1.25rem;
  color: var(--grey);
  font-size: 0.93rem;
  flex: 1;
}

.service-card .btn {
  margin: 0 1.25rem 1.5rem;
  align-self: flex-start;
}

.cta-banner {
  background: linear-gradient(120deg, var(--charcoal) 0%, #1a2e1a 100%);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 4px solid var(--green);
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-text h2 {
  color: var(--white);
  margin-bottom: 0.4rem;
}

.cta-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-shrink: 0;
}

.contact-section {
  padding-block: var(--section-pad);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--grey);
  margin-bottom: 2rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  background: var(--teal-light);
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-list li div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-list li strong {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
}

.contact-list li a {
  color: var(--charcoal);
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s;
}

.contact-list li a:hover {
  color: var(--green);
}

.contact-list li a:focus-visible {
  outline: 2px solid var(--teal);
  border-radius: 2px;
}

.contact-list li span {
  color: var(--grey);
  font-size: 0.97rem;
}

.contact-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.site-footer {
  background: var(--charcoal);
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 0.9rem;
  display: inline-flex;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-nav h3,
.footer-contact h3 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.93rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--green);
}

.footer-nav a:focus-visible {
  outline: 2px solid var(--teal);
  border-radius: 2px;
}

.footer-contact p {
  color: rgba(255,255,255,0.75);
  font-size: 0.93rem;
  margin-bottom: 0.4rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--green);
}

.footer-contact a:focus-visible {
  outline: 2px solid var(--teal);
  border-radius: 2px;
}

.footer-bottom {
  padding-block: 1.1rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.83rem;
  text-align: center;
}

@media (max-width: 640px) {
  .strip-divider {
    display: none;
  }
  .strip-inner {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-block: 0.5rem;
  }
  .strip-item {
    padding-inline: 0;
  }
  .header-cta {
    display: none;
  }
}



.about-hero {
  position: relative;
  min-height: clamp(360px, 55vh, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-img-wrap {
  position: absolute;
  inset: 0;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(30,35,30,0.85) 0%, rgba(30,35,30,0.6) 60%, rgba(30,35,30,0.35) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(2.5rem, 6vw, 5rem);
  max-width: 700px;
}

.about-hero-content h1 {
  color: var(--white);
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.values-section {
  padding-block: var(--section-pad);
  background: var(--grey-light);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 540px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.25s, transform 0.2s;
  border-top: 4px solid var(--green);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--charcoal);
  color: var(--green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-card h3 {
  color: var(--charcoal);
  margin-top: 0.25rem;
}

.value-card p {
  color: var(--grey);
  font-size: 0.93rem;
  line-height: 1.65;
  flex: 1;
}

.story-section {
  padding-block: var(--section-pad);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.story-text h2 {
  margin-bottom: 1.25rem;
}

.story-text p {
  color: var(--grey);
  margin-bottom: 1rem;
}

.story-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 2rem;
  background: var(--grey-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--grey-border);
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1rem;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--grey-border);
  flex-shrink: 0;
}

.story-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.hours-section {
  padding-block: var(--section-pad);
  background: var(--charcoal);
}

.hours-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .hours-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.hours-text .section-label {
  color: var(--teal);
}

.hours-text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hours-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.hours-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-day {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  min-width: 110px;
}

.hours-dots {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(255,255,255,0.2) 0, rgba(255,255,255,0.2) 4px, transparent 4px, transparent 8px);
}

.hours-time {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal);
  text-align: right;
}

.hours-closed .hours-time {
  color: rgba(255,255,255,0.4);
}



.contact-hero {
  position: relative;
  min-height: clamp(280px, 40vh, 440px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-hero-img-wrap {
  position: absolute;
  inset: 0;
}

.contact-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(30,35,30,0.85) 0%, rgba(30,35,30,0.55) 70%, rgba(30,35,30,0.3) 100%);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(2.5rem, 6vw, 5rem);
  max-width: 640px;
}

.contact-hero-content h1 {
  color: var(--white);
  margin-bottom: 0.9rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.contact-hero-content .hero-sub {
  color: rgba(255,255,255,0.87);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 480px;
  margin-bottom: 0;
}

.contact-main-section {
  padding-block: var(--section-pad);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

@media (min-width: 860px) {
  .contact-main-grid {
    grid-template-columns: 1fr 380px;
  }
}

.contact-intro {
  color: var(--grey);
  margin-bottom: 2rem;
  font-size: 1.03rem;
  max-width: 540px;
}

.contact-details-col h2 {
  margin-bottom: 0.75rem;
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hours-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--grey-border);
}

.hours-card-header {
  background: var(--charcoal);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hours-card-header svg {
  color: var(--teal);
  flex-shrink: 0;
}

.hours-card-header h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.hours-list {
  padding: 0.5rem 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1.5rem;
  border-bottom: 1px solid var(--grey-border);
  gap: 1rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-day {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

.hours-time {
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 500;
}

.hours-closed .hours-day {
  color: var(--grey);
}

.closed-label {
  color: #c0392b;
  font-weight: 600;
}

.services-strip {
  padding-block: var(--section-pad);
  background: var(--grey-light);
}

.services-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 540px) {
  .services-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .services-strip-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.strip-service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
}

.strip-service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--green);
}

.strip-service-card:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.strip-svc-icon {
  background: var(--teal-light);
  color: var(--teal);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  flex-shrink: 0;
}

.strip-service-card h3 {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin: 0;
}

.strip-service-card p {
  color: var(--grey);
  font-size: 0.91rem;
  line-height: 1.6;
  flex: 1;
}

.strip-svc-cta {
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.4rem;
  transition: color 0.2s;
}

.strip-service-card:hover .strip-svc-cta {
  color: var(--green-dark);
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
