/* ============================================================
   EARTHTONE CREATIONS â€” Global Stylesheet
   Brand: Dark forest green / olive / warm cream / brown serif
   ============================================================ */

/* â”€â”€ Google Fonts â”€â”€ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Nunito:wght@300;400;500;600;700&display=swap');

/* â”€â”€ CSS Variables â”€â”€ */
:root {
  --green-900: #1b3a21;
  --green-800: #2a5432;
  --green-700: #3a6640;   /* primary green â€” buttons, nav CTA */
  --green-600: #4d7a52;
  --green-500: #6b8a4e;   /* olive accent */
  --green-400: #8aaa6b;
  --green-100: #e8f0e2;

  --brown-900: #2a1608;
  --brown-700: #4a2c14;   /* dark brown â€” headings, logo text */
  --brown-500: #7a4e26;
  --brown-300: #b88a60;

  --cream: #f7f4ee;        /* page background */
  --cream-dark: #ede8dc;   /* alternate section bg */
  --white: #ffffff;
  --black: #111111;

  --text-dark: #2a1f14;    /* primary body text (warm) */
  --text-mid: #5a4c3a;     /* secondary body text */
  --text-light: #8a7a68;   /* muted text */

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 4px rgba(42,31,20,0.08);
  --shadow-md: 0 4px 16px rgba(42,31,20,0.12);
  --shadow-lg: 0 8px 32px rgba(42,31,20,0.16);

  --transition: 0.25s ease;
  --max-width: 1200px;
}

/* â”€â”€ Reset & Base â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* â”€â”€ Typography â”€â”€ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--brown-700);
  line-height: 1.25;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.125rem;
  color: var(--text-mid);
  font-weight: 400;
}

/* â”€â”€ Layout â”€â”€ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { position: relative; }

.section-pad { padding: 80px 0; }
.section-pad-lg { padding: 100px 0; }
.section-pad-sm { padding: 56px 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-500);
  padding: 0.35em 1em;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.section-label.dark {
  background: var(--green-700);
}
.section-label.light {
  color: var(--green-700);
  background: var(--green-100);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.section-header .section-label { margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; }

/* â”€â”€ Buttons â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85em 1.75em;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

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

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

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

.btn-lg { padding: 1em 2.25em; font-size: 1rem; }

/* â”€â”€ Navigation â”€â”€ */
/* â”€â”€ Click-to-Call Floating Button â”€â”€ */
.call-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green-700);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(42,84,50,0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.call-float:hover {
  background: var(--green-800);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(42,84,50,0.45);
  color: #fff;
}
.call-float svg {
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .call-float { display: none; }
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo img {
  height: 90px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brown-700);
}
.nav-logo-text .brand-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--green-500);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--green-500);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover { color: var(--green-700); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--green-700); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-700);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  padding: 1.5rem;
  gap: 1rem;
}
.nav-mobile a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
  display: block;
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--green-700); }
.nav-mobile.open { display: flex; }

