/* ============================================
   SOMBRA'S LANDSCAPING — Bright Vibrant
   JSX-derived palette, DM Sans, transparent nav
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700;9..40,800;9..40,900&display=swap');

.sm-page {
  --font-display: "DM Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  /* JSX palette — lighter, vibrant greens */
  --sm-leaf: #3a7d44;
  --sm-leaf-dark: #2d6235;
  --sm-leaf-light: #4a9956;
  --sm-forest: #1e4d27;
  --sm-cream: #f0f4ec;
  --sm-mint: #e4edde;
  --sm-offwhite: #fafcf8;
  --sm-gold: #d4a017;
  --sm-gold-warm: #e8b92f;
  --sm-white: #ffffff;
  --sm-text: #1a2e1c;
  --sm-text-mid: #3d5a3f;
  --sm-text-light: #6b8a6d;
  --sm-border: #d4e0d0;

  /* Keep legacy vars pointing to new values */
  --sm-green: var(--sm-leaf);
  --sm-green-dark: var(--sm-forest);
  --sm-muted: var(--sm-text-light);
  --sm-earth: var(--sm-gold);
  --sm-earth-light: var(--sm-gold-warm);

  --sm-shadow: 0 1px 2px rgba(30,77,39,0.06), 0 2px 8px rgba(30,77,39,0.06);
  --sm-shadow-md: 0 1px 3px rgba(30,77,39,0.06), 0 4px 12px rgba(30,77,39,0.06), 0 8px 20px rgba(30,77,39,0.04);
  --sm-shadow-lg: 0 2px 4px rgba(30,77,39,0.06), 0 8px 16px rgba(30,77,39,0.08), 0 16px 32px rgba(30,77,39,0.05);
}

.sm {
  padding-top: 0; /* No fixed nav offset — nav overlays hero */
  background: var(--sm-white);
  color: var(--sm-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.sm-container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }
.sm-container--narrow { max-width: 800px; }

/* ============================================
   UTILITY BAR — hidden, nav handles it
   ============================================ */

.sm-utility { display: none; }

/* ============================================
   NAV — Transparent over hero, white on scroll
   ============================================ */

.sm-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 24px;
  background: transparent;
  transition: all 0.25s ease;
}

.sm-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 8px 24px;
  border-bottom: 1px solid var(--sm-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.sm-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: auto;
}

.sm-nav__left { display: flex; align-items: center; }

.sm-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.sm-nav__logo:hover { text-decoration: none; color: inherit; }

.sm-nav__logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sm-leaf);
}

.sm-nav__brand {
  display: flex;
  flex-direction: column;
}

.sm-nav__brand-name {
  font-weight: 800;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.is-scrolled .sm-nav__brand-name { color: var(--sm-text); }

.sm-nav__brand-sub {
  font-size: 8px;
  color: var(--sm-gold-warm);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.25s ease;
}

.is-scrolled .sm-nav__brand-sub { color: var(--sm-leaf); }

.sm-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sm-nav__link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.sm-nav__link:hover {
  color: var(--sm-gold-warm);
  border-bottom-color: var(--sm-gold-warm);
}

.is-scrolled .sm-nav__link {
  color: var(--sm-text-mid);
}

.is-scrolled .sm-nav__link:hover {
  color: var(--sm-leaf);
  border-bottom-color: var(--sm-leaf);
}

/* Dropdown mega menu */
.sm-nav__dropdown {
  position: relative;
}

.sm-nav__dropdown > .sm-nav__link::after {
  content: " ▾";
  font-size: 9px;
  opacity: 0.6;
}

.sm-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  background: #ffffff;
  border: 1px solid var(--sm-border);
  border-radius: 8px;
  box-shadow: var(--sm-shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 150ms ease, visibility 150ms ease;
  z-index: 100;
}

.sm-nav__dropdown:hover .sm-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.sm-nav__dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--sm-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background 100ms ease, color 100ms ease;
}

.sm-nav__dropdown-item:hover {
  background: var(--sm-mint);
  color: var(--sm-leaf);
}

.sm-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.sm-nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--sm-leaf);
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.15s ease;
  box-shadow: 0 4px 16px rgba(58, 125, 68, 0.3);
}

.sm-nav__cta:hover {
  background: var(--sm-leaf-dark);
  transform: translateY(-2px);
}

