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

:root {
  --green-900: #1B4332;
  --green-800: #2D6A4F;
  --green-700: #40916C;
  --green-600: #52B788;
  --green-500: #74C69D;
  --cream-100: #F8F6F0;
  --cream-200: #F0EDE4;
  --cream-300: #E8E4D8;
  --warm-100: #D4A373;
  --warm-200: #C9B99A;
  --text-dark: #1A1A1A;
  --text-mid: #3D3D3D;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream-100);
  line-height: 1.6;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--green-900);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 4px 4px;
  z-index: 1000;
  font-size: 0.875rem;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 246, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  transition: background 0.3s var(--ease-smooth);
}
.nav.scrolled {
  background: rgba(248, 246, 240, 0.96);
  box-shadow: 0 1px 20px rgba(27, 67, 50, 0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--green-900);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.5rem 0.875rem;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--green-800);
  background: rgba(45, 106, 79, 0.06);
}
.nav-cta {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-900);
  padding: 0.625rem 1.25rem;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--green-800);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 0.5rem;
}
.nav-toggle-line {
  width: 22px;
  height: 1.5px;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 67, 50, 0.4);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-smooth);
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-900);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(45, 106, 79, 0.9) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(64, 145, 108, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 60% 80%, rgba(82, 183, 136, 0.4) 0%, transparent 50%),
    linear-gradient(160deg, #0F2B1E 0%, #1B4332 40%, #2D6A4F 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.7;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-100);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title-accent {
  font-style: italic;
  color: var(--warm-100);
  font-weight: 300;
}
.hero-subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}
.hero-image-col {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--warm-100);
  color: var(--green-900);
}
.btn-primary:hover {
  background: #E0B08A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 163, 115, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─── Section shared ─── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.875rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--green-900);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 520px;
  font-weight: 300;
}
.section-header {
  margin-bottom: 4rem;
}

/* ─── Services ─── */
.services {
  padding: 7rem 0;
  background: var(--cream-100);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(27, 67, 50, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(27, 67, 50, 0.1);
}
.service-card-img {
  aspect-ratio: 400/260;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card-body {
  padding: 1.75rem;
}
.service-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(27, 67, 50, 0.06);
  color: var(--green-800);
  margin-bottom: 1rem;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--green-900);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.service-card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-light);
  font-weight: 300;
}
.services-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}

/* ─── About ─── */
.about {
  padding: 7rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images {
  position: relative;
  min-height: 560px;
}
.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 480/560;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 67, 50, 0.15);
  border: 4px solid var(--white);
  aspect-ratio: 320/240;
}
.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-accent {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--warm-100);
  opacity: 0.2;
  z-index: -1;
}
.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-feature-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(27, 67, 50, 0.08);
  color: var(--green-800);
  flex-shrink: 0;
}
.about-feature-text {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.4;
}

/* ─── Gallery ─── */
.gallery {
  padding: 7rem 0;
  background: var(--cream-100);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery-item:nth-child(2) {
  aspect-ratio: 4/3;
  grid-column: span 1;
  grid-row: span 1;
}
.gallery-item:nth-child(3) {
  aspect-ratio: 4/5;
}
.gallery-item:nth-child(4) {
  aspect-ratio: 4/3.5;
}
.gallery-item:nth-child(5) {
  aspect-ratio: 1;
}
.gallery-item:nth-child(6) {
  aspect-ratio: 4/4.5;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img {
  transform: scale(1.06);
}

/* ─── Hours ─── */
.hours {
  padding: 7rem 0;
  background: var(--white);
}
.hours-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(27, 67, 50, 0.08);
  background: var(--cream-100);
}
.hours-content {
  padding: 3.5rem;
}
.hours-grid {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.hours-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(27, 67, 50, 0.06);
  font-size: 0.9375rem;
}
.hours-day-name {
  font-weight: 400;
  color: var(--text-dark);
}
.hours-day-time {
  color: var(--text-light);
  font-weight: 300;
}
.hours-day-closed .hours-day-time {
  color: var(--green-700);
  font-weight: 400;
}
.hours-cta {
  margin-top: 2rem;
}
.hours-map {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
}
.hours-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hours-map-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* ─── Contact ─── */
.contact {
  padding: 7rem 0;
  background: var(--cream-100);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-weight: 300;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(27, 67, 50, 0.06);
  color: var(--green-800);
  flex-shrink: 0;
}
.contact-detail-label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.contact-detail-value {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.5;
}
.contact-detail-link {
  color: var(--green-800);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.contact-detail-link:hover {
  color: var(--green-600);
  text-decoration: underline;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(27, 67, 50, 0.06);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--cream-300);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream-100);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}
.form-input::placeholder {
  color: var(--cream-300);
}
.form-input:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.1);
  background: var(--white);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(27, 67, 50, 0.06);
  border-radius: 10px;
  font-size: 0.9375rem;
  color: var(--green-800);
  font-weight: 400;
}
.form-success svg {
  flex-shrink: 0;
  color: var(--green-700);
}

/* ─── Footer ─── */
.footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  font-weight: 300;
}
.footer-heading {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
  font-weight: 300;
}
.footer-links a:hover {
  color: var(--warm-100);
}
.footer-contact address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.8;
  font-weight: 300;
}
.footer-contact a {
  color: var(--warm-100);
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--warm-200);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── Scroll to top ─── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
  z-index: 50;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--green-800);
  transform: translateY(-2px);
}

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    gap: 3rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(6) {
    aspect-ratio: 1;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav.mobile-open .nav-links,
  .nav.mobile-open .nav-cta {
    display: flex;
  }
  .nav.mobile-open .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream-100);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 95;
  }
  .nav.mobile-open .nav-links a {
    font-size: 1.125rem;
    padding: 0.875rem 1.5rem;
  }
  .nav.mobile-open .nav-cta {
    display: inline-flex;
    margin-top: 1rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 7rem;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-image-col {
    display: none;
  }

  .services,
  .about,
  .gallery,
  .hours,
  .contact {
    padding: 4.5rem 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-images {
    min-height: 400px;
    order: -1;
  }
  .about-img-float {
    right: 0;
    bottom: -1.5rem;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    aspect-ratio: 1;
  }
  .hours-card {
    grid-template-columns: 1fr;
  }
  .hours-map {
    min-height: 280px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  .hero-inner {
    padding: 6rem 1.25rem 3rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item:nth-child(n) {
    aspect-ratio: 4/3;
  }
  .hours-content {
    padding: 2rem;
  }
  .contact-form-wrap {
    padding: 1.75rem;
  }
}
