/* Texas Tough Landscapes — static redesign matching mockups */
:root {
  --cream: #F2ECD8;
  --cream-dark: #E8E0C4;
  --olive: #535E3A;
  --olive-hover: #3f482c;
  --olive-soft: #6a7550;
  --charcoal: #2a2a28;
  --ink: #1c1c1a;
  --muted: #5a574c;
  --white: #fffef9;
  --line: rgba(83, 94, 58, 0.28);
  --max: 1180px;
  --header-h: 92px;
  --serif: "Libre Baskerville", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* sticky beige bar + hanging logo — keep in-page anchors clear of the menu */
  scroll-padding-top: calc(var(--header-h) + 3.25rem);
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.4rem;
  border-radius: 999px;
  background: var(--olive);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--olive-hover); }
.btn:active { transform: translateY(1px); }
.btn--outline {
  background: transparent;
  color: var(--olive);
  border: 1.5px solid var(--olive);
  border-radius: 8px;
}
.btn--outline:hover {
  background: var(--olive);
  color: var(--white);
}
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.88rem; }

/* —— Header —— */

/* —— Top call bar —— */
.top-bar {
  background: var(--olive);
  color: #f7f2e4;
  z-index: 110;
  position: relative;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding-block: 0.35rem;
}
.top-phone {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #f7f2e4;
  text-decoration: none;
}
.top-phone strong {
  font-weight: 700;
  letter-spacing: 0.04em;
}
.top-phone:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Sitewide beige menu bar; larger logo hangs slightly into content below */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
  background: rgba(242, 236, 216, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible;
  min-height: var(--header-h);
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}
.logo {
  flex-shrink: 0;
  display: block;
  line-height: 0;
  position: relative;
  z-index: 40;
  margin-bottom: -2.1rem; /* slight hang below the menu bar */
}
.logo img {
  height: clamp(118px, 13vw, 158px);
  width: auto;
  filter: none;
  box-shadow: none;
  transition: transform 0.2s ease;
}
.logo:hover img {
  transform: translateY(-1px);
}

/* Give internal pages a little room under the hanging logo */
body:not(.page-home) main {
  padding-top: 0.85rem;
}

.page-home .nav a {
  color: var(--ink);
  text-shadow: none;
}
.page-home .nav a:hover,
.page-home .nav a[aria-current="page"] { color: var(--olive); }
.page-home .nav a[aria-current="page"]::after { background: var(--olive); }
.page-home .nav-toggle { color: var(--ink); }

.page-home .hero {
  z-index: 1;
  margin-top: 0;
}
.page-home .hero__media {
  min-height: clamp(440px, 60vh, 700px);
}
.nav { display: flex; align-items: center; gap: 1.55rem; margin-left: auto; margin-right: 1rem; }
.nav a {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--olive); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--olive);
}
.header-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 8px; color: var(--olive);
  position: relative;
  z-index: 50;
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle__bars {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}
.nav-toggle__bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 7px; }
.nav-toggle__bars span:nth-child(3) { top: 14px; }
.nav-toggle.is-open .nav-toggle__bars span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
.nav-toggle.is-open .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bars span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}
.nav .nav-cta-mobile { display: none; }

.home-testimonial__quote .review-source {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}
.home-testimonial__quote--facebook {
  border-color: rgba(24, 119, 242, 0.22);
}

/* Homepage testimonials — single-row horizontal marquee */
.home-testimonial {
  padding: 0.85rem 0 1rem;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.home-testimonial__frame {
  width: 100%;
  position: relative;
}
.home-testimonial__google-mark {
  position: absolute;
  top: 0.15rem;
  right: max(0.75rem, calc((100% - min(1120px, 100%)) / 2 + 0.5rem));
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  text-decoration: none;
  opacity: 0.38;
  transition: opacity 0.2s ease;
  pointer-events: auto;
  padding: 0.15rem 0.35rem;
  border-radius: 999px;
}
.home-testimonial__google-mark:hover,
.home-testimonial__google-mark:focus-visible {
  opacity: 0.72;
  outline: none;
}
.home-testimonial__google-mark:focus-visible {
  box-shadow: 0 0 0 2px var(--olive);
}
.home-testimonial__google-g {
  display: block;
  flex-shrink: 0;
  filter: saturate(0.85);
}
.home-testimonial__google-stars {
  display: inline-flex;
  color: #e2a903;
  line-height: 0;
  opacity: 0.9;
}
.home-testimonial__google-stars svg {
  display: block;
}
.home-testimonial__google-score {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  opacity: 0.85;
  line-height: 1;
}

.home-testimonial__viewport {
  overflow: hidden;
  width: 100%;
  /* ~one card tall */
  max-height: 9.5rem;
  mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
}
.home-testimonial__viewport:focus {
  outline: none;
}
.home-testimonial__viewport:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 2px;
}
.home-testimonial__track {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
  animation: home-testimonial-marquee 180s linear infinite;
}
.home-testimonial__viewport:hover .home-testimonial__track,
.home-testimonial__viewport:focus-within .home-testimonial__track {
  animation-play-state: paused;
}
.home-testimonial__set {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.75rem;
  padding-inline: 0.75rem;
}
@keyframes home-testimonial-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.home-testimonial__quote {
  margin: 0;
  flex: 0 0 min(20.5rem, 78vw);
  width: min(20.5rem, 78vw);
  max-width: 20.5rem;
  height: 8.6rem;
  padding: 0.75rem 0.9rem 0.7rem;
  background: #fffef9;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
}
.home-testimonial__quote > p {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--charcoal);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
}
.home-testimonial__more {
  display: none; /* marquee keeps one fixed card height */
}
.home-testimonial__quote footer {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-style: normal;
  color: var(--muted);
  margin-top: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0;
}
.home-testimonial__quote cite {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}
.home-testimonial__quote a {
  color: var(--olive);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 0.3rem;
}
.home-testimonial__quote a:hover { color: var(--olive-hover); }

