/* ===== CUSTOM PROPERTIES ===== */

/* Remnants of the tailwind codebase.. */

:root {
  --garden-50:  #f2f9f3;
  --garden-100: #e0f2e3;
  --garden-200: #c3e6c8;
  --garden-300: #96d09e;
  --garden-400: #61b36d;
  --garden-500: #3d7a45;
  --garden-600: #2f6237;
  --garden-700: #274f2d;
  --garden-800: #223f26;
  --garden-900: #1c3420;

  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.5;
}

img { display: block; }
ul  { list-style: none; margin: 0; padding: 0; }
a   { text-decoration: none; }
button { cursor: pointer; }

.hidden { display: none !important; }

/* ===== SHARED LAYOUT ===== */
.section-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 0.75rem;
}

.section-subtitle {
  color: var(--gray-500);
  max-width: 36rem;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--garden-700);
  font-weight: 700;
  font-size: 1.25rem;
  font-family: "Fjalla One";
}

.nav-logo-img {
  height: 2.25rem;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
}

.nav-links a {
  color: inherit;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--garden-600); }

.nav-cta {
  background: var(--garden-500);
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: var(--garden-600) !important;
  color: #fff !important;
}

.hamburger-btn {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--gray-600);
  background: none;
  border: none;
  transition: background 0.15s;
}

.hamburger-btn:hover { background: var(--gray-100); }

.hamburger-icon { width: 1.5rem; height: 1.5rem; }

/* Mobile menu */
.mobile-menu {
  background: #fff;
  border-top: 1px solid var(--gray-100);
  padding: 0.75rem 1rem 1rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

.mobile-nav-links a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  color: inherit;
  transition: background 0.15s, color 0.15s;
}

.mobile-nav-links a:hover {
  background: var(--gray-50);
  color: var(--garden-600);
}

.mobile-nav-cta {
  background: var(--garden-500) !important;
  color: #fff !important;
  text-align: center;
  margin-top: 0.5rem;
}

.mobile-nav-cta:hover { background: var(--garden-600) !important; }

/* ===== HERO ===== */
.hero-logo {
  max-width: 300px;
  width: 80%;
  margin: 0 auto 1.5rem;
  height: auto;
}
.hero {
  position: relative;
  height: 60vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 52, 32, 0.23);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #dcfce7;
  margin: 0 0 2rem;
}

.hero-cta {
  display: inline-block;
  background: var(--garden-500);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
  transition: background 0.15s;
}

.hero-cta:hover {
  background: var(--garden-400);
  color: #fff;
}

/* ===== AREA ===== */
.area-section {
  padding: 5rem 0;
  background: var(--garden-50);
  position: relative;
  z-index: 0;
}

.area-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.area-text .section-title { margin-bottom: 1rem; }

.area-intro {
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.area-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-700);
  font-size: 0.9375rem;
}

.area-list li::before {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  background: var(--garden-500);
  border-radius: 50%;
  flex-shrink: 0;
}

.area-note {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

.area-note a {
  color: var(--garden-600);
  text-decoration: underline;
}

.area-map-wrapper {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.map-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  .map-overlay {
    display: none !important;
  }
}

.area-map-disclaimer {
  font-size: 0.75rem;
  color: #999;
  margin: 0.5rem 0 0;
}

#map { height: 380px; width: 100%; }

/* ===== ABOUT ===== */
.about-section {
  padding: 5rem 0;
  background: #fff;
}

.about-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-text .section-title { margin-bottom: 1rem; }

.about-text p {
  color: var(--gray-600);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.about-text p:last-child { margin-bottom: 0; }

.about-image {
  flex-shrink: 0;
}

.about-image img {
  width: 100%;
  border-radius: 0.75rem;
  display: block;
}

/* ===== SERVICES ===== */
.services-section {
  padding: 5rem 0;
  background: #fff;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  border-color: var(--garden-400);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
}

.service-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0;
}

.service-card-content p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* Extras card (accent stripe + compact list) */
.service-card-noimage {
  background: var(--garden-300);
  flex-shrink: 0;
  /* mobile: thin top strip */
  height: 0.375rem;
}

.service-extra-item + .service-extra-item {
  border-top: 1px solid var(--gray-100);
  padding-top: 0.85rem;
}

.service-extra-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 0.2rem;
}

.service-extra-item p {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

/* CTA banner */
.service-cta-card {
  border: 2px dashed var(--garden-300);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--garden-50);
  gap: 0.75rem;
}

.service-cta-card .cta-heading {
  color: var(--garden-700);
  font-weight: 600;
  font-size: 1.125rem;
  margin: 0;
}

.service-cta-card .cta-body {
  color: var(--garden-600);
  font-size: 0.875rem;
  margin: 0;
}

.service-cta-btn {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--garden-500);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  transition: background 0.15s;
}