.sm-nav__cta--block {
  display: block;
  text-align: center;
  margin-top: var(--space-lg);
  width: 100%;
}

/* Hamburger */
.sm-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.sm-hamburger__line {
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 200ms ease;
}

.sm-hamburger__line:last-child {
  width: 75%;
  background: var(--sm-gold-warm);
}

.is-scrolled .sm-hamburger__line { background: var(--sm-text); }
.is-scrolled .sm-hamburger__line:last-child { background: var(--sm-leaf); }

.sm-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  flex-direction: column;
  padding: 60px 24px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.sm-mobile-menu.is-open { display: flex; }

.sm-mobile-menu__close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: #fff;
  border: none;
  font-size: 32px;
  color: var(--sm-text);
  cursor: pointer;
  z-index: 1000;
}

.sm-mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sm-mobile-menu__link {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--sm-text);
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 10px 0;
  border-bottom: 1px solid var(--sm-border, #eee);
}

.sm-mobile-menu__link:hover { color: var(--sm-leaf); }

.sm-mobile-menu__section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sm-text-light);
  padding: 16px 0 4px;
}

.sm-mobile-menu__sub-link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--sm-text-mid);
  text-decoration: none;
  padding: 6px 0 6px 12px;
}

.sm-mobile-menu__sub-link:hover { color: var(--sm-leaf); }

.sm-mobile-menu__phone {
  font-size: 20px;
  font-weight: 800;
  color: var(--sm-leaf);
  text-decoration: none;
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .sm-nav__links, .sm-nav__actions { display: none; }
  .sm-nav__dropdown-menu { display: none; }
  .sm-hamburger { display: flex; }
  .sm-mobile-menu { display: none; }
  .sm-mobile-menu.is-open { display: flex; }
}

/* ============================================
   HERO — Full viewport, JSX gradient
   ============================================ */

.sm-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-color: var(--sm-forest);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.sm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 50, 25, 0.92) 0%,
    rgba(30, 77, 39, 0.82) 40%,
    rgba(20, 60, 30, 0.7) 100%
  );
}

.sm-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-4xl) var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.sm-hero--left .sm-hero__content {
  text-align: left;
  max-width: 760px;
  padding: 0 48px;
  margin: 0;
}

.sm-hero--left .sm-hero__actions { justify-content: flex-start; }

.sm-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
}

.sm-hero__eyebrow--pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sm-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.06;
  margin: 0 0 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.sm-hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #ffffff;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 560px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.sm-hero--left .sm-hero__sub { margin-left: 0; margin-right: 0; }

.sm-hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HERO — Interior pages
   ============================================ */

.sm-page-hero {
  position: relative;
  padding: calc(var(--space-4xl) + 60px) var(--space-lg) var(--space-3xl);
  text-align: center;
  background-color: var(--sm-forest);
  background-size: cover;
  background-position: center;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sm-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 50, 25, 0.92) 0%,
    rgba(30, 77, 39, 0.82) 40%,
    rgba(20, 60, 30, 0.7) 100%
  );
}

.sm-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 var(--space-sm);
  position: relative;
  z-index: 1;
  line-height: 1.1;
}

.sm-page-hero p {
  font-size: var(--text-lg);
  color: #ffffff;
  font-weight: 500;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ============================================
   SECTIONS
   ============================================ */

.sm-section { padding: var(--space-4xl) 0; }
.sm-section--white { background: var(--sm-white); }
.sm-section--cream { background: var(--sm-cream); }
.sm-section--green { background: var(--sm-forest); color: #ffffff; }

.sm-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 var(--space-lg);
  line-height: 1.15;
  color: var(--sm-text);
}

.sm-section__title--light { color: #ffffff; }
.sm-section__title--centered { text-align: center; }

.sm-section__sub {
  font-size: 17px;
  color: var(--sm-text-light);
  text-align: center;
  margin: calc(var(--space-lg) * -1) auto var(--space-3xl);
  max-width: 580px;
  line-height: 1.65;
}

/* ============================================
   BUTTONS — JSX style
   ============================================ */

.sm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 15px 36px;
  background: var(--sm-leaf);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 4px 16px rgba(58, 125, 68, 0.3);
}

.sm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58, 125, 68, 0.4);
}

.sm-btn--lg { padding: 16px 36px; font-size: 14px; }
.sm-btn--full { display: flex; width: 100%; text-align: center; }