@media (prefers-reduced-motion: reduce) {
  .home-testimonial__track {
    animation: none !important;
    transform: none !important;
  }
  .home-testimonial__viewport {
    overflow-x: auto;
    max-height: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .home-testimonial__set + .home-testimonial__set {
    display: none; /* no duplicate track when static/snap */
  }
  .home-testimonial__quote {
    scroll-snap-align: start;
  }
}


/* —— Hero —— */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.hero__media {
  position: relative;
  min-height: clamp(420px, 62vh, 680px);
  overflow: hidden;
}
.hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(18, 20, 12, 0.78) 0%,
    rgba(18, 20, 12, 0.32) 42%,
    rgba(18, 20, 12, 0.08) 100%
  );
}
.hero__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding: 2.75rem 0 2.75rem;
  max-width: 38rem;
  margin-left: max(1.25rem, calc((100% - var(--max)) / 2));
  text-align: left;
}
.hero__overlay h1 {
  margin: 0 0 0.6rem;
  font-family: var(--serif);
  font-size: clamp(2.05rem, 4.4vw, 3.25rem);
  font-weight: 700; line-height: 1.12;
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}
.hero__overlay p {
  margin: 0;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  opacity: 0.96; max-width: 30rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.hero__overlay .hero__longevity {
  margin-top: 0.55rem;
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0.72;
  max-width: 28rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.hero__google {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin-top: 0.4rem;
  text-decoration: none;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.hero__google:hover,
.hero__google:focus-visible {
  opacity: 0.92;
  outline: none;
}
.hero__google:focus-visible {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.45);
  border-radius: 4px;
}
.hero__google-g {
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.35));
}
.hero__google-stars {
  display: inline-flex;
  color: rgba(255, 250, 235, 0.92);
  line-height: 0;
}
.hero__google-stars svg { display: block; }
.hero__google-score {
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 250, 235, 0.9);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.hero__cta {
  border-radius: 10px;
  padding: 0.78rem 1.55rem;
  display: inline-flex;
}
.hero__cta--mobile { display: none; }
.hero__cta-wrap { display: none; }

/* —— Three columns —— */
.main-cols { padding: 2.75rem 0 2.25rem; }
.main-cols--sketch { padding-top: 1.75rem; }
#sketch { scroll-margin-top: calc(var(--header-h) + 3.25rem); }
.cols-grid {
  display: grid;
  grid-template-columns: minmax(200px, 1.05fr) minmax(220px, 1fr);
  gap: 2rem 2.25rem;
  align-items: start;
}
.cols-grid .col-sketch {
  grid-column: 1 / -1;
  max-width: none;
  width: 100%;
}
.section-title {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

/* Services: two columns on desktop to match photo column height */

/* In-page Services jump: title clears sticky header */
#services {
  scroll-margin-top: calc(var(--header-h) + 3.25rem);
}
#photos {
  scroll-margin-top: calc(var(--header-h) + 3.25rem);
}
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.35rem;
  row-gap: 0.42rem;
  align-content: start;
  min-height: 0;
}
.col-services {
  display: flex;
  flex-direction: column;
}
.col-services .services-list {
  flex: 1;
  min-height: 0;
}
.services-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--charcoal);
  padding: 0.28rem 0;
}
.services-list li::before {
  content: "";
  flex-shrink: 0;
  width: 1.05rem; height: 1.05rem;
  background: url("../public/images/bullet.png") center / contain no-repeat;
}
.services-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(83, 94, 58, 0.5);
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.services-list a:hover {
  color: var(--olive);
  text-decoration-color: var(--olive);
}
.services-list .svc-chevron { display: none; }

/* Photos: three rotating job shots with Ken Burns */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.photo-slot {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 3 / 4.15;
  background: var(--cream-dark);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.photo-slot:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 2px;
}
.photo-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.15s ease;
  will-change: transform, opacity;
}
.photo-slot img.is-active {
  opacity: 1;
  z-index: 1;
}
.photo-slot img.is-active[data-kb="0"] { animation: kb-zoom-tl 7.5s ease-out forwards; }
.photo-slot img.is-active[data-kb="1"] { animation: kb-zoom-br 7.5s ease-out forwards; }
.photo-slot img.is-active[data-kb="2"] { animation: kb-zoom-tr 7.5s ease-out forwards; }
.photo-slot img.is-active[data-kb="3"] { animation: kb-zoom-bl 7.5s ease-out forwards; }

@keyframes kb-zoom-tl {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.14) translate(-3%, -2%); }
}
@keyframes kb-zoom-br {
  from { transform: scale(1.12) translate(-2%, -2%); }
  to { transform: scale(1) translate(0, 0); }
}
@keyframes kb-zoom-tr {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.14) translate(3%, -2%); }
}
@keyframes kb-zoom-bl {
  from { transform: scale(1.1) translate(2%, 1%); }
  to { transform: scale(1) translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .photo-slot img.is-active {
    animation: none !important;
  }
  .photo-slot img {
    transition: opacity 0.4s ease;
  }
}

/* Sketch to finished yard */
.sketch-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.sketch-compare figure {
  margin: 0; overflow: hidden;
  border-radius: 6px;
  background: var(--cream-dark);
  border: 1px solid rgba(83, 94, 58, 0.18);
  min-height: 0;
}
.sketch-compare__sketch {
  aspect-ratio: 16 / 10;
  min-height: 340px;
}
.sketch-compare__video {
  aspect-ratio: 16 / 10;
  min-height: 340px;
  background: #111;
}
.sketch-compare img,
.sketch-compare .yard-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Show the whole sketch (lines stay readable) */
.sketch-compare__sketch img {
  object-fit: contain;
  background: #fffef9;
}
/* Homepage sketch + video multi-slide */
.sketch-compare__sketch .sketch-slides,
.sketch-compare__video .video-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
}
.sketch-compare__sketch .plant-photo__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.25s ease-in-out;
  pointer-events: none;
  z-index: 0;
}
.sketch-compare__sketch .plant-photo__slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.sketch-compare__video .yard-video.plant-photo__slide,
.sketch-compare__video .video-slides .yard-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.25s ease-in-out;
  pointer-events: none;
  z-index: 0;
}
.sketch-compare__video .yard-video.is-active,
.sketch-compare__video .video-slides .yard-video.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.sketch-caption {
  margin: 0.7rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Feature bar */
.feature-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}
.feature-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.6rem;
  color: var(--olive);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}
.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.feature-item svg { width: 1.4rem; height: 1.4rem; flex-shrink: 0; }
.feature-dot {
  color: var(--olive-soft);
  opacity: 0.75;
  font-size: 1.25rem;
  line-height: 1;
  user-select: none;
}

