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

:root {
  --ink: #0d0b09;
  --deep: #141009;
  --surface: #1c1510;
  --bone: #ede4cf;        /* brighter — better contrast on dark */
  --bone-dim: #c2ae90;    /* was #9e8e72 — much more legible on dark bg */
  --amber: #c4893a;
  --amber-light: #e0a94e;
  --rust: #8b3a1e;
  --sand: #d4c09a;
  --divider: rgba(196, 137, 58, 0.25);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: 'Cormorant', Georgia, serif;
  font-size: 20px;        /* was 18px */
  line-height: 1.75;
  overflow-x: hidden;
  cursor: default;
}

/* ── Grain overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(13,11,9,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(196,137,58,0.12);
}

.nav-brand {
  font-family: 'Cormorant SC', serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--amber);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  text-decoration: none;
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--amber-light); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background-image: url('new saguaro skulls hero.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}


/* Thin fade — just enough to blend into dark section, doesn't swallow the text */
.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 18%;
  background: linear-gradient(to bottom, transparent 0%, rgba(13,11,9,0.7) 70%, var(--ink) 100%);
  pointer-events: none;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--amber);
  border: none;
  padding: 0.95rem 2.4rem;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
}

.btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  background: transparent;
  border: 1px solid rgba(226, 213, 188, 0.35);
  padding: 0.95rem 2.4rem;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber-light);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
  animation: fade-up 2s 1.2s ease both;
}

.hero-scroll span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ── Section common ── */
section { padding: 7rem 2rem; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  display: block;
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--amber);
  opacity: 0.5;
}

.section-title {
  font-family: 'Cormorant SC', serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--bone);
  margin-bottom: 1.5rem;
}

.divider {
  width: 80px;
  height: 1px;
  background: var(--divider);
  margin: 3rem auto;
}

/* ── Services ── */
.services-section {
  background: var(--surface);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,137,58,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.services-text p {
  font-size: 1.15rem;
  color: var(--bone-dim);
  margin-bottom: 1.2rem;
}

.services-text p strong {
  color: var(--bone);
  font-weight: 500;
}

.services-stat-row {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}

.stat { }

.stat-num {
  font-family: 'Cormorant SC', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
  display: block;
  white-space: nowrap;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.services-image-block {
  position: relative;
}

.services-image-block img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.services-image-block::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--divider);
  pointer-events: none;
}

.services-image-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: rgba(255,255,255,0.025);
  padding: 2.5rem;
  border: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: var(--divider);
  background: rgba(196,137,58,0.04);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-family: 'Cormorant SC', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--amber);
  letter-spacing: 0.2em;
  margin-bottom: 1.2rem;
  display: block;
}

.service-name {
  font-family: 'Cormorant SC', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}

.service-desc {
  font-size: 1rem;
  color: var(--bone-dim);
  line-height: 1.6;
}

.service-animals {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.animal-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(196,137,58,0.3);
  padding: 0.2rem 0.6rem;
}

/* ── Process ── */
.process-section {
  background: var(--ink);
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}

.process-header p {
  color: var(--bone-dim);
  font-size: 1.1rem;
  font-style: italic;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: calc(12.5% + 1px);
  right: calc(12.5% + 1px);
  height: 1px;
  background: var(--divider);
}

.process-step {
  text-align: center;
  padding: 0 2rem;
}

.step-num {
  width: 44px;
  height: 44px;
  border: 1px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  background: var(--ink);
  position: relative;
  z-index: 1;
}

.step-num span {
  font-family: 'Cormorant SC', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--amber);
}

.step-title {
  font-family: 'Cormorant SC', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--bone-dim);
  line-height: 1.65;
}

/* ── About ── */
.about-section {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 3rem;
  font-family: 'Cormorant SC', serif;
  font-size: 20rem;
  color: rgba(196,137,58,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.about-layout {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}

.about-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 1px solid var(--divider);
  pointer-events: none;
}

.about-text blockquote {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--bone);
  line-height: 1.5;
  margin-bottom: 2rem;
  border-left: 2px solid var(--amber);
  padding-left: 1.8rem;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--bone-dim);
  margin-bottom: 1.2rem;
}

.about-location {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.8rem;
  border: 1px solid var(--divider);
  background: rgba(196,137,58,0.04);
}

.location-icon {
  flex-shrink: 0;
  line-height: 0;
}

.location-text strong {
  display: block;
  font-family: 'Cormorant SC', serif;
  font-size: 1.1rem;
  color: var(--bone);
  letter-spacing: 0.04em;
}

.location-text span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ── Field tips banner ── */
.banner-section {
  background: var(--amber);
  padding: 3.5rem 2rem;
}

.banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.banner-text h3 {
  font-family: 'Cormorant SC', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

.banner-text p {
  font-size: 1rem;
  color: rgba(13,11,9,0.65);
  font-style: italic;
}

.btn-dark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber-light);
  background: var(--ink);
  border: none;
  padding: 1rem 2.4rem;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}

.btn-dark:hover { background: #1e160c; }

/* ── Gallery ── */
.gallery-section {
  background: var(--surface);
  padding: 5rem 2rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 4px;
}

.gallery-cell {
  background: #1a1208;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* Trophy shot: shift focus down to the skull/plaque, drop the ceiling */
.gallery-cell:first-child img {
  object-position: center 72%;
}

.gallery-cell:hover img { transform: scale(1.04); }

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 1rem;
  background: linear-gradient(to top, rgba(13,11,9,0.85), transparent);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-cell:hover .gallery-label { opacity: 1; }

.gallery-cell:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-placeholder {
  text-align: center;
  padding: 2rem;
}

.gallery-placeholder .ph-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.8rem;
  opacity: 0.3;
}

.gallery-placeholder p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  opacity: 0.5;
}

/* ── Full Gallery (masonry page) ── */
.full-gallery-section {
  background: var(--surface);
  padding-top: 9rem;
  min-height: 100vh;
}

.full-gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.full-gallery-header .section-label { justify-content: center; }

.full-gallery-grid {
  column-count: 3;
  column-gap: 0.8rem;
}

.full-gallery-item {
  margin-bottom: 0.8rem;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  background: #1a1208;
  cursor: pointer;
}

.full-gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.full-gallery-item:hover img { transform: scale(1.04); }

.full-gallery-item .gallery-label { opacity: 0; }
.full-gallery-item:hover .gallery-label { opacity: 1; }

@media (max-width: 900px) {
  .full-gallery-grid { column-count: 2; }
}

@media (max-width: 560px) {
  .full-gallery-grid { column-count: 1; }
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(13,11,9,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 1px solid var(--divider);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone);
  background: transparent;
  border: 1px solid var(--divider);
  padding: 0.6rem 1.3rem;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}

.lightbox-close:hover {
  border-color: var(--amber);
  color: var(--amber-light);
}

.lightbox-caption {
  position: absolute;
  bottom: 1.8rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ── Contact ── */
.contact-section {
  background: var(--ink);
  padding: 7rem 2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-left h2 {
  font-family: 'Cormorant SC', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--bone);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.contact-left p {
  font-size: 1.1rem;
  color: var(--bone-dim);
  font-style: italic;
  margin-bottom: 2.5rem;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ci-icon {
  flex-shrink: 0;
  line-height: 0;
  margin-top: 0.15rem;
  margin-top: 0.1rem;
}

.ci-text strong {
  font-family: 'Cormorant SC', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--bone);
  letter-spacing: 0.04em;
  display: block;
}

.ci-text span,
.ci-text a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--bone-dim);
  text-decoration: none;
}

.ci-text a:hover { color: var(--amber-light); }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  text-decoration: none;
  border: 1px solid var(--divider);
  padding: 0.6rem 1.2rem;
  transition: color 0.25s, border-color 0.25s;
}

.social-link:hover {
  color: var(--amber-light);
  border-color: rgba(196,137,58,0.5);
}

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

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(226,213,188,0.12);
  color: var(--bone);
  font-family: 'Cormorant', serif;
  font-size: 1rem;
  padding: 0.85rem 1.1rem;
  outline: none;
  transition: border-color 0.25s;
  resize: vertical;
  -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(158,142,114,0.4);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--amber);
  background: rgba(196,137,58,0.05);
}

.form-field select option {
  background: var(--surface);
}

.form-note {
  font-size: 0.9rem;
  color: var(--bone-dim);
  font-style: italic;
  text-align: center;
}

/* ── Footer ── */
footer {
  background: var(--deep);
  border-top: 1px solid var(--divider);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Cormorant SC', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--bone);
}

.footer-brand span {
  color: var(--amber);
}

.footer-tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--bone-dim);
  margin-top: 0.2rem;
}

.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-dim);
  opacity: 0.4;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Mobile hero override ── */
@media (max-width: 768px) {
  .hero {
    /* Portrait image, no fixed attachment (broken on iOS Safari) */
    background-image: url('new saguaro skulls hero mobile.webp');
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .services-intro { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .process-steps::before { display: none; }
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-cell:first-child { grid-column: span 2; grid-row: span 1; }
  .contact-layout { grid-template-columns: minmax(0, 1fr); gap: 3rem; }
  .form-row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .services-stat-row { flex-wrap: wrap; gap: 1.5rem 2.5rem; justify-content: flex-start; }
  .stat-num { font-size: 2.1rem; white-space: normal; }
}