.sm-btn--gold {
  background: var(--sm-gold);
  color: var(--sm-text);
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.3);
}

.sm-btn--gold:hover {
  background: var(--sm-gold-warm);
  box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
}

.sm-btn--green { background: var(--sm-leaf); }
.sm-btn--green:hover { background: var(--sm-leaf-dark); }

.sm-btn--white {
  background: var(--sm-white);
  color: var(--sm-text);
  box-shadow: none;
}
.sm-btn--white:hover { background: var(--sm-offwhite); }

.sm-btn--outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: none;
}
.sm-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
}

.sm-btn--earth { background: var(--sm-gold); color: var(--sm-text); }
.sm-btn--earth:hover { background: var(--sm-gold-warm); }

.sm-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sm-leaf);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: color 0.15s ease;
}

.sm-link:hover { color: var(--sm-leaf-dark); }

/* ============================================
   GOLD ACCENT TEXT
   ============================================ */

.sm-gold { color: var(--sm-gold-warm); }
.sm .sm-gold { color: var(--sm-gold); }

/* ============================================
   TRUST BAR — Stats strip below hero
   ============================================ */

.sm-trust {
  background: var(--sm-forest);
  padding: 40px 24px;
}

.sm-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.sm-trust__item {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.sm-trust__item:last-child { border-right: none; }

.sm-trust__num {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  color: var(--sm-gold-warm);
  line-height: 1;
  margin-bottom: 2px;
}

.sm-trust__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
}

.sm-trust__sub {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .sm-trust__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .sm-trust__item { border-right: none; }
  .sm-trust__item:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.15); }
}

/* ============================================
   SECTION HEADER — Centered with line + sub
   ============================================ */

.sm-section-head { text-align: center; margin-bottom: 48px; }

.sm-section-head__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--sm-leaf);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sm-section-head__eyebrow--light { color: var(--sm-gold-warm); }

.sm-section-head__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--sm-text);
  line-height: 1.15;
  margin: 0;
}

.sm-section-head__title--light { color: #ffffff; }

.sm-section-head__line {
  width: 50px;
  height: 3px;
  background: var(--sm-leaf);
  margin: 16px auto;
  border-radius: 2px;
}

.sm-section-head__line--gold { background: var(--sm-gold-warm); }

.sm-section-head__desc {
  font-size: 17px;
  color: var(--sm-text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

.sm-section-head__desc--light { color: rgba(255, 255, 255, 0.8); }

/* ============================================
   SERVICE CARDS — Photo-backed with hover
   ============================================ */

.sm-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.sm-service-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid var(--sm-border);
  transition: all 0.15s ease;
  cursor: pointer;
}

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

.sm-service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

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

.sm-service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  transition: background 300ms ease;
}

.sm-service-card:hover .sm-service-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
}

.sm-service-card__content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl);
  width: 100%;
}

.sm-service-card__content h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.3;
}

.sm-service-card__content p {
  font-size: 11px;
  color: var(--sm-leaf);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.sm-service-card__arrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--sm-leaf);
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 200ms ease;
}

.sm-service-card:hover .sm-service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 960px) { .sm-service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) {
  .sm-service-grid { grid-template-columns: 1fr; }
  .sm-service-card { aspect-ratio: 16 / 10; }
}

/* ============================================
   WHITE CARDS — JSX style (photo on top, text below)
   ============================================ */

.sm-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.sm-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: var(--sm-white);
  border: 1px solid var(--sm-border);
  text-decoration: none;
  color: var(--sm-text);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 77, 39, 0.08);
}

.sm-card__image {
  height: 160px;
  overflow: hidden;
}

.sm-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.sm-card:hover .sm-card__image img { transform: scale(1.05); }

.sm-card__body { padding: 18px; }

.sm-card__title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.sm-card__icon { font-size: 18px; }

.sm-card__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--sm-text);
  margin: 0;
}

.sm-card__tag {
  font-size: 11px;
  color: var(--sm-leaf);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.sm-card__desc {
  font-size: 14px;
  color: var(--sm-text-light);
  line-height: 1.5;
  margin: 0;
}

.sm-card__more {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--sm-leaf);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 12px;
}

/* Commercial feature card (single wide card) */
.sm-card--feature {
  display: grid;
  grid-template-columns: 340px 1fr;
  border-radius: 10px;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}

.sm-card--feature .sm-card__image { height: auto; min-height: 220px; }