/* Footer */
.site-footer {
  display: block;
  padding: 1.75rem 0 2rem;
  border-top: 1px solid rgba(74, 92, 58, 0.22);
  background: var(--cream-dark, #f3efe6);
  margin-top: 1.5rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  font-size: 0.98rem;
  color: var(--charcoal);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.15rem;
  align-items: center;
}
.footer-nav a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
}
.footer-inner a:hover,
.footer-nav a:hover { color: var(--olive); }
.footer-star { color: var(--olive); font-size: 0.95rem; opacity: 0.9; }
.footer-phone, .footer-web {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
}
.footer-phone svg, .footer-web svg {
  width: 1rem; height: 1rem; color: var(--olive);
}
.mobile-phone-bar { display: none; }

/* —— About —— */
.about-section { padding: 2.5rem 0 2rem; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 400px) 1fr;
  gap: 2.75rem;
  align-items: start;
}
.about-photo {
  border: 3px solid var(--olive);
  border-radius: 2px;
  overflow: hidden;
  background: var(--cream-dark);
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.about-copy h1 {
  margin: 0 0 0.65rem;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--ink);
}
.about-owner-name {
  font-family: var(--serif);
  font-size: 1.12em; /* a little larger than surrounding body text */
  font-weight: 700;
  color: var(--ink);
}
.about-copy p {
  margin: 0 0 1rem;
  font-family: var(--serif);
  color: var(--charcoal);
  max-width: 38rem;
  font-size: 0.98rem;
}
.about-copy .btn { margin-top: 0.85rem; }
.about-phone-block {
  text-align: center;
  padding: 1.75rem 0 2.25rem;
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
  position: relative;
}
.about-phone-block .star {
  color: #c4a35a;
  margin-bottom: 0.55rem;
  display: block;
  font-size: 1.1rem;
}
.about-phone-block a {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--ink);
}
.about-phone-block a:hover { color: var(--olive); }