.service-cta-btn:hover {
  background: var(--garden-600);
  color: #fff;
}

/* ===== BEFORE & AFTER SECTION ===== */
.ba-section {
  padding: 5rem 0;
  background: var(--garden-50);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.ba-pair {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  background: #fff;
}

.ba-half {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 250px;
}

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

/* Before/After labels */
.ba-label {
  position: absolute;
  bottom: 0.75rem;
  background: #fff;
  color: var(--gray-800);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
}

.ba-label-before {
  left: 0;
  bottom: 0.75rem;
  top: auto;
  border-left: 3px solid var(--garden-400);
  border-radius: 0 4px 4px 0;
}

.ba-label-after {
  left: 0;
  top: 0.75rem;
  bottom: auto;
  border-left: 3px solid var(--garden-400);
  border-radius: 0 4px 4px 0;
}

/* Per-pair image adjustments */
#ba-1 .ba-half:first-child img { object-position: center 30%; transform: scale(1.13); }
#ba-1 .ba-half:last-child img  { object-position: center 50%; transform: scale(1.13) translate(5%, 5%); }
#ba-2 .ba-half:first-child img { object-position: center 65%; transform: scale(1.2); }
#ba-2 .ba-half:last-child img  { object-position: center 0%;  transform: scale(1.44) translate(5%, 8%); }
#ba-0 .ba-half:first-child img { object-position: center 20%; }
#ba-0 .ba-half:last-child img  { object-position: center 20%; transform: scale(1.25); }

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

  .ba-pair {
    flex-direction: row;
  }

  .ba-pair > div {
    width: 50%;
    height: 360px;
  }

  .ba-label-after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0.75rem;
    border-left: none;
    border-right: 3px solid var(--garden-400);
    border-radius: 4px 0 0 4px;
  }
}


/* ===== CONTACT ===== */
.contact-section {
  padding: 5rem 0;
  background: #fff;
}

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info h3 {
  font-weight: 600;
  color: var(--gray-700);
  margin: 0 0 1rem;
  font-size: 1.125rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--gray-600);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-info-item.row { align-items: center; }

.contact-info-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--garden-500);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contact-info-item.row .contact-info-icon { margin-top: 0; }

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.hours-row {
  display: flex;
  justify-content: space-between;
}

.hours-value { font-weight: 500; }
.hours-value.closed { color: var(--gray-400); }

/* Contact form */
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}

.form-label-optional {
  color: var(--gray-400);
  font-weight: 400;
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--garden-400);
  box-shadow: 0 0 0 3px rgba(97, 179, 109, 0.2);
}

.form-textarea {
  resize: none;
  min-height: 7.5rem;
}

.form-submit {
  width: 100%;
  background: var(--garden-500);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: background 0.15s;
}

.form-submit:hover   { background: var(--garden-600); }
.form-submit:active  { background: var(--garden-700); }

#form-success {
  text-align: center;
  color: var(--garden-600);
  font-weight: 500;
  font-size: 0.875rem;
  padding-top: 0.25rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--garden-900);
  color: #bbf7d0;
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}

.footer-logo span {
  font-weight: 700;
  color: #fff;
  font-size: 1.125rem;
}

.footer-brand p {
  color: #86efac;
  font-size: 0.875rem;
  margin: 0;
}

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

.footer-nav a {
  color: #86efac;
  font-size: 0.875rem;
  transition: color 0.15s;
}

.footer-nav a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--garden-800);
}

.footer-bottom-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  text-align: center;
  color: var(--garden-400);
  font-size: 0.75rem;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .nav-links       { display: flex; }
  .hamburger-btn   { display: none; }
  .mobile-menu     { display: none !important; }

  .hero-title    { font-size: 3rem; }
  .hero-subtitle { font-size: 1.125rem; }

  .area-layout { flex-direction: row; align-items: flex-start; }
  .area-text { width: 38%; flex-shrink: 0; }
  .area-map-column { flex: 1; }

  .about-layout { flex-direction: row; align-items: flex-start; }
  .about-text { flex: 1; }
  .about-image { width: 42%; align-self: flex-start; }

  .section-title { font-size: 2.25rem; }

  .service-card { display: grid; grid-template-columns: 38% 1fr; align-items: stretch; height: 278px; }
  .service-card-image { aspect-ratio: unset; min-height: 0; height: 100%; }
  .service-card--extras { grid-template-columns: 0.375rem 1fr; }
  .service-card-noimage { height: auto; }

  .service-cta-card { height: 278px; padding: 1.5rem; }

  .contact-layout         { flex-direction: row; }
  .contact-info           { width: 40%; flex-shrink: 0; }
  .contact-form-wrapper   { flex: 1; }

  .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-nav   { flex-direction: row; gap: 2rem; }
}

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