.sm-card--feature .sm-card__body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }

.sm-card--feature .sm-card__title { font-size: 20px; }

@media (max-width: 768px) {
  .sm-card--feature { grid-template-columns: 1fr; }
  .sm-card--feature .sm-card__image { height: 200px; }
}

/* ============================================
   WORK SHOWCASE
   ============================================ */

.sm-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.sm-work-grid__item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--sm-shadow);
}

.sm-work-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.sm-work-grid__item:hover img { transform: scale(1.03); }

@media (max-width: 640px) {
  .sm-work-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICE DETAIL — Two-column layout
   ============================================ */

.sm-service__body { line-height: 1.8; }
.sm-service__body p { margin: 0 0 var(--space-lg); font-size: var(--text-base); color: var(--sm-text-light); }

.sm-service__body h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  margin: var(--space-3xl) 0 var(--space-lg);
  color: var(--sm-text);
}

.sm-service__body h2:first-child { margin-top: 0; }

.sm-service__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-2xl);
  display: grid;
  gap: 4px;
}

.sm-service__list li {
  padding: var(--space-md) var(--space-lg);
  background: var(--sm-white);
  border: 1px solid var(--sm-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: all 150ms ease;
}

.sm-service__list li:hover {
  border-color: color-mix(in oklch, var(--sm-leaf) 25%, var(--sm-border));
  transform: translateX(4px);
}

.sm-service__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sm-leaf);
  flex-shrink: 0;
}

.sm-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
  align-items: center;
}

.sm-detail-grid__image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sm-shadow-md);
  aspect-ratio: 4 / 3;
}

.sm-detail-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sm-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sm-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--sm-text);
}

.sm-feature-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sm-leaf);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {
  .sm-detail-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
}

/* ============================================
   PROOF QUOTE
   ============================================ */

.sm-proof {
  padding: 56px var(--space-lg);
  background: var(--sm-cream);
}

.sm-proof__inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.sm-proof__mark {
  font-size: 48px;
  color: var(--sm-leaf);
  line-height: 1;
  margin-bottom: 12px;
}

.sm-proof__text {
  font-size: 19px;
  color: var(--sm-text);
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 var(--space-lg);
}

.sm-proof__line {
  width: 40px;
  height: 3px;
  background: var(--sm-leaf);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.sm-proof__source {
  font-size: 11px;
  color: var(--sm-text-light);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   CROSS-LINKS
   ============================================ */

.sm-cross-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.sm-cross-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px var(--space-md);
  background: var(--sm-mint);
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: all 0.15s ease;
}

.sm-cross-link:hover {
  transform: translateY(-3px);
}

.sm-cross-link__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--sm-text);
  margin-bottom: 3px;
}

.sm-cross-link__tag {
  font-size: 10px;
  color: var(--sm-leaf);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .sm-cross-links { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   TESTIMONIALS
   ============================================ */

/* Google Reviews — Card Grid */
.sm-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.sm-review-card {
  background: var(--sm-white);
  border: 1px solid var(--sm-border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sm-review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sm-shadow-lg);
}

.sm-review-card__stars {
  color: #fbbc04;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 14px;
}

.sm-review-card__text {
  font-size: 14px;
  color: var(--sm-text);
  line-height: 1.65;
  margin: 0 0 16px;
  flex: 1;
}

.sm-review-card__author {
  font-size: 13px;
  font-weight: 700;
  color: var(--sm-text-light);
  letter-spacing: 0.3px;
}

.sm-review-card--cta {
  background: var(--sm-mint);
  border-color: var(--sm-leaf);
  text-align: center;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .sm-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .sm-reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================
   MIDPAGE CTA
   ============================================ */

.sm-midcta {
  position: relative;
  padding: 96px 24px;
  background-color: var(--sm-forest);
  background-size: cover;
  background-position: center;
}

.sm-midcta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 77, 39, 0.88), rgba(58, 125, 68, 0.8));
}

.sm-midcta__content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.sm-midcta__content h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 18px;
}

.sm-midcta__content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin: 0 0 32px;
}

/* ============================================
   SERVICE AREA
   ============================================ */

.sm-area__text--light {
  font-size: var(--text-base);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.sm-area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-xl);
}

.sm-area-tag {
  display: inline-flex;
  padding: 6px 16px;
  background: var(--sm-mint);
  color: var(--sm-forest);
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
}