/* Shared site forms (Contact + Confirm Your Visit + Join the Crew) */
.site-form {
  margin-top: 1.75rem;
  padding: 1.5rem;
  background: var(--cream-dark, #E8E0C4);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.site-form .form-row {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
@media (min-width: 640px) {
  .site-form .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}
.site-form label {
  display: block;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--olive, #535E3A);
  margin-bottom: 0.35rem;
}
.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--white, #fffef9);
  color: var(--charcoal);
  font: inherit;
}
.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  outline: 2px solid var(--olive, #535E3A);
  outline-offset: 1px;
  border-color: var(--olive, #535E3A);
}
.site-form input[aria-invalid="true"],
.site-form select[aria-invalid="true"],
.site-form textarea[aria-invalid="true"] {
  border-color: #8b3a3a;
}
.site-form textarea { min-height: 7rem; resize: vertical; }
.site-form .form-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.site-form [data-wix-success] {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  background: rgba(83, 94, 58, 0.12);
  color: var(--olive, #535E3A);
  border-radius: 8px;
  font-weight: 600;
}
.site-form [data-wix-error] {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  background: rgba(139, 58, 58, 0.1);
  color: #6b2a2a;
  border-radius: 8px;
  font-weight: 600;
}
.contact-alt {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.form-switch {
  font-size: 0.95rem;
  color: var(--muted);
}
.form-switch a {
  color: var(--olive, #535E3A);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.form-switch a:hover {
  color: var(--olive-hover, #3f482c);
}

/* Contact */
.contact-section { padding: 3rem 0 4rem; max-width: 36rem; }
.contact-section h1 {
  font-family: var(--serif);
  font-size: 2rem;
  margin: 0 0 0.75rem;
}
.contact-section p { margin: 0 0 1rem; color: var(--muted); }
.contact-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem;
}

/* —— Tablet —— */
@media (max-width: 960px) {
  .home-testimonial__quote { padding: 0.7rem 0.8rem 0.65rem; height: 8.4rem; }
  .home-testimonial__quote > p { font-size: 0.86rem; -webkit-line-clamp: 4; line-clamp: 4; }
  .cols-grid { grid-template-columns: 1fr 1fr; }
  .cols-grid .col-sketch { grid-column: 1 / -1; max-width: none; }
  .col-services .services-list { min-height: 0; }
  .about-grid { grid-template-columns: minmax(200px, 300px) 1fr; gap: 1.75rem; }
  .sketch-compare { grid-template-columns: 1fr; gap: 0.65rem; }
  .sketch-compare__sketch,
  .sketch-compare__video { aspect-ratio: 4 / 3; width: 100%; }
  .sketch-compare img,
  .sketch-compare .yard-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* —— Mobile (matches mobile mockup) —— */
@media (max-width: 760px) {
  .sketch-compare { grid-template-columns: 1fr; gap: 0.65rem; }
  .sketch-compare figure { width: 100%; max-width: 100%; }
  .sketch-compare__sketch,
  .sketch-compare__video {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
  .top-bar-inner { min-height: 2.5rem; }
  .top-phone { font-size: 1.12rem; }
  :root { --header-h: 70px; }
  .logo { margin-bottom: -1.35rem; }
  .logo img { height: clamp(92px, 26vw, 120px); }
  body:not(.page-home) main { padding-top: 0.55rem; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .header-cta { display: none; }
  .header-inner { gap: 0.5rem; position: relative; }
  .nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 0 1.25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.45rem);
    transition:
      max-height 0.28s ease,
      opacity 0.22s ease,
      transform 0.28s ease,
      padding 0.28s ease,
      visibility 0s linear 0.28s;
  }
  .nav.is-open {
    max-height: 28rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    padding: 0.5rem 1.25rem 1rem;
    transition:
      max-height 0.28s ease,
      opacity 0.22s ease,
      transform 0.28s ease,
      padding 0.28s ease,
      visibility 0s linear 0s;
  }
  .nav a {
    font-family: var(--sans);
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }
  .nav.is-open a:nth-child(1) { transition-delay: 0.03s; }
  .nav.is-open a:nth-child(2) { transition-delay: 0.05s; }
  .nav.is-open a:nth-child(3) { transition-delay: 0.07s; }
  .nav.is-open a:nth-child(4) { transition-delay: 0.09s; }
  .nav.is-open a:nth-child(5) { transition-delay: 0.11s; }
  .nav.is-open a:nth-child(6) { transition-delay: 0.13s; }
  .nav.is-open a:nth-child(7) { transition-delay: 0.15s; }
  .nav .nav-cta-mobile {
    display: inline-flex;
    margin-top: 0.75rem;
    justify-content: center;
    align-self: stretch;
    /* Match header Confirm Your Visit — don't inherit dark nav link color */
    background: var(--olive);
    color: #fffef9 !important;
    border-bottom: none;
    border-radius: 999px;
    padding: 0.7rem 1.2rem;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    text-shadow: none;
  }
  .nav .nav-cta-mobile:hover,
  .nav .nav-cta-mobile:focus {
    background: var(--olive-hover);
    color: #fffef9 !important;
  }
  .page-home .nav .nav-cta-mobile {
    color: #fffef9 !important;
    text-shadow: none;
  }

  .hero { color: var(--white); }
  .hero__media {
    min-height: 0;
    height: min(56vw, 300px);
    min-height: 230px;
  }
  .hero__media::after {
    background: linear-gradient(
      to right,
      rgba(18, 20, 12, 0.58) 0%,
      rgba(18, 20, 12, 0.22) 55%,
      rgba(18, 20, 12, 0.06) 100%
    );
  }
  .hero__overlay {
    top: 0; bottom: auto;
    left: 0; right: 0;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 1.4rem 1.25rem 0;
  }
  .hero__overlay h1 {
    font-size: 1.65rem;
    max-width: 14rem;
    margin-bottom: 0.4rem;
  }
  .hero__overlay p {
    font-size: 0.92rem;
    max-width: 16.5rem;
    margin: 0;
  }
  .hero__overlay .hero__longevity {
    margin-top: 0.4rem;
    font-size: 0.75rem;
    max-width: 16.5rem;
    opacity: 0.7;
  }
  .hero__google {
    margin-top: 0.32rem;
    gap: 0.22rem;
    opacity: 0.68;
  }
  .hero__google-g { width: 12px; height: 12px; }
  .hero__google-stars svg { width: 48px; height: 9px; }
  .hero__google-score { font-size: 0.68rem; }
  .hero__cta--desktop { display: none; }
  .hero__cta-wrap {
    display: block;
    position: static;
    padding: 0.9rem 0 0.35rem;
  }
  .hero__cta--mobile {
    display: flex;
    width: 100%;
    justify-content: center;
    border-radius: 10px;
  }

  .main-cols { padding: 0.5rem 0 1.5rem; }
  .cols-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .cols-grid .col-sketch { max-width: none; }
  .section-title { font-size: 1.45rem; margin-bottom: 0.65rem; }

  /* Mobile services: single column rows with dividers + chevrons */
  .col-services .services-list {
    min-height: 0;
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .services-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
    justify-content: flex-start;
  }
  .services-list li:last-child { border-bottom: 0; }
  .services-list a {
    flex: 1;
    text-decoration: none;
    font-weight: 600;
  }
  .services-list .svc-chevron {
    display: inline-block;
    color: rgba(83, 94, 58, 0.45);
    font-size: 1.1rem;
    margin-left: auto;
    padding-left: 0.5rem;
  }

  /* Photos: stacked wide images */
  .photo-strip {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .photo-slot {
    aspect-ratio: 16 / 9;
    border-radius: 10px;
  }

  .sketch-compare figure { border-radius: 8px; }

  .home-testimonial { padding: 0.7rem 0 0.85rem; }
  .home-testimonial__google-mark {
    top: 0.05rem;
    right: 0.45rem;
    opacity: 0.34;
    gap: 0.2rem;
  }
  .home-testimonial__google-g { width: 15px; height: 15px; }
  .home-testimonial__google-stars svg { width: 58px; height: 12px; }
  .home-testimonial__google-score { font-size: 0.7rem; }
  .home-testimonial__viewport { max-height: 9.1rem; }
  .home-testimonial__quote {
    flex: 0 0 min(17.5rem, 82vw);
    width: min(17.5rem, 82vw);
    max-width: 17.5rem;
    height: 8.2rem;
    padding: 0.65rem 0.75rem 0.6rem;
  }
  .home-testimonial__quote > p { font-size: 0.86rem; -webkit-line-clamp: 4; line-clamp: 4; }
  .home-testimonial__set { gap: 0.65rem; padding-inline: 0.65rem; }
  .home-testimonial__track { animation-duration: 210s; }

  .feature-bar {
    border: 0;
    padding: 0.85rem 0;
    background: #fff;
  }
  .feature-bar__inner {
    gap: 0.35rem 0.65rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
  }
  .feature-item svg { display: none; }
  .feature-dot { color: var(--charcoal); opacity: 0.55; }

  .site-footer {
    display: block;
    padding: 1.25rem 0 1.35rem;
    margin-top: 1rem;
    margin-bottom: 0;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.92rem;
  }
  .footer-nav { gap: 0.45rem 0.95rem; }
  .mobile-phone-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: var(--olive);
    color: var(--white);
    padding: 1rem 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .mobile-phone-bar svg {
    width: 1.25rem; height: 1.25rem; flex-shrink: 0;
  }
  .mobile-phone-bar a { color: inherit; display: inline-flex; align-items: center; gap: 0.55rem; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 360px; }
  .about-copy p { font-family: var(--serif); }
}

@media (max-width: 420px) {
  .container { width: min(100% - 1.5rem, var(--max)); }
  .hero__overlay h1 { font-size: 1.45rem; }
  .hero__overlay p { font-size: 0.85rem; }
  .hero__overlay .hero__longevity { font-size: 0.7rem; }
  .hero__google-g { width: 11px; height: 11px; }
  .hero__google-stars svg { width: 44px; height: 8px; }
  .hero__google-score { font-size: 0.65rem; }
}


/* —— Photos gallery page —— */
.photos-page {
  padding: 2.25rem 0 3.5rem;
  background: var(--cream);
}
.photos-page__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}
.photos-page__head h1 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--charcoal);
  margin: 0 0 0.6rem;
}
.photos-page__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.45;
}
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.photo-tile {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  border-radius: 4px;
  background: var(--cream-dark);
  border: 1px solid rgba(83, 94, 58, 0.14);
  aspect-ratio: 4 / 3;
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.photo-tile:hover img {
  transform: scale(1.05);
}
/* legacy span classes ignored — uniform tiles */
.photo-tile.tile--wide,
.photo-tile.tile--tall {
  grid-column: auto;
  grid-row: auto;
}
.photos-page__cta {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 760px) {
  .photo-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .photo-gallery {
    grid-template-columns: 1fr;
  }
}

/* —— Photos project covers —— */

.photo-cover-grid .photo-cover {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.photo-cover-grid .photo-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 32, 20, 0.28), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.photo-cover-grid .photo-cover:hover::after,
.photo-cover-grid .photo-cover:focus-visible::after {
  opacity: 1;
}
.photo-cover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.photo-job__back {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.photo-job__back a {
  color: var(--olive, #535e3a);
  text-decoration: none;
  font-weight: 600;
}
.photo-job__back a:hover {
  text-decoration: underline;
}
@media (max-width: 760px) {
  .photo-cover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
}

/* Plant profile */
.plant-page {
  padding: 2.25rem 0 3.5rem;
  background: var(--cream);
}
.plant-head {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 1.75rem;
  gap: 0.35rem;
}
.plant-head__top {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.plant-head h1 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--charcoal);
  margin: 0 auto;
  font-weight: 700;
  width: 100%;
  max-width: 100%;
  line-height: 1.15;
  text-align: center;
  /* stamp overlays; never shift title for stamp width */
  position: relative;
  z-index: 1;
}
.plant-tough-stamp {
  position: absolute;
  left: -0.2rem;
  top: 50%;
  width: 112px;
  height: auto;
  max-width: 112px;
  display: block;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  /* overlay title; keep random tilt + vertical center */
  transform: translateY(-50%) rotate(var(--stamp-rot, -7deg));
  transform-origin: center center;
}
.plant-botanical {
  margin: 0.2rem 0 0.55rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-family: var(--serif);
}
.plant-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  background: var(--olive);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.plant-chip--superstar {
  background: var(--olive);
}
@media (max-width: 640px) {
  .plant-head h1 {
    font-size: clamp(1.55rem, 6.5vw, 1.9rem);
    /* stay centered — stamp may overlap long titles */
    padding-left: 0;
  }
  .plant-tough-stamp {
    left: -0.15rem;
    width: 88px;
    max-width: 88px;
  }
}

/* Layout C — photo + meter card */
.plant-split {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 1.35rem;
  align-items: start;
  margin-bottom: 2rem;
}
.plant-split__media {
  min-width: 0;
}
.plant-page--c .plant-photos {
  display: grid;
  grid-template-columns: 1.7fr 1fr; /* left wider, same row height */
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  align-items: stretch;
  height: clamp(280px, 42vw, 460px);
}
.plant-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(83, 94, 58, 0.18);
  background: var(--cream-dark);
  height: 100%;
  min-height: 0;
}
.plant-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Same height for both; left is wider via grid columns */
.plant-page--c .plant-photo--main,
.plant-page--c .plant-photo--detail {
  aspect-ratio: auto;
  align-self: stretch;
  height: 100%;
}
.plant-page--c .plant-photo[data-lightbox] {
  cursor: zoom-in;
}
.plant-page--c .plant-photo[data-lightbox]:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 2px;
}

/* Slow crossfade slideshow for multi-image plant/flower slots */
.plant-photo__slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
}
.plant-page--c .plant-photo--main .plant-photo__slides {
  min-height: 100%;
  height: 100%;
}
.plant-photo__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.25s ease-in-out;
  pointer-events: none;
  z-index: 0;
}
.plant-photo__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.plant-photo--empty .plant-photo__placeholder {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  background: var(--cream-dark);
}
.plant-page--c .plant-photo--main .plant-photo__slides .plant-photo__slide.is-active {
  /* keep left slot filling equal-height grid cell */
  min-height: 100%;
}
.plant-summary--split {
  max-width: none;
  margin: 0;
  text-align: left;
}
.plant-summary--split p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
}