/* â”€â”€ Hero â”€â”€ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--green-900); /* fallback */
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(27, 58, 33, 0.72) 0%,
    rgba(27, 58, 33, 0.45) 55%,
    rgba(27, 58, 33, 0.15) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(165,201,133,0.45);
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}
.hero-content h1 { color: var(--white); margin-bottom: 0.75rem; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 800; line-height: 1.1; }
.hero-content h1 .accent { color: #a5c985; font-style: italic; }
.hero-tagline { color: rgba(255,255,255,0.75); font-size: clamp(1rem, 1.6vw, 1.2rem); font-style: italic; font-weight: 400; margin-bottom: 1.5rem; letter-spacing: 0.01em; }
.hero-content p:not(.hero-tagline) { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 2rem; max-width: 560px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-locations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-loc-dot { color: rgba(255,255,255,0.25); }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 600;
}
.trust-item svg { color: #a5c985; flex-shrink: 0; }

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}

/* Page heroes (interior pages) */
.page-hero {
  position: relative;
  padding: 90px 0 80px;
  background: var(--green-900);
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  line-height: 0;
}

/* â”€â”€ Stats Bar â”€â”€ */
.stats-bar {
  background: var(--green-700);
  padding: 28px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.stat-item {
  text-align: center;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.2);
  padding: 0 1rem;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #c8e6a8;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-top: 0.35rem;
}

/* â”€â”€ Service Cards â”€â”€ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(42,31,20,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(42,31,20,0.16);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--green-100);
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-100), var(--cream-dark));
}
.service-card-img-placeholder svg { opacity: 0.35; }

.service-card-body {
  padding: 1.5rem;
}
.service-card-icon {
  width: 48px; height: 48px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--green-700);
}
.service-card-body h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.service-card-body p { font-size: 0.9rem; margin-bottom: 1rem; }
.service-card-body a {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition), color var(--transition);
}
.service-card-body a:hover { color: var(--green-700); gap: 0.6rem; }

/* â”€â”€ Feature / Differentiator â”€â”€ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.feature-item { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
}
.feature-item h4 { color: var(--brown-700); font-size: 1rem; }
.feature-item p { font-size: 0.9rem; }

/* Dark variant (green bg section) */
.section-dark {
  background: linear-gradient(135deg, var(--green-900) 0%, #1a3d22 100%);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.78); }
.section-dark .feature-icon {
  background: rgba(255,255,255,0.1);
  color: #c8e6a8;
  border-radius: 50%;
}

/* â”€â”€ Two-Column Layout â”€â”€ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.col-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(42,31,20,0.18);
  aspect-ratio: 4/3;
  background: var(--green-100);
  position: relative;
}
.col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.col-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-100), var(--cream-dark));
}

.col-text h2 { margin-bottom: 1rem; }
.col-text .section-label { margin-bottom: 0.75rem; }
.col-text p { margin-bottom: 1.25rem; }

/* â”€â”€ Seasonal Grid â”€â”€ */
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.season-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}
.season-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.season-card.spring { border-top-color: #7ab648; }
.season-card.summer { border-top-color: #2a9d8f; }
.season-card.fall   { border-top-color: #e07b39; }
.season-card.winter { border-top-color: #6a9ab0; }

.season-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.season-card h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.season-card .season-range {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.season-list { display: flex; flex-direction: column; gap: 0.5rem; }
.season-list li {
  font-size: 0.875rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.season-list li::before {
  content: '\2713';
  color: var(--green-500);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.6;
}

/* â”€â”€ Process Steps â”€â”€ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 2px;
  background: var(--green-100);
}
.process-step { text-align: center; }
.step-number {
  width: 72px; height: 72px;
  background: var(--green-700);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--green-100);
}
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9rem; }

/* â”€â”€ CTA Banner (legacy â€” kept for interior page city pages) â”€â”€ */
.cta-banner {
  background: var(--cream);
  padding: 60px 0;
  position: relative;
}
.cta-banner-content {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  text-align: center;
  box-shadow: 0 16px 48px rgba(27,58,33,0.26);
  position: relative;
  overflow: hidden;
}
.cta-banner-content::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 220px; height: 220px;
  border: 36px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 520px; margin: 0 auto 2rem; position: relative; z-index: 1; }
.cta-banner-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; position: relative; z-index: 1; }

/* â”€â”€ Floating CTA Card (homepage) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-card-section { padding: 60px 0; background: var(--cream); }

.cta-card {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 20px 56px rgba(27,58,33,0.28);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border: 40px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -80px; right: 80px;
  width: 180px; height: 180px;
  border: 28px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.cta-card-left h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  position: relative; z-index: 1;
}
.cta-card-left > p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.75rem;
  position: relative; z-index: 1;
}
.cta-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative; z-index: 1;
}
.cta-phone-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
}
.cta-phone-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cta-phone a {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.cta-card-right {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  min-width: 230px;
  position: relative; z-index: 1;
}
.btn-cta-solid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--green-800);
  border: 2px solid var(--white);
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9em 1.75em;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-cta-solid:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-cta-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9em 1.75em;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-cta-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* â”€â”€ Photo Service Areas Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.areas-photo-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.areas-photo-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.areas-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,58,33,0.90) 0%, rgba(42,84,50,0.84) 100%);
  z-index: 1;
}
.areas-photo-section .container { position: relative; z-index: 2; }
.areas-photo-section .section-label {
  background: rgba(165,201,133,0.18);
  color: #a5c981;
  border: 1px solid rgba(165,201,133,0.3);
}
.areas-photo-section .section-header h2 { color: var(--white); }
.areas-photo-section .section-header p { color: rgba(255,255,255,0.7); }

.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.city-pill {
  display: inline-block;
  padding: 0.55em 1.4em;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.city-pill:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
}

/* â”€â”€ Image + Floating Badge â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.img-with-badge {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.img-with-badge .col-img {
  border-radius: 20px;
  overflow: hidden;
}
.float-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--green-800);
  color: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(27,58,33,0.38);
  min-width: 140px;
  z-index: 2;
}
.float-badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #c8e6a8;
  line-height: 1;
}
.float-badge-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* â”€â”€ Checklist (2-col green checks) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.check-icon {
  width: 22px; height: 22px;
  background: var(--green-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.check-icon svg { width: 12px; height: 12px; }

/* â”€â”€ CTA card responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 860px) {
  .cta-card {
    grid-template-columns: 1fr;
    padding: 2.5rem 2rem;
    gap: 2rem;
  }
  .cta-card-right {
    min-width: unset;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .btn-cta-solid, .btn-cta-ghost { flex: 1; min-width: 160px; }

  .city-pills { gap: 0.5rem; }
  .city-pill { font-size: 0.82rem; padding: 0.45em 1em; }

  .float-badge { right: 0.5rem; bottom: 0.5rem; }
}

/* â”€â”€ Testimonials â”€â”€ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--green-100);
  line-height: 1;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  pointer-events: none;
}
.stars { color: #e8a020; font-size: 0.875rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.testimonial-text { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { font-weight: 700; font-size: 0.875rem; color: var(--brown-700); }
.testimonial-location { font-size: 0.8rem; color: var(--text-light); }
.testimonial-pending { opacity: 0.72; }
.testimonial-pending-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--cream-dark);
  color: var(--text-light);
  border: 1px dashed var(--brown-300);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  margin-bottom: 0.75rem;
}
.testimonial-placeholder { color: var(--text-light); }
.testimonial-wip-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}

/* â”€â”€ FAQ â”€â”€ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}
.faq-item:first-child { border-top: 1px solid var(--cream-dark); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
}
.faq-question:hover { color: var(--green-700); }
.faq-icon {
  flex-shrink: 0;
  color: var(--green-600);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
}
.faq-answer.open { display: block; }
.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* â”€â”€ About Page: Story Section â”€â”€ */
.story-highlight {
  border-left: 4px solid var(--green-500);
  padding: 1.25rem 1.5rem;
  background: var(--green-100);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
}
.story-highlight p { color: var(--brown-700); font-style: italic; font-size: 1.05rem; margin: 0; }

/* â”€â”€ Team Grid â”€â”€ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.team-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--green-100);
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-body {
  padding: 0.9rem 1.25rem 1rem;
}
.team-card-body h3 {
  font-size: 1.1rem;
  color: var(--brown-700);
  margin-bottom: 0.25rem;
}
.team-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 0.75rem;
}
.team-card-body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin: 0;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.value-icon {
  width: 40px; height: 40px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
}
.value-item h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.value-item p { font-size: 0.8rem; margin: 0; }

/* â”€â”€ Services Page: Detail Cards â”€â”€ */
.service-detail-grid {
  display: grid;
  gap: 2rem;
}
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}
.service-detail-icon {
  width: 64px; height: 64px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
}
.service-detail-body h3 { margin-bottom: 0.5rem; }
.service-detail-body p { margin-bottom: 0.75rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25em 0.8em;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: var(--radius-pill);
}

/* â”€â”€ Pricing Section â”€â”€ */
.pricing-highlight {
  background: var(--green-700);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--white);
}
.pricing-amount {
  text-align: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
}
.pricing-amount .amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: #c8e6a8;
  line-height: 1;
}
.pricing-amount .per {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-top: 0.35rem;
}
.pricing-text h3 { color: var(--white); margin-bottom: 0.5rem; }
.pricing-text p { color: rgba(255,255,255,0.8); margin: 0; }

/* â”€â”€ Contact Form â”€â”€ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { margin-bottom: 2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75em 1em;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(107, 138, 78, 0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; }

.form-required { color: #c0392b; margin-left: 2px; }

.form-submit-area { margin-top: 0.5rem; }
.form-submit-area .btn { width: 100%; justify-content: center; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.75rem;
}

/* Form success/error states */
.form-success {
  display: none;
  background: var(--green-100);
  border: 1px solid var(--green-400);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  color: var(--green-800);
  font-weight: 600;
}

/* Sidebar info */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.contact-info-card h3 { margin-bottom: 1.25rem; font-size: 1.1rem; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.info-item:last-child { border-bottom: none; }
.info-icon {
  width: 40px; height: 40px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
}
.info-item .info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.info-item .info-value { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); }
.info-item a:hover { color: var(--green-700); }

.service-areas-card {
  background: var(--green-900);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
}
.service-areas-card h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.1rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3em 0.85em;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.15);
}

/* â”€â”€ Portfolio Gallery â”€â”€ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5em 1.25em;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27,58,33,0.72) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
}
.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--green-100), var(--cream-dark));
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}
.gallery-item-placeholder svg { opacity: 0.4; }

/* â”€â”€ Footer â”€â”€ */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo-text .brand-name { color: var(--white); font-size: 1.4rem; }
.footer-brand .nav-logo-text .brand-sub { color: rgba(255,255,255,0.6); }
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  margin-top: 1rem;
  line-height: 1.7;
}
.footer-brand .nav-logo {
  margin-bottom: 0.25rem !important;
}
.footer-brand img { height: 130px; width: auto; }
.footer-brand p { margin-top: 0.25rem; }

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.footer-social a:hover {
  background: var(--green-700);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--green-400); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* â”€â”€ Utility â”€â”€ */
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-green { background: var(--green-900); }

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Divider wave */
.wave-divider { line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* Scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 1024px) {
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-links + .btn { display: none; }
  .nav-hamburger { display: flex; }

  .hero { min-height: 88vh; }
  .hero-content { max-width: 100%; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 1rem; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.2); }
  .stat-item:last-child,
  .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .col-img { aspect-ratio: 16/9; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }

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

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

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

  .form-row { grid-template-columns: 1fr; }

  .pricing-highlight { flex-direction: column; text-align: center; }

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

  .values-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .section-pad { padding: 60px 0; }
  .section-pad-lg { padding: 80px 0; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .seasons-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-locations { gap: 0.4rem 0.6rem; font-size: 0.65rem; }
}

/* â”€â”€ Area Cards (areas.html hub page) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.area-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(58,102,64,0.15);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.area-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(42,31,20,0.12);
  border-color: var(--green-500);
}

.area-card h4 {
  font-family: var(--font-heading);
  color: var(--green-700);
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
}

.area-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin: 0 0 0.5rem;
}

.area-link {
  font-size: 0.82rem;
  color: var(--green-500);
  font-weight: 600;
}

/* breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.45); }