.sm-section--green .sm-area-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ============================================
   STATS (legacy compat)
   ============================================ */

.sm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  padding: var(--space-2xl) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: var(--space-2xl);
}

.sm-stat { text-align: center; }

.sm-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--sm-gold-warm);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.sm-stat__label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 520px) { .sm-stats { grid-template-columns: 1fr; } }

/* ============================================
   BADGES
   ============================================ */

.sm-badge {
  display: inline-flex;
  padding: 6px 16px;
  background: color-mix(in oklch, var(--sm-leaf) 10%, var(--sm-white));
  color: var(--sm-leaf);
  text-decoration: none;
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid color-mix(in oklch, var(--sm-leaf) 20%, var(--sm-border));
  transition: all 150ms ease;
}

.sm-badge:hover {
  background: var(--sm-leaf);
  color: var(--sm-white);
  border-color: var(--sm-leaf);
}

/* ============================================
   CTA + ESTIMATE FORM
   ============================================ */

.sm-cta {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--sm-forest), var(--sm-leaf-dark));
}

.sm-cta__block { text-align: center; }

.sm-cta__block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 var(--space-sm);
}

.sm-cta__block > p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 var(--space-2xl);
}

.sm-estimate {
  max-width: 480px;
  margin: 0 auto;
}

.sm-estimate--left { max-width: none; margin: 0; }

.sm-estimate__fields {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.sm-estimate__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sm-estimate__grid .sm-estimate__full { grid-column: 1 / -1; }

.sm-input {
  display: block;
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #ffffff;
  font-size: 16px;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.15s ease;
  box-sizing: border-box;
}

.sm-input::placeholder { color: rgba(255, 255, 255, 0.4); }
.sm-input:focus { border-color: var(--sm-gold-warm); }

select.sm-input { appearance: none; color: var(--sm-text); background: var(--sm-white); }
.sm-cta select.sm-input { color: var(--sm-white); background: rgba(255,255,255,0.08); }
select.sm-input option { color: #1a1a1a; background: #fff; }
textarea.sm-input { min-height: 80px; resize: vertical; }

/* Light form variant */
.sm-section .sm-input,
.sm-section--white .sm-input {
  background: var(--sm-white);
  border-color: var(--sm-border);
  color: var(--sm-text);
}

.sm-section .sm-input::placeholder { color: var(--sm-text-light); }
.sm-section .sm-input:focus { border-color: var(--sm-leaf); box-shadow: 0 0 0 3px color-mix(in oklch, var(--sm-leaf) 15%, transparent); }

.sm-estimate__or {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sm-estimate__or span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.sm-estimate__or a {
  font-family: var(--font-display);
  color: var(--sm-gold-warm);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.sm-estimate__or a:hover { color: #ffffff; }

.site-form__success {
  padding: var(--space-xl);
  background: color-mix(in oklch, var(--sm-leaf) 10%, var(--sm-white));
  border: 1px solid color-mix(in oklch, var(--sm-leaf) 20%, var(--sm-border));
  border-radius: 10px;
  color: var(--sm-forest);
  font-size: var(--text-lg);
  font-weight: 500;
  text-align: center;
}

@media (max-width: 640px) {
  .sm-estimate__grid { grid-template-columns: 1fr; }
}

/* ============================================
   GALLERY
   ============================================ */

.sm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.sm-gallery-grid__item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sm-shadow-md);
}

.sm-gallery-grid__item--featured { grid-column: span 2; }

.sm-gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.sm-gallery-grid__item:hover img { transform: scale(1.03); }

@media (max-width: 640px) {
  .sm-gallery-grid { grid-template-columns: 1fr; }
  .sm-gallery-grid__item--featured { grid-column: span 1; }
}

/* ============================================
   ABOUT
   ============================================ */

.sm-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.sm-about-grid__image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sm-shadow-md);
}

.sm-about-grid__image img { width: 100%; height: auto; display: block; }

.sm-about-grid__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 var(--space-xl);
  color: var(--sm-text);
}

.sm-about-grid__text p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--sm-text-light);
  margin: 0 0 var(--space-lg);
}

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

@media (max-width: 768px) {
  .sm-about-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
}

/* ============================================
   CONTACT
   ============================================ */

.sm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
}

.sm-contact-info h3,
.sm-contact-form h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin: 0 0 var(--space-xl);
  color: var(--sm-text);
}