.plant-block--under-summary {
  margin: 1.1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}
.plant-block--under-summary h2 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}
.plant-block--under-summary p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}
.plant-split__media .plant-block--under-summary + .plant-block--under-summary {
  margin-top: 0.95rem;
}


.plant-glance {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.15rem 1.1rem 1.2rem;
  box-shadow: 0 8px 22px rgba(42, 42, 40, 0.06);
}
.plant-glance__title {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--olive);
  font-weight: 700;
}

/* At a Glance — olive stamp icon badge grid (Style C), no card boxes */
.glance-grid {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 0.55rem;
}
.glance-badge {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.15rem 0.1rem 0.2rem;
  box-shadow: none;
  text-align: center;
  min-width: 0;
  backdrop-filter: none;
}
.glance-badge__stamp {
  /* ~1.35× prior 68px; label/value scaled same ratio */
  width: 92px;
  height: 92px;
  /* breathe under stamps before name/value labels */
  margin: 0 auto 0.1rem;
  display: grid;
  place-items: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.glance-badge__stamp img {
  width: 92px;
  height: 92px;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}
.glance-badge__name {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive-soft);
  line-height: 1.15;
  margin-top: 0;
}
.glance-badge__val {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--olive);
  margin-top: 0.12rem;
  line-height: 1.2;
  word-break: break-word;
}