.sm-contact-detail { margin: 0 0 var(--space-xl); }

.sm-contact-detail h4 {
  font-size: 11px;
  font-weight: 600;
  color: var(--sm-text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 var(--space-sm);
}

.sm-contact-detail p, .sm-contact-detail a {
  display: block;
  font-size: var(--text-base);
  color: var(--sm-text);
  text-decoration: none;
  margin: 0;
  line-height: 1.6;
}

.sm-contact-detail a:hover { color: var(--sm-leaf); }

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

/* ============================================
   FOOTER
   ============================================ */

.sm-footer {
  background: var(--sm-forest);
  padding: 52px 28px 24px;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sm-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 0.7fr;
  gap: 24px 28px;
}

.sm-footer__brand {}

.sm-footer__logo {
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.sm-footer__logo-img {
  height: 40px;
  width: auto;
}

.sm-footer__brand-name {
  font-weight: 800;
  font-size: 17px;
  color: #ffffff;
  margin-bottom: 8px;
}

.sm-footer__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 280px;
}

.sm-footer__phone {
  display: block;
  font-size: 19px;
  font-weight: 800;
  color: var(--sm-gold-warm);
  text-decoration: none;
  margin-top: 6px;
}

.sm-footer__email {
  display: block;
  color: var(--sm-gold-warm);
  font-size: 13px;
  text-decoration: none;
}

.sm-footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--sm-gold-warm);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 12px;
}

.sm-footer__col a, .sm-footer__col p {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  padding: 0;
  margin: 0 0 5px;
  transition: color 150ms ease;
}

.sm-footer__col a:hover { color: #ffffff; }

.sm-footer__google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  text-decoration: none;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: background 150ms ease;
}

.sm-footer__google:hover {
  background: rgba(255, 255, 255, 0.14);
}

.sm-footer__google-stars {
  color: #fbbc04;
  font-size: 16px;
  letter-spacing: 1px;
}

.sm-footer__google-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
}

.sm-footer__bottom {
  max-width: 1060px;
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.sm-footer__bottom p { margin: 0; }

@media (max-width: 960px) {
  .sm-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .sm-footer__inner { grid-template-columns: 1fr; gap: var(--space-2xl); }
}

/* ============================================
   RESPONSIVE — HERO + MOBILE
   ============================================ */

@media (max-width: 900px) {
  .sm-hero__headline { font-size: 32px !important; }
  .sm-hero__sub { font-size: 16px !important; }
  .sm-hero__actions { flex-direction: column !important; align-items: stretch !important; }
  .sm-hero--left .sm-hero__content { padding: 0 24px !important; }
  .sm-section-head__title { font-size: 28px; }
}

/* ============================================
   MEGA MENU — Full-width hover panels
   ============================================ */

.sm-nav__mega-wrap {
  position: static;
}

.sm-nav__mega-wrap > .sm-nav__link::after {
  content: " ▾";
  font-size: 9px;
  opacity: 0.6;
}

.sm-nav__mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1100px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.04),
    0 10px 24px rgba(0,0,0,0.08),
    0 20px 48px rgba(0,0,0,0.06);
  padding: 32px 36px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
  z-index: 100;
  pointer-events: none;
}

/* Bridge the hover gap between nav link and dropdown */
.sm-nav__mega::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.sm-nav__mega-wrap:hover .sm-nav__mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sm-nav__mega-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sm-text-light);
  margin: 0 0 16px;
}

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

.sm-nav__mega-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--sm-text);
  transition: background 120ms ease;
}

.sm-nav__mega-item:hover {
  background: var(--sm-mint);
}

.sm-nav__mega-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.sm-nav__mega-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--sm-text);
  line-height: 1.3;
}

.sm-nav__mega-tag {
  display: block;
  font-size: 11px;
  color: var(--sm-text-light);
  line-height: 1.4;
  margin-top: 1px;
}

.sm-nav__mega-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--sm-border);
}

.sm-nav__mega-footer a {
  font-size: 12px;
  font-weight: 700;
  color: var(--sm-leaf);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.sm-nav__mega-footer a:hover {
  color: var(--sm-leaf-dark);
}

@media (max-width: 768px) {
  .sm-nav__mega { display: none; }
}

/* ============================================
   MARKET OVERLAY CARDS — Image + gradient
   ============================================ */

.sm-market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.sm-market-card {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sm-market-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sm-shadow-lg);
}

.sm-market-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.sm-market-card:hover .sm-market-card__img {
  transform: scale(1.05);
}

.sm-market-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.sm-market-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  z-index: 1;
}

.sm-market-card__icon {
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
}

.sm-market-card__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.sm-market-card__tag {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .sm-market-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .sm-market-grid { grid-template-columns: 1fr; }
  .sm-market-card { aspect-ratio: 16 / 9; }
}

/* ============================================
   ZIGZAG ROWS — Alternating image/text
   ============================================ */

.sm-zigzag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
  padding: 48px 0;
  border-bottom: 1px solid var(--sm-border);
}

.sm-zigzag:last-child { border-bottom: none; }

.sm-zigzag:nth-child(even) .sm-zigzag__image { order: -1; }

.sm-zigzag__image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sm-shadow-md);
  aspect-ratio: 4 / 3;
}

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

.sm-zigzag__icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.sm-zigzag__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sm-leaf);
  margin-bottom: 6px;
}

.sm-zigzag__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--sm-text);
  margin: 0 0 6px;
  line-height: 1.2;
}

.sm-zigzag__tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--sm-leaf);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.sm-zigzag__desc {
  font-size: 15px;
  color: var(--sm-text-light);
  line-height: 1.65;
  margin: 0 0 18px;
}

.sm-zigzag__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sm-leaf);
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.sm-zigzag__link:hover { color: var(--sm-leaf-dark); }

@media (max-width: 768px) {
  .sm-zigzag {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }
  .sm-zigzag:nth-child(even) .sm-zigzag__image { order: 0; }
}

/* ============================================
   WHY CHOOSE — 3-column cards
   ============================================ */

.sm-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.sm-why-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--sm-cream);
  border-radius: var(--radius-xl, 12px);
}

.sm-why-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  margin: 0 0 var(--space-sm);
  color: var(--sm-text);
}

.sm-why-card p {
  font-size: var(--text-sm);
  color: var(--sm-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .sm-why-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CARD GRID — 4-column override
   ============================================ */

.sm-card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 960px) {
  .sm-card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .sm-card-grid--4 { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICE AREA — Featured + Grid
   ============================================ */

.sm-area-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.sm-area-featured__card {
  background: var(--sm-white);
  border: 1px solid var(--sm-border);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sm-area-featured__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sm-shadow-lg);
}

.sm-area-featured__icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.sm-area-featured__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--sm-text);
  margin: 0 0 10px;
}

.sm-area-featured__desc {
  font-size: 14px;
  color: var(--sm-text-light);
  line-height: 1.6;
  margin: 0 0 16px;
}

.sm-area-featured__services {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.sm-area-featured__services span {
  display: inline-block;
  padding: 4px 12px;
  background: var(--sm-mint);
  color: var(--sm-forest);
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .sm-area-featured { grid-template-columns: 1fr; }
}

.sm-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.sm-area-cell {
  background: var(--sm-white);
  border: 1px solid var(--sm-border);
  border-radius: 10px;
  padding: 24px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.sm-area-cell:hover {
  transform: translateY(-2px);
  border-color: var(--sm-leaf);
}

.sm-area-cell__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--sm-text);
  margin: 0 0 6px;
}

.sm-area-cell__desc {
  font-size: 13px;
  color: var(--sm-text-light);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .sm-area-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .sm-area-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICE AREA — Map
   ============================================ */

.sm-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--sm-shadow-lg);
  border: 1px solid var(--sm-border);
  max-width: 1100px;
  margin: 0 auto;
}

.sm-map iframe {
  display: block;
  width: 100%;
  height: 480px;
}

.sm-map__details {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 8px;
}

.sm-map__detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.sm-map__detail strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sm-text-light);
}

.sm-map__detail span,
.sm-map__detail a {
  font-size: 15px;
  color: var(--sm-text);
  font-weight: 500;
}

.sm-map__detail a {
  color: var(--sm-leaf);
  text-decoration: none;
  font-weight: 700;
}

.sm-map__detail a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .sm-map iframe { height: 360px; }
  .sm-map__details { gap: 24px; }
}

@media (max-width: 520px) {
  .sm-map iframe { height: 280px; }
  .sm-map__details { flex-direction: column; align-items: center; gap: 16px; }
}