.meters {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}
.meter__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.32rem;
}
.meter__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
}
.meter__value {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--olive);
  white-space: nowrap;
}
.meter-graph {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.meter-track {
  position: relative;
  height: 10px;
  background: var(--cream-dark);
  border-radius: 999px;
  border: 1px solid rgba(83, 94, 58, 0.22);
  overflow: hidden;
}
.meter-fill {
  height: 100%;
  background: var(--olive);
  border-radius: 999px;
}
.meter-fill--range {
  position: absolute;
  top: 0;
  bottom: 0;
  height: auto;
  border-radius: 999px;
}
.meter-axis {
  position: relative;
  height: 1.55rem;
  margin-top: 0.2rem;
  border-top: 1px solid rgba(83, 94, 58, 0.28);
}
.meter-tick {
  position: absolute;
  left: var(--p);
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  max-width: 3.2rem;
}
.meter-tick i {
  display: block;
  width: 1px;
  height: 8px;
  background: var(--olive);
  opacity: 0.85;
}
.meter-tick b {
  display: block;
  margin-top: 0.12rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.68rem;
  line-height: 1.1;
  color: var(--muted);
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
}

/* Legacy note under freeze meter — no longer generated */
.plant-freeze-note { display: none; }

/* Freeze meter: lethal cold (blue) + foliage-damage band (soft magenta) */
.meter-fill--freeze-kill {
  background: #3d6f9e;
  border-radius: 999px 0 0 999px;
}
.meter-fill--freeze-damage {
  background: #b45a9a;
  border-radius: 0 999px 999px 0;
}
/* When damage band is absent, round the kill fill on both ends */
.meter-track > .meter-fill--freeze-kill:only-child {
  border-radius: 999px;
}

/* Sun segmented control */
.meter-segs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.meter-seg {
  height: 12px;
  border-radius: 6px;
  background: var(--cream-dark);
  border: 1px solid rgba(83, 94, 58, 0.22);
}
.meter-seg.is-on {
  background: var(--olive);
  border-color: var(--olive);
}
.meter-axis--segs {
  margin-top: 0.15rem;
}


/* Attracts pollinators glance checkbox (profile At a glance) */
.plant-check-trait {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(83, 94, 58, 0.18);
}
.plant-check-trait__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.plant-check-trait__box {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 4px;
  border: 1.5px solid rgba(83, 94, 58, 0.45);
  background: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.plant-check-trait.is-checked .plant-check-trait__box {
  background: var(--olive);
  border-color: var(--olive);
}
.plant-check-trait__mark {
  font-size: 0.72rem;
  line-height: 1;
  color: transparent;
  font-weight: 700;
}
.plant-check-trait.is-checked .plant-check-trait__mark {
  color: #fff;
}
.plant-check-trait .meter__label {
  flex: 1 1 auto;
  min-width: 0;
}
.plant-check-trait .meter__value {
  flex: 0 1 auto;
  white-space: normal;
  text-align: right;
  max-width: 58%;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.plant-badges--glance {
  padding-top: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-start;
  /* bumper between attribute labels and trait tags — not under icons */
  margin: 3rem 0 0;
}
.plant-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: rgba(83, 94, 58, 0.12);
  color: var(--olive);
  border: 1px solid rgba(83, 94, 58, 0.22);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Legacy helpers kept for compatibility */
.plant-photos {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.plant-photo--main {
  min-height: 280px;
  aspect-ratio: 4 / 3;
}
.plant-photo--detail {
  min-height: 280px;
  aspect-ratio: 3 / 4;
}
.plant-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.plant-badges.plant-badges--glance {
  /* must beat .plant-badges margin — gap under Width/Freeze before trait pills */
  margin: 3rem 0 0;
  padding-top: 0.15rem;
  justify-content: flex-start;
}

.plant-summary {
  max-width: 42rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}
.plant-summary p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--charcoal);
}
.plant-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.5rem;
  margin: 0 0 2rem;
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.plant-fact { margin: 0; }
.plant-fact dt {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 0.2rem;
}
.plant-fact dd {
  margin: 0;
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.4;
}
.plant-block {
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}
.plant-page--c .plant-block {
  max-width: none;
}
.plant-block h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
}
.plant-block p {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.02rem;
  line-height: 1.55;
}
.plant-cta {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 800px) {
  .plant-split {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .plant-page--c .plant-photos {
    grid-template-columns: 1.55fr 1fr;
    align-items: stretch;
    height: clamp(240px, 48vw, 380px);
  }
  .plant-page--c .plant-photo--main,
  .plant-page--c .plant-photo--detail {
    height: 100%;
    aspect-ratio: auto;
  }
}
@media (max-width: 760px) {
  .plant-photos,
  .plant-page--c .plant-photos {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    justify-items: center;
    justify-content: center;
  }
  .plant-page--c .plant-photos {
    grid-template-columns: 1fr;
    height: auto;
    gap: 0.75rem;
    justify-items: center;
  }
  .plant-page--c .plant-photo--main,
  .plant-page--c .plant-photo--detail,
  .plant-photo--main,
  .plant-photo--detail {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 11rem;
    width: 100%;
    max-width: 100%;
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
  }
  .plant-photo {
    width: 100%;
    max-width: 100%;
  }
  .plant-page--c .plant-photo--main .plant-photo__slide,
  .plant-page--c .plant-photo--detail .plant-photo__slide,
  .plant-photo__slide {
    object-position: center center;
  }
  /* Absolute slides previously collapsed to 0 height when parent height was auto. */
  .plant-photo__slides,
  .plant-page--c .plant-photo--main .plant-photo__slides,
  .plant-page--c .plant-photo--detail .plant-photo__slides {
    position: relative;
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 11rem;
    width: 100%;
  }
  .plant-photo__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .plant-facts {
    grid-template-columns: 1fr;
    padding: 1.1rem 1.15rem;
  }
  .plant-page {
    padding: 1.75rem 0 3rem;
  }
  .plant-badges {
    justify-content: flex-start;
  }
  .meter-tick b {
    font-size: 0.64rem;
  }
  .glance-badge__stamp,
  .glance-badge__stamp img {
    width: 86px;
    height: 86px;
  }
  .glance-badge__name {
    font-size: 0.86rem;
  }
  .glance-badge__val {
    font-size: 1rem;
  }
  .glance-grid {
    gap: 0.7rem 0.4rem;
  }
}


/* Sketch / video enlarge overlay */
.sketch-compare figure[data-lightbox],
.sketch-compare figure[data-lightbox] * {
  cursor: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20cx%3D%2213%22%20cy%3D%2213%22%20r%3D%228.5%22%20fill%3D%22%23fffef9%22%20stroke%3D%22%231c1c1a%22%20stroke-width%3D%222.2%22/%3E%3Cline%20x1%3D%2219.5%22%20y1%3D%2219.5%22%20x2%3D%2227%22%20y2%3D%2227%22%20stroke%3D%22%231c1c1a%22%20stroke-width%3D%222.8%22%20stroke-linecap%3D%22round%22/%3E%3Cline%20x1%3D%2213%22%20y1%3D%229%22%20x2%3D%2213%22%20y2%3D%2217%22%20stroke%3D%22%23535E3A%22%20stroke-width%3D%222.2%22%20stroke-linecap%3D%22round%22/%3E%3Cline%20x1%3D%229%22%20y1%3D%2213%22%20x2%3D%2217%22%20y2%3D%2213%22%20stroke%3D%22%23535E3A%22%20stroke-width%3D%222.2%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E") 13 13, zoom-in;
}
.sketch-compare figure[data-lightbox]:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}
.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 0.75rem;
  background: rgba(28, 28, 26, 0.78);
  cursor: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20cx%3D%2213%22%20cy%3D%2213%22%20r%3D%228.5%22%20fill%3D%22%23fffef9%22%20stroke%3D%22%231c1c1a%22%20stroke-width%3D%222.2%22/%3E%3Cline%20x1%3D%2219.5%22%20y1%3D%2219.5%22%20x2%3D%2227%22%20y2%3D%2227%22%20stroke%3D%22%231c1c1a%22%20stroke-width%3D%222.8%22%20stroke-linecap%3D%22round%22/%3E%3Cline%20x1%3D%229%22%20y1%3D%2213%22%20x2%3D%2217%22%20y2%3D%2213%22%20stroke%3D%22%23535E3A%22%20stroke-width%3D%222.2%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E") 13 13, zoom-out;
}
.media-lightbox[hidden] { display: none !important; }
.media-lightbox__panel {
  width: fit-content;
  height: fit-content;
  max-width: min(96vw, 1100px);
  max-height: min(96vh, 1100px);
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  display: block;
  line-height: 0;
  cursor: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20cx%3D%2213%22%20cy%3D%2213%22%20r%3D%228.5%22%20fill%3D%22%23fffef9%22%20stroke%3D%22%231c1c1a%22%20stroke-width%3D%222.2%22/%3E%3Cline%20x1%3D%2219.5%22%20y1%3D%2219.5%22%20x2%3D%2227%22%20y2%3D%2227%22%20stroke%3D%22%231c1c1a%22%20stroke-width%3D%222.8%22%20stroke-linecap%3D%22round%22/%3E%3Cline%20x1%3D%229%22%20y1%3D%2213%22%20x2%3D%2217%22%20y2%3D%2213%22%20stroke%3D%22%23535E3A%22%20stroke-width%3D%222.2%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E") 13 13, zoom-out;
}
.media-lightbox__img,
.media-lightbox__video {
  display: block;
  width: auto;
  height: auto;
  max-width: min(96vw, 1100px);
  max-height: min(96vh, 1100px);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  cursor: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20cx%3D%2213%22%20cy%3D%2213%22%20r%3D%228.5%22%20fill%3D%22%23fffef9%22%20stroke%3D%22%231c1c1a%22%20stroke-width%3D%222.2%22/%3E%3Cline%20x1%3D%2219.5%22%20y1%3D%2219.5%22%20x2%3D%2227%22%20y2%3D%2227%22%20stroke%3D%22%231c1c1a%22%20stroke-width%3D%222.8%22%20stroke-linecap%3D%22round%22/%3E%3Cline%20x1%3D%229%22%20y1%3D%2213%22%20x2%3D%2217%22%20y2%3D%2213%22%20stroke%3D%22%23535E3A%22%20stroke-width%3D%222.2%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E") 13 13, zoom-out;
  vertical-align: top;
}

@media (max-width: 760px) {
  .sketch-compare figure[data-lightbox],
  .sketch-compare figure[data-lightbox] * {
    cursor: default;
  }
  .media-lightbox {
    display: none !important;
  }
}

/* Job gallery enlarge (desktop) */
.photo-job .photo-tile[data-lightbox],
.photo-job .photo-tile[data-lightbox] * {
  cursor: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20cx%3D%2213%22%20cy%3D%2213%22%20r%3D%228.5%22%20fill%3D%22%23fffef9%22%20stroke%3D%22%231c1c1a%22%20stroke-width%3D%222.2%22/%3E%3Cline%20x1%3D%2219.5%22%20y1%3D%2219.5%22%20x2%3D%2227%22%20y2%3D%2227%22%20stroke%3D%22%231c1c1a%22%20stroke-width%3D%222.8%22%20stroke-linecap%3D%22round%22/%3E%3Cline%20x1%3D%2213%22%20y1%3D%229%22%20x2%3D%2213%22%20y2%3D%2217%22%20stroke%3D%22%23535E3A%22%20stroke-width%3D%222.2%22%20stroke-linecap%3D%22round%22/%3E%3Cline%20x1%3D%229%22%20y1%3D%2213%22%20x2%3D%2217%22%20y2%3D%2213%22%20stroke%3D%22%23535E3A%22%20stroke-width%3D%222.2%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E") 13 13, zoom-in;
}
@media (max-width: 760px) {
  .photo-job .photo-tile[data-lightbox],
  .photo-job .photo-tile[data-lightbox] * {
    cursor: default;
  }
}


/* —— Plant search —— */
.plant-search-hero {
  padding: 2.5rem 0 1.25rem;
}
.plant-search-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--olive);
  margin: 0 0 0.5rem;
}
.plant-search-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}
.plant-filters {
  display: grid;
  grid-template-columns: 1.35fr 1fr repeat(4, minmax(0, 0.85fr));
  gap: 0.75rem 0.85rem;
  align-items: end;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin: 1.25rem 0 1.75rem;
}
.plant-filters label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--olive-soft);
}
.plant-filters input[type="search"],
.plant-filters select {
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--charcoal);
}
.plant-filters input[type="search"]:focus,
.plant-filters select:focus {
  outline: 2px solid var(--olive);
  border-color: var(--olive);
}
.plant-filters__checks {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  align-items: center;
  padding-top: 0.15rem;
  margin-top: 0.15rem;
  border-top: 1px solid var(--line);
  padding-bottom: 0.15rem;
}
/* Flatten row/stack wrappers on desktop so all six checks flow like before */
.plant-filters__checks-row,
.plant-filters__checks-stack {
  display: contents;
}
.plant-check {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.4rem !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--charcoal) !important;
  cursor: pointer;
  user-select: none;
}
.plant-check input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--olive);
  cursor: pointer;
}
@media (max-width: 960px) {
  .plant-filters {
    grid-template-columns: 1fr 1fr;
  }
  .plant-filters__search,
  .plant-filters__checks {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .plant-filters {
    grid-template-columns: 1fr;
  }
  /* Row 1: frost / deer / Texas Tough horizontal; row 2+: drought, pollinators, native stacked */
  .plant-filters__checks {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .plant-filters__checks-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 1rem;
  }
  .plant-filters__checks-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem; /* same vertical rhythm as gap under first row */
  }
}
.plant-results-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}
.plant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.1rem;
  padding-bottom: 3rem;
}
.plant-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.plant-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(83, 94, 58, 0.12);
}
.plant-card__img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  overflow: hidden;
}
.plant-card__img > img:not(.plant-card__tough) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plant-card__tough {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 44px;
  height: auto;
  max-width: 22%;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
  pointer-events: none;
  z-index: 1;
  transform: rotate(var(--stamp-rot, 6deg));
  transform-origin: center center;
}
.plant-card__body {
  padding: 0.9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.plant-card__body h2 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin: 0;
  color: var(--olive);
}
.plant-card__bot {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
}
.plant-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.45rem;
}
.plant-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--cream-dark);
  color: var(--olive);
}
.plant-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: rgba(255,254,249,0.6);
}
@media (max-width: 900px) {
  .plant-filters {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .plant-filters {
    grid-template-columns: 1fr;
  }
}

/* —— Service pages —— */
.service-page { padding: 2.5rem 0 2.25rem; }
.service-hero {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 2.75rem;
  align-items: start;
}
.service-hero__media {
  border: 3px solid var(--olive);
  border-radius: 2px;
  overflow: hidden;
  background: var(--cream-dark);
}
.service-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.service-hero__media .plant-photo__slides,
.service-hero__slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  min-height: 0;
}
.service-hero__media .plant-photo__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.25s ease-in-out;
  pointer-events: none;
  z-index: 0;
}
.service-hero__media .plant-photo__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.service-kicker {
  margin: 0 0 0.35rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive);
}
.service-kicker a:hover { text-decoration: underline; }
.service-hero__copy h1 {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--ink);
}
.service-summary {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  margin: 0 0 1.1rem;
  max-width: 38rem;
}
.service-hero__copy p {
  margin: 0 0 1rem;
  font-family: var(--serif);
  color: var(--charcoal);
  max-width: 38rem;
  font-size: 0.98rem;
}
.service-list-title {
  margin: 1.35rem 0 0.65rem;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--olive);
}
.service-bullets {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  max-width: 38rem;
}
.service-bullets li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.35rem;
  font-family: var(--sans);
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
}
.service-bullets li:last-child { border-bottom: 0; }
.service-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--olive);
  border-radius: 1px;
  opacity: 0.85;
}
.service-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.service-footer-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 0 1.25rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--muted);
}
.service-footer-cta a {
  color: var(--olive);
  font-weight: 600;
}
.service-footer-cta a:hover { text-decoration: underline; }
.service-hub { padding: 2.5rem 0 3rem; max-width: 40rem; }
.service-hub h1 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--ink);
}
.service-hub-lead {
  font-family: var(--serif);
  margin: 0 0 1.5rem;
  color: var(--charcoal);
}
.service-hub-list { margin-bottom: 1.75rem; }
.service-hub .service-cta { margin-top: 0.25rem; }

@media (max-width: 900px) {
  .service-hero { grid-template-columns: minmax(200px, 300px) 1fr; gap: 1.75rem; }
}
@media (max-width: 720px) {
  .service-hero { grid-template-columns: 1fr; }
  .service-hero__media { max-width: 520px; }
  .service-hero__copy p,
  .service-summary { font-family: var(--serif); }
}

/* Texas Tough ranked list */
.tt-rank-page { padding: 1.5rem 0 3rem; }
.tt-rank-kicker { margin: 0 0 0.75rem; font-size: 0.92rem; }
.tt-rank-kicker a { text-decoration: none; font-weight: 600; }
.tt-rank-head {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1rem;
}
.tt-rank-head h1 { margin: 0 0 0.35rem; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.2rem); }
.tt-rank-intro { margin: 0; color: var(--muted); max-width: 40rem; }
.tt-rank-stamp { width: 88px; height: auto; flex: 0 0 auto; }
.tt-rank-meta { color: var(--muted); font-size: 0.95rem; margin: 0 0 0.85rem; }
.tt-rank-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.tt-rank-row {
  background: var(--white, #fffef9);
  border: 1px solid rgba(83, 94, 58, 0.22);
  border-radius: 12px;
  overflow: hidden;
}
.tt-rank-row__link {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.75rem 0.9rem;
  align-items: center;
  padding: 0.7rem 0.85rem;
  text-decoration: none;
  color: inherit;
}
.tt-rank-row__link:hover { background: #f7f3e6; }
.tt-rank-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--olive);
  min-width: 1.6rem;
  text-align: center;
}
.tt-rank-thumb {
  width: 72px; height: 72px; object-fit: cover; border-radius: 8px;
  background: #ebe6d6;
}
.tt-rank-thumb--empty { display: inline-block; }
.tt-rank-text { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.tt-rank-name { font-weight: 700; font-size: 1.05rem; }
.tt-rank-bot { color: var(--muted); font-size: 0.9rem; }
.tt-rank-chips { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.25rem; }
.tt-rank-chip {
  display: inline-flex; align-items: center;
  padding: 0.12rem 0.5rem; border-radius: 999px;
  background: rgba(83, 94, 58, 0.12); color: var(--olive);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.01em;
}
@media (max-width: 560px) {
  .tt-rank-row__link { grid-template-columns: auto auto 1fr; gap: 0.55rem 0.65rem; }
  .tt-rank-thumb { grid-column: auto; width: 56px; height: 56px; }
  .tt-rank-text { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .nav,
  .nav a,
  .nav-toggle__bars span {
    transition: none !important;
  }
}

.site-form select {
  appearance: auto;
  cursor: pointer;
}
.site-form input[type="file"] {
  padding: 0.55rem 0.65rem;
  background: var(--white, #fffef9);
  font-size: 0.92rem;
}
.site-form .file-hint {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--muted, #6b6b5a);
  font-weight: 500;
}
.hire-cta {
  margin: 0;
  padding: 1.75rem 0 2rem;
  background: var(--cream-dark, #E8E0C4);
  border-top: 1px solid var(--line);
}
.hire-cta__inner {
  max-width: 42rem;
}
.hire-cta p {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--charcoal);
}
.hire-cta a {
  color: var(--olive, #535E3A);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
}
