:root {
  --app-vh: 1vh;
  --header-offset: 72px;
  --bg: #070f0b;
  --surface: #0f1b15;
  --surface-2: #14231b;
  --text: #e8f1ea;
  --muted: #a4b8ad;
  --brand: #2fb073;
  --brand-strong: #1f8d5a;
  --accent: #d6a24b;
  --line: #2a4335;
  --shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(0.95rem, 1.1vw + 0.6rem, 1.05rem);
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #f5f1e8;
  color: #081116;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

@media (max-width: 700px) {
  .container {
    width: min(1120px, 88vw);
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1120px, 86vw);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(7, 12, 16, 0.82);
  border-bottom: 1px solid rgba(39, 64, 79, 0.6);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #f5f1e8;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark {
  display: block;
  height: 36px;
  width: auto;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #14251c;
  color: var(--text);
  min-height: 44px;
  min-width: 44px;
  padding: 0 0.9rem;
  cursor: pointer;
  border-radius: 8px;
}

.services-head {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-bottom: 2rem;
}

.services-kicker {
  justify-content: flex-start;
  margin-bottom: 0.7rem;
}

.site-nav {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.site-nav a {
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-nav a.active,
.site-nav a:hover {
  color: #c5ffe2;
  background: #173227;
}

/* Login pill (unauthenticated) */
#nav-auth-link {
  background: var(--brand);
  color: #062113 !important;
  border-radius: 999px;
  padding: 0.32rem 0.95rem;
  font-weight: 700;
  transition: background 150ms;
}

#nav-auth-link:hover {
  background: #25c778;
  color: #062113 !important;
}

/* ── Auth dropdown (authenticated) ──────────────────────── */
.nav-auth-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(47,176,115,0.15);
  color: var(--brand);
  border: 1.5px solid rgba(47,176,115,0.35);
  border-radius: 999px;
  padding: 0.38rem 0.85rem 0.38rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 150ms, border-color 150ms, box-shadow 150ms;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-auth-btn:hover {
  background: rgba(47,176,115,0.25);
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(47,176,115,0.12);
}
.nav-auth-btn[aria-expanded="true"] {
  background: rgba(47,176,115,0.22);
  border-color: var(--brand);
}
.nav-auth-caret { transition: transform 200ms; flex-shrink: 0; }
.nav-auth-btn[aria-expanded="true"] .nav-auth-caret { transform: rotate(180deg); }

.nav-auth-dropdown {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 210px;
  background: rgba(10,20,26,0.97);
  border: 1px solid rgba(47,176,115,0.2);
  border-radius: 16px;
  padding: 0.55rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04) inset;
  display: none;
  flex-direction: column;
  gap: 0.1rem;
  z-index: 9999;
  backdrop-filter: blur(18px);
}
.nav-auth-dropdown.open { display: flex; }

.nav-auth-role-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 0.35rem 0.75rem 0.2rem;
  opacity: 0.75;
}

.nav-auth-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  text-align: left;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(200,230,215,0.9);
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 120ms, color 120ms;
}
a.nav-auth-item:hover,
button.nav-auth-item:hover {
  background: rgba(47,176,115,0.12);
  color: #fff;
}
.nav-auth-signout { color: rgba(255,140,130,0.85); }
.nav-auth-signout:hover { background: rgba(224,80,70,0.12) !important; color: #ffb3ae !important; }

.nav-auth-divider {
  height: 1px;
  background: rgba(47,176,115,0.15);
  margin: 0.3rem 0.5rem;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-primary {
  background: var(--brand);
  color: #062113;
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: #162734;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc((var(--app-vh) * 100) - var(--header-offset));
  padding: 6.4rem 0 5.2rem;
  background:
    linear-gradient(90deg, rgba(6, 10, 13, 0.94) 0%, rgba(6, 10, 13, 0.88) 34%, rgba(6, 10, 13, 0.54) 62%, rgba(6, 10, 13, 0.72) 100%),
    linear-gradient(180deg, rgba(6, 10, 13, 0.2), rgba(6, 10, 13, 0.28));
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(60vw, 1040px);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  isolation: isolate;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.22) 14%, rgba(0, 0, 0, 0.72) 34%, #000 56%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.22) 14%, rgba(0, 0, 0, 0.72) 34%, #000 56%, #000 100%);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 10, 13, 0.92) 0%, rgba(6, 10, 13, 0.78) 22%, rgba(6, 10, 13, 0.46) 44%, rgba(6, 10, 13, 0.18) 66%, rgba(6, 10, 13, 0.08) 100%),
    linear-gradient(180deg, rgba(6, 10, 13, 0.18), rgba(6, 10, 13, 0.3));
}

.hero-media::after {
  content: "";
  position: absolute;
  top: -8%;
  bottom: -8%;
  left: -20%;
  width: 44%;
  z-index: 2;
  background: radial-gradient(88% 78% at 100% 50%, rgba(6, 10, 13, 0.56) 0%, rgba(6, 10, 13, 0.4) 42%, rgba(6, 10, 13, 0.16) 74%, transparent 100%);
  filter: blur(18px);
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 14% 22%, rgba(214, 162, 75, 0.14), transparent 22%),
    radial-gradient(circle at 72% 18%, rgba(47, 176, 115, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(6, 10, 13, 0.08), rgba(6, 10, 13, 0.38));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 11rem;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 10, 13, 0), rgba(6, 10, 13, 0.2) 34%, rgba(6, 10, 13, 0.58) 72%, rgba(6, 10, 13, 0.9));
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: max(20rem, calc((var(--app-vh) * 100) - var(--header-offset) - 11.6rem));
  display: flex;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: #b7f6d7;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.kicker::before {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(47, 176, 115, 0.1), rgba(214, 162, 75, 0.95));
}

h1,
h2,
h3 {
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.65rem, 5.8vw, 4.6rem);
  max-width: none;
  margin: 0 0 1.1rem;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  margin: 0 0 0.7rem;
}

.lead {
  max-width: 40rem;
  margin: 0;
  color: #f4f7f3;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.3;
}

.hero-subcopy {
  max-width: 35rem;
  margin: 1rem 0 0;
  color: #9fb2b9;
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.5rem;
}

.hero .btn {
  padding: 0.95rem 1.45rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.hero .btn:hover {
  transform: translateY(-2px);
}

.hero-panel {
  background: linear-gradient(160deg, #132633, #0f1f29);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}


.detail-list {
  margin: 0;
  padding-left: 1.1rem;
}

.detail-list li {
  margin-bottom: 0.35rem;
}

/* === Services Marquee === */
.svc-stage {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 18px;
  margin-top: 2rem;
  margin-bottom: 3.5rem;
  min-height: 380px;
  border: 1px solid rgba(47, 176, 115, 0.22);
  background: linear-gradient(160deg, rgba(12, 22, 32, 0.99) 0%, rgba(6, 14, 20, 1) 100%);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.5), 0 24px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255,255,255,0.04);
}

.svc-marquee-outer {
  flex: 1;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.svc-marquee-wrap {
  flex: 1;
  min-width: 0;
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  display: flex;
  align-items: center;
}

.svc-marquee-wrap::-webkit-scrollbar {
  display: none;
}

.svc-marquee-wrap.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.svc-marquee-track {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.6rem 3.2rem 1.6rem 1.4rem;
  width: max-content;
}

.svc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(8, 16, 24, 0.9);
  border: 1px solid rgba(47, 176, 115, 0.45);
  color: #39e87e;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.svc-arrow:hover {
  background: rgba(47, 176, 115, 0.18);
  border-color: rgba(47, 176, 115, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.svc-arrow--prev { left: 0.7rem; }
.svc-arrow--next { right: 0.7rem; }

.svc-card {
  flex-shrink: 0;
  width: 300px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 30, 42, 0.95), rgba(10, 18, 28, 0.98));
  border: 1px solid rgba(61, 88, 102, 0.45);
  cursor: pointer;
  text-align: left;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  padding: 0;
  color: inherit;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.svc-card:hover,
.svc-card.is-active {
  border-color: rgba(47, 176, 115, 0.85);
  box-shadow: 0 0 0 1px rgba(47, 176, 115, 0.25), 0 8px 32px rgba(47, 176, 115, 0.22);
  transform: translateY(-5px);
}

.svc-card-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.svc-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(6,14,20,0.72) 100%);
  pointer-events: none;
}

.svc-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 320ms ease;
}

.svc-card:hover .svc-card-media img,
.svc-card.is-active .svc-card-media img {
  transform: scale(1.1);
}

.svc-card-foot {
  padding: 0.75rem 0.9rem 0.8rem;
  border-top: 1px solid rgba(47, 176, 115, 0.15);
  background: linear-gradient(to bottom, rgba(18,30,42,0), rgba(10,18,28,0.6));
}

.svc-card-title {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #39e87e;
  text-decoration: underline;
  text-decoration-color: rgba(57, 232, 126, 0.5);
  text-underline-offset: 4px;
  line-height: 1.3;
}

.svc-card-label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.3rem;
  font-size: 0.75rem;
  color: #6e96a8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.svc-card-label::after {
  content: "›";
  font-size: 0.9rem;
  line-height: 1;
  color: #39e87e;
}

/* Detail panel — always visible, auto-updates with marquee */
.svc-detail-panel {
  flex-shrink: 0;
  width: 380px;
  min-width: 380px;
  height: 380px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(10, 20, 30, 0.99), rgba(6, 14, 20, 1));
  border-left: 1px solid rgba(47, 176, 115, 0.22);
  display: flex;
  flex-direction: column;
}

.svc-detail-inner {
  padding: 1.8rem 2rem;
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
}

.svc-detail-title {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #39e87e;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: underline;
  text-decoration-color: rgba(57, 232, 126, 0.4);
  text-underline-offset: 5px;
  margin: 0 0 1.1rem;
}

.svc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.svc-list li {
  position: relative;
  padding-left: 1.1rem;
  color: #c0d4dd;
  line-height: 1.55;
  font-size: 0.9rem;
}

.svc-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #8fdbb2;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 1rem;
}

.stat {
  background: #0d1820;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem;
}

.stat strong {
  display: block;
  color: #8fe7be;
  font-size: 1.2rem;
}

.section {
  padding: 3rem 0;
}

.cover-showcase {
  overflow: hidden;
  padding-top: 4rem;
}

.cover-showcase-head {
  margin-bottom: 1.2rem;
}

.cover-kicker {
  justify-content: center;
  width: 100%;
  margin-bottom: 0;
  font-size: 0.96rem;
  letter-spacing: 0.16em;
}

.cover-kicker::before,
.cover-kicker::after {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(47, 176, 115, 0.1), rgba(214, 162, 75, 0.95));
}

.cover-card-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.cover-card-track {
  --cover-gap: 1.6rem;
  display: flex;
  width: max-content;
  will-change: transform;
  animation: cover-card-scroll 38s linear infinite;
}

.cover-card-marquee:hover .cover-card-track {
  animation-play-state: paused;
}

.cover-card-set {
  display: flex;
  gap: var(--cover-gap);
  padding-right: var(--cover-gap);
}

.cover-slide {
  flex: 0 0 clamp(270px, 26vw, 440px);
  min-width: 0;
}

.cover-media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #10161b;
  border-radius: 4px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.28);
}

.cover-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 240ms ease, filter 240ms ease;
}

.cover-slide:hover .cover-media img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.cover-slide h3 {
  margin: 0.85rem 0 0;
  text-align: center;
  color: var(--brand);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

@keyframes cover-card-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(165deg, #121d26, #0e171f);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
}

/* ── Scroll-pin wrapper ──────────────────────────────────── */
.pin-wrap {
  /* JS sets --pin-height via inline style; fallback keeps layout sane */
  height: var(--pin-height, auto);
  position: relative;
}

.pin-wrap .services-showcase {
  /* Will be switched to position:sticky by JS once height is known */
  position: sticky;
  top: var(--header-offset, 72px);
}

/* Cards start invisible — JS drives position directly each frame (desktop) */
.pin-card {
  opacity: 0;
  transform: translateY(180px);
  will-change: transform, opacity;
}
.pin-card.pin-card--visible {
  /* no transition — JS sets inline style each rAF */
}

/* Note fades in after all cards */
.pin-note {
  opacity: 0;
  transition: opacity 0.5s ease 0.2s;
}
.pin-note.pin-card--visible {
  opacity: 1;
}

@keyframes mobile-arc-in-left {
  from { opacity: 0; transform: translateX(-55px) translateY(60px) rotate(-6deg); }
  to   { opacity: 1; transform: translateX(0) translateY(0) rotate(0deg); }
}
@keyframes mobile-arc-in-right {
  from { opacity: 0; transform: translateX(55px) translateY(60px) rotate(6deg); }
  to   { opacity: 1; transform: translateX(0) translateY(0) rotate(0deg); }
}

.services-showcase {
  position: relative;
  padding-top: 5.75rem;
  margin-bottom: 4rem;
}

.services-showcase::before {
  display: none;
}

.services-kicker::after {
  display: none;
}

.services-title {
  margin: 0 0 0.6rem;
  font-family: "Anton", "Sora", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #f5f1e8;
}

.services-intro {
  margin: 0;
  max-width: 38rem;
  color: #9cb2bb;
  font-size: 1.02rem;
  line-height: 1.75;
}

.service-rows {
  display: grid;
  gap: 1rem;
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1.25fr) minmax(220px, 0.75fr);
  gap: 1.4rem;
  align-items: start;
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(39, 64, 79, 0.92);
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(17, 26, 33, 0.98), rgba(10, 16, 21, 0.98));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(214, 162, 75, 0.95), rgba(47, 176, 115, 0.55), transparent 72%);
}

.service-row:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 176, 115, 0.34);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.28);
}

.service-row--cta {
  background: linear-gradient(160deg, rgba(18, 45, 32, 0.94), rgba(12, 30, 38, 0.98));
}

.service-main {
  min-width: 0;
}

.service-side {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 100%;
}

.service-index {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: #86d9ad;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-top: 0.35rem;
}

.service-title {
  display: block;
  margin-bottom: 0.5rem;
  color: #f6f3ee;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

  .service-panel {
    position: relative;
  }

  .service-panel-header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(92, 136, 113, 0.42);
  }

  .service-panel-copy {
    max-width: 42rem;
  }

  .service-panel-kicker {
    margin: 0 0 0.5rem;
    color: #9ae8bd;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .service-panel-copy h3 {
    margin: 0;
    color: #fff7ef;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    line-height: 1.2;
  }

  .service-panel-copy p {
    margin: 0.8rem 0 0;
    color: #c7d6ce;
    font-size: 1rem;
    line-height: 1.75;
  }

  .service-panel-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.08rem;
  }

  .service-group {
    --svc-accent: #79dca9;
    position: relative;
    overflow: hidden;
    padding: 1.2rem 1.2rem 1.25rem;
    border: 1px solid rgba(113, 171, 137, 0.58);
    border-radius: 20px;
    background:
      linear-gradient(160deg, #202724 0%, #181e1c 62%, #131816 100%),
      linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 30px rgba(0, 0, 0, 0.36);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .service-group::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(219, 255, 237, 0.9) 0%, var(--svc-accent) 56%, transparent 100%);
  }

  .service-group:hover {
    transform: translateY(-2px);
    border-color: rgba(130, 205, 161, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 34px rgba(0, 0, 0, 0.42);
  }

  .service-group-index {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--svc-accent);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .service-group h4 {
    margin: 0 0 0.8rem;
    color: #f3f7f2;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .service-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
  }

  .service-checklist li {
    position: relative;
    padding-left: 1.6rem;
    color: #dce8e1;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .service-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.02rem;
    color: var(--svc-accent);
    font-weight: 700;
  }

  .service-panel-note {
    position: relative;
    z-index: 1;
    margin: 1.25rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(96, 119, 131, 0.26);
    color: #b3c4ca;
    font-size: 0.92rem;
    line-height: 1.65;
  }
.service-copy {
  margin: 0;
  color: #a8bbc2;
  font-size: 1rem;
  line-height: 1.7;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-start;
}

.service-tags span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 162, 75, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: #d6e2e6;
  font-size: 0.84rem;
  font-weight: 500;
}

.service-link {
  margin-top: 0;
  border-color: rgba(104, 176, 136, 0.45);
  background: linear-gradient(150deg, rgba(25, 63, 42, 0.95), rgba(19, 46, 31, 0.95));
  color: #effaf3;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(138, 220, 173, 0.2);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-link:hover {
  transform: translateY(-1px);
  border-color: rgba(146, 225, 184, 0.78);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.36), inset 0 0 0 1px rgba(172, 238, 204, 0.3);
}

.services-hero {
  position: relative;
  min-height: 33rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(47, 176, 115, 0.2);
  background:
    radial-gradient(120% 95% at 95% 0%, rgba(47, 176, 115, 0.1), transparent 54%),
    linear-gradient(145deg, #050d09, #0a1510 56%, #07120d);
}

.services-hero-layout {
  position: relative;
  z-index: 2;
}

.services-hero-copy {
  max-width: 43rem;
}

.services-hero-copy .kicker,
.services-hero-copy h1,
.services-hero-copy .lead {
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.58), 0 2px 6px rgba(0, 0, 0, 0.6);
}

.services-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(59vw, 980px);
  overflow: hidden;
  pointer-events: none;
  isolation: isolate;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 14%, rgba(0, 0, 0, 0.72) 34%, #000 56%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 14%, rgba(0, 0, 0, 0.72) 34%, #000 56%, #000 100%);
}

.services-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 11, 15, 0.95) 0%, rgba(5, 11, 15, 0.82) 18%, rgba(5, 11, 15, 0.52) 42%, rgba(5, 11, 15, 0.2) 64%, rgba(5, 11, 15, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 11, 15, 0.24), rgba(5, 11, 15, 0.32));
}

.services-hero-media::after {
  content: "";
  position: absolute;
  top: -8%;
  bottom: -8%;
  left: -22%;
  width: 46%;
  z-index: 2;
  background: radial-gradient(88% 78% at 100% 50%, rgba(5, 11, 15, 0.58) 0%, rgba(5, 11, 15, 0.42) 42%, rgba(5, 11, 15, 0.18) 72%, transparent 100%);
  filter: blur(18px);
}

.services-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.services-hero .lead {
  max-width: 40rem;
}

.services-tile-section {
  padding-top: 3rem;
}

.services-tile-title {
  margin: 0 0 1.15rem;
  font-family: "Anton", "Sora", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f5f1e8;
}

.services-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-tile {
  position: relative;
  min-height: 13.5rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(47, 176, 115, 0.25);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 9, 13, 0.08), rgba(4, 9, 13, 0.84));
}

.service-tile span {
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.85rem;
  z-index: 1;
  color: #f3fbf7;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.service-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 176, 115, 0.58);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.45);
}

.services-slider-band {
  border-top: 1px solid rgba(47, 176, 115, 0.2);
  border-bottom: 1px solid rgba(47, 176, 115, 0.2);
  padding: 1.1rem 0;
  margin-top: 2rem;
}

.services-slider-track {
  width: min(1360px, 96vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  padding: 0 0.2rem 0.25rem;
}

.services-slider-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  white-space: nowrap;
  border-radius: 14px;
  border: 1px solid rgba(47, 176, 115, 0.28);
  background: linear-gradient(160deg, rgba(16, 28, 37, 0.98), rgba(11, 18, 24, 0.98));
  color: #d9f9e9;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.services-slider-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 176, 115, 0.65);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

/* ── Service Detail Pages ──────────────────────────────── */
.svc-page-hero {
  background: linear-gradient(160deg, #091508 0%, #060e07 55%, #040c06 100%);
  border-bottom: 1px solid rgba(47, 176, 115, 0.18);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.svc-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 90% 50%, rgba(47, 176, 115, 0.06), transparent 70%);
  pointer-events: none;
}

.svc-page-hero .kicker {
  margin-bottom: 0.6rem;
}

.svc-back-btn {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 180ms, gap 180ms;
}

.svc-back-btn:hover {
  color: var(--brand);
  gap: 0.6rem;
}

.svc-back-btn svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 180ms;
}

.svc-back-btn:hover svg {
  transform: translateX(-3px);
}

.svc-page-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  margin: 0 0 1.1rem;
  color: var(--text);
}

.svc-page-hero .lead {
  max-width: 54rem;
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.65;
}

.svc-page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  padding-top: 4rem;
  padding-bottom: 6rem;
  align-items: start;
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.svc-section-heading {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 1rem;
}

.svc-descriptor {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 1.8rem;
  max-width: 58rem;
}
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 1.6rem;
}

.svc-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-check-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(47, 176, 115, 0.1);
}

.svc-check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(47, 176, 115, 0.12);
  border: 1px solid rgba(47, 176, 115, 0.38);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%232fb073' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.svc-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.6;
  margin-top: 0.5rem;
}

.svc-cta-col {
  position: sticky;
  top: calc(var(--header-offset) + 2rem);
}

.svc-cta-card {
  background: linear-gradient(160deg, #0d1f14 0%, #091410 100%);
  border: 1px solid rgba(47, 176, 115, 0.32);
  border-radius: 22px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.svc-cta-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

.svc-cta-card h3 {
  font-size: 1.3rem;
  line-height: 1.3;
  margin: 0;
  color: var(--text);
}

.svc-cta-card > p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.svc-cta-divider {
  border: none;
  border-top: 1px solid rgba(47, 176, 115, 0.15);
  margin: 0;
}

.svc-cta-card .btn {
  width: 100%;
  text-align: center;
}

/* legacy — keep for any other references */
.service-detail-hero { padding-top: 1.6rem; }
.service-detail-hero .lead { max-width: 48rem; }
.service-detail-card { display: none; }
.service-detail-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.1rem; }

.about-showcase {
  position: relative;
  min-height: 35rem;
  padding-block: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(110% 90% at 8% 10%, rgba(214, 162, 75, 0.1), transparent 54%),
    #06110f;
}

.about-showcase-layout {
  width: min(1120px, 92vw);
  margin: 0 auto;
  min-height: 35rem;
  position: static;
  z-index: 2;
  display: flex;
  align-items: center;
}

.about-showcase-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(57vw, 980px);
  border-radius: 0;
  overflow: hidden;
  border: none;
  background: #08130f;
  box-shadow: none;
  min-height: 0;
  isolation: isolate;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.24) 16%, rgba(0, 0, 0, 0.76) 38%, #000 60%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.24) 16%, rgba(0, 0, 0, 0.76) 38%, #000 60%, #000 100%);
}

.about-showcase-media::before {
  content: "";
  position: absolute;
  top: -8%;
  bottom: -8%;
  left: -20%;
  width: 45%;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(88% 80% at 100% 50%, rgba(6, 17, 15, 0.54) 0%, rgba(6, 17, 15, 0.4) 40%, rgba(6, 17, 15, 0.15) 72%, transparent 100%);
  filter: blur(18px);
}

.about-showcase-video,
.about-showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.about-flow {
  position: relative;
  z-index: 2;
  width: min(46%, 42rem);
  padding-block: 4.5rem;
}

.about-flow h2 {
  margin: 0 0 1.1rem;
  font-family: "Anton", "Sora", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #f5f1e8;
}

.about-flow p {
  margin: 0;
  max-width: 35rem;
  color: #9cb2bb;
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-flow p + p {
  margin-top: 1.35rem;
}

.cta-band {
  background: linear-gradient(145deg, #113723, #102f3f);
  color: #e4fff1;
  border-radius: 18px;
  padding: 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

/* ===== GALLERY PAGE ===== */
#main {
  background: #04080c;
}

.state-section {
  padding: 3.5rem 5vw 4rem;
}

.state-section + .state-section {
  border-top: 2px solid #0f3d2a;
}

/* Decorative heading row */
.state-banner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}

.state-rule {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #22c06f 50%, transparent);
  opacity: 0.55;
}

.state-heading {
  flex-shrink: 0;
  margin: 0;
  font-family: "Anton", "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #22c06f;
  text-shadow: 0 0 28px rgba(34, 192, 111, 0.35);
}

/* Logo flex grid — no empty cells ever */
.logo-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.logo-card {
  flex: 0 0 calc(20% - 0.85rem);
  min-width: 160px;
  max-width: 220px;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #e8e4da, #d9d2c4);
  border-radius: 16px;
  border: 1px solid rgba(62, 154, 102, 0.28);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 251, 242, 0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

/* subtle top-edge green shimmer */
.logo-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 192, 111, 0.6), transparent);
  opacity: 0;
  transition: opacity 200ms ease;
}

.logo-card:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: rgba(34, 192, 111, 0.65);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 14px rgba(34, 192, 111, 0.16), inset 0 1px 0 rgba(255, 251, 242, 0.78);
}

.logo-card:hover::before {
  opacity: 1;
}

.logo-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(10, 22, 32, 0.4)) drop-shadow(0 6px 12px rgba(10, 22, 32, 0.22));
}

/* Arizona photo grid */
.az-section {
  background: #050d10;
}

.az-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.az-photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(34, 192, 111, 0.15);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.az-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(34, 192, 111, 0.4);
}

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

.form-wrap {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(160deg, #121f2a, #101a23);
  padding: 1rem;
}

label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #2b4657;
  border-radius: 10px;
  padding: 0.65rem;
  margin-bottom: 0.85rem;
  background: #0d171f;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.small {
  color: var(--muted);
  font-size: 0.9rem;
}

.error {
  color: #8b1f1f;
  font-size: 0.88rem;
  margin-top: -0.4rem;
  margin-bottom: 0.8rem;
}

.hidden {
  display: none !important;
}

.site-footer {
  border-top: 1px solid rgba(58, 84, 98, 0.55);
  margin-top: 3.2rem;
  padding: 1.8rem 0 0;
  background: linear-gradient(180deg, rgba(11, 17, 23, 0), rgba(11, 17, 23, 0.65) 30%, rgba(11, 17, 23, 0.88));
  color: var(--muted);
}

.logo-wall {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(160deg, #0f1a22, #0d161d);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.7rem;
}

.logo-slot {
  min-height: 76px;
  border-radius: 12px;
  border: 1px dashed #335162;
  background: rgba(17, 33, 43, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #9db3bd;
  font-size: 0.82rem;
  padding: 0.4rem;
}

.logo-slot img {
  width: 100%;
  max-width: 120px;
  max-height: 44px;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 1rem;
}

.footer-col {
  display: grid;
  gap: 0.3rem;
}

.footer-col--left {
  justify-self: start;
  text-align: left;
}

.footer-col--center {
  justify-self: center;
  text-align: center;
}

.footer-col--right {
  justify-self: end;
  text-align: right;
}

  font-size: 0.75rem;
  font-weight: 700;
}

.footer-brand {
  margin: 0;
  color: #f5f1e8;
  font-family: "Anton", "Sora", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-mini {
  margin: 0;
  color: #8ea6af;
  font-size: 0.85rem;
}

.footer-links,
.footer-social {
  margin: 0;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social {
  margin-top: 0.3rem;
}

.footer-links a,
.footer-social a {
  color: #cdd9de;
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #b7f6d7;
}

.footer-links span,
.footer-social span {
  color: #577182;
}

.footer-logo-img {
  height: 200px;
  width: auto;
  display: block;
  margin: 0 auto 0.5rem;
  filter: brightness(0.9);
}

.footer-credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  width: 100%;
  text-align: center;
}

.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

/* Dot separator between the two items on desktop */
.footer-powered::after {
  content: '·';
  margin-left: 0.5rem;
  color: #2a4335;
}

@media (max-width: 700px) {
  .footer-credit {
    flex-direction: column;
    gap: 0.3rem;
  }
  /* Powered by first on mobile */
  .footer-powered { order: 1; }
  .footer-copyright { order: 2; }
  .footer-powered::after { display: none; }
}

.footer-credit-text {
  display: inline;
  font-size: 0.75rem;
  color: #4a6258;
  letter-spacing: 0.03em;
  font-weight: 400;
}

.footer-credit a {
  display: inline;
}

.footer-credit-logo {
  display: inline;
  height: 40px;
  width: auto;
  opacity: 0.6;
  transition: opacity 180ms ease;
  vertical-align: middle;
}

.footer-credit a:hover .footer-credit-logo {
  opacity: 0.9;
}

/* ── Focus Visible ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Quote CTA Form ────────────────────────────────────────── */
.quote-cta-section {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, rgba(15,27,21,0) 0%, rgba(15,27,21,0.7) 100%);
  border-top: 1px solid var(--line);
  text-align: center;
}

.quote-cta-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.quote-cta-section h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.quote-cta-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1.2rem;
}

.quote-cta-input {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15,27,21,0.8);
  color: var(--text);
  font-size: 0.95rem;
  min-height: 44px;
}

.quote-cta-input::placeholder { color: var(--muted); }
.quote-cta-input:focus { border-color: var(--brand); outline: none; }

.quote-cta-btn { white-space: nowrap; flex-shrink: 0; }

@media (max-width: 480px) {
  .quote-cta-form { flex-direction: column; }
  .quote-cta-btn { width: 100%; text-align: center; }

  /* Header */
  .nav-wrap { min-height: 58px; }
  .brand span { font-size: 0.92rem; }
  .brand-mark { height: 28px; }

  /* Hero */
  .hero { padding: 3.2rem 0 2.2rem; }
  .hero-shell { min-height: 22rem; }

  /* Sections */
  .section { padding: 1.8rem 0; }
  .quote-cta-section { padding: 1.8rem 0; }

  .footer-credit-text { font-size: 0.78rem; }

  /* Buttons full-width in hero */
  .hero-actions { gap: 0.6rem; }
  .hero .btn { padding: 0.7rem 1rem; font-size: 0.9rem; }
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section {
  padding: 5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2.4rem;
}

.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem;
  margin: 0;
}

.testimonial-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 1.2rem;
}

.testimonial-attribution {
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
  font-style: normal;
  color: var(--muted);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Reveal variants ─────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

/* ── Stagger children ────────────────────────────────────── */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(55px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-stagger].is-visible > * { opacity: 1; transform: translateY(0) scale(1); }
[data-stagger].is-visible > *:nth-child(1)  { transition-delay: 0ms; }
[data-stagger].is-visible > *:nth-child(2)  { transition-delay: 150ms; }
[data-stagger].is-visible > *:nth-child(3)  { transition-delay: 300ms; }
[data-stagger].is-visible > *:nth-child(4)  { transition-delay: 450ms; }
[data-stagger].is-visible > *:nth-child(5)  { transition-delay: 600ms; }
[data-stagger].is-visible > *:nth-child(6)  { transition-delay: 750ms; }
[data-stagger].is-visible > *:nth-child(n+7){ transition-delay: 900ms; }

/* ── Kicker line draw ────────────────────────────────────── */
.kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.is-visible .kicker::before,
.kicker.is-visible::before {
  width: 36px;
}

/* ── Hero title word-by-word fade ─────────────────────────── */
@keyframes heroWordIn {
  from { opacity: 0; transform: translateY(30px) skewY(3deg); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0) skewY(0); filter: blur(0); }
}
.hero-title-word {
  display: inline-block;
  opacity: 0;
  animation: heroWordIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ── Checklist item stagger ──────────────────────────────── */
.svc-check-list li {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-check-list.is-visible li { opacity: 1; transform: translateX(0); }
.svc-check-list.is-visible li:nth-child(1)  { transition-delay: 0ms; }
.svc-check-list.is-visible li:nth-child(2)  { transition-delay: 90ms; }
.svc-check-list.is-visible li:nth-child(3)  { transition-delay: 180ms; }
.svc-check-list.is-visible li:nth-child(4)  { transition-delay: 270ms; }
.svc-check-list.is-visible li:nth-child(5)  { transition-delay: 360ms; }
.svc-check-list.is-visible li:nth-child(6)  { transition-delay: 450ms; }
.svc-check-list.is-visible li:nth-child(7)  { transition-delay: 540ms; }
.svc-check-list.is-visible li:nth-child(8)  { transition-delay: 630ms; }
.svc-check-list.is-visible li:nth-child(n+9){ transition-delay: 720ms; }

/* ── Card green glow on hover (enhanced) ─────────────────── */
.service-group {
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.service-group:hover {
  border-color: rgba(47, 176, 115, 0.7);
  box-shadow: 0 0 0 1px rgba(47, 176, 115, 0.25), 0 18px 48px rgba(0, 0, 0, 0.45);
  transform: translateY(-7px) scale(1.015);
}

/* ── CTA card entrance pulse ──────────────────────────────── */
@keyframes ctaBorderPulse {
  0%   { box-shadow: 0 0 0 0 rgba(47, 176, 115, 0.55); }
  60%  { box-shadow: 0 0 0 18px rgba(47, 176, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 176, 115, 0); }
}
.svc-cta-card.is-visible {
  animation: ctaBorderPulse 1.8s ease 0.5s 1;
}

/* ── Svc descriptor fade up ──────────────────────────────── */
.svc-descriptor {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.svc-page-layout.is-visible .svc-descriptor {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero media parallax layer ───────────────────────────── */
.hero-media { will-change: transform; }

/* ── Typewriter cursor ───────────────────────────────────── */
#hero-typewriter::after {
  content: "|";
  display: inline-block;
  color: var(--brand);
  font-weight: 300;
  margin-left: 2px;
  animation: cursorBlink 0.7s step-end infinite;
}
#hero-typewriter.done::after {
  display: none;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Page-load fade in body ──────────────────────────────── */
@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageIn 0.4s ease both; }

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .cover-card-track {
    --cover-gap: 1.2rem;
  }

  .services-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .services-showcase {
    padding-top: 5rem;
  }

  .services-hero {
    min-height: 30rem;
  }

  .services-hero-media {
    width: min(62vw, 760px);
  }

  .services-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-showcase {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding-block: 3.5rem;
  }

  .about-showcase-layout {
    width: min(1120px, 94vw);
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .about-showcase-media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    border-radius: 16px;
    -webkit-mask-image: none;
    mask-image: none;
    min-height: 0;
    max-height: 24rem;
    aspect-ratio: 16 / 10;
  }

  .about-showcase-media::before {
    display: none;
  }

  .about-flow {
    width: 100%;
    padding-block: 0;
  }

  .service-panel-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero {
    padding: 5rem 0 3.6rem;
  }

  .hero-media {
    width: min(64vw, 760px);
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    font-size: clamp(2.6rem, 6vw, 3.8rem);
    white-space: normal;
  }

  .logo-card {
    flex: 0 0 calc(33.333% - 0.85rem);
  }

  .az-photo-grid {
    gap: 0.9rem;
  }
}

@media (max-width: 700px) {
  .menu-btn {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 62px;
    right: 4vw;
    background: #0f1a22;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.5rem;
    flex-direction: column;
    align-items: stretch;
    min-width: 190px;
    box-shadow: var(--shadow);
  }

  .site-nav.hidden-mobile {
    display: none;
  }

  .site-nav a {
    padding: 0.75rem 1rem;
    min-height: 44px;
    border-radius: 8px;
  }

  .site-nav a.active,
  .site-nav a:hover {
    background: #173227;
  }

  .hero-grid,
  .split,
  .grid-3,
  .stats,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .svc-arrow {
    display: none;
  }

  .svc-stage {
    flex-direction: column;
    min-height: 0;
  }

  .svc-detail-panel {
    width: 100%;
    height: auto;
    min-height: 0;
    border-left: none;
    border-top: 1px solid rgba(47, 176, 115, 0.22);
  }

  .hero {
    padding: 4.1rem 0 2.8rem;
  }

  .hero-media {
    width: min(74vw, 520px);
  }

  .cover-showcase {
    padding-top: 3rem;
  }

  .services-head {
    margin-bottom: 1.2rem;
  }

  .services-showcase {
    padding-top: 5rem;
  }

  .services-hero {
    min-height: 24rem;
    padding: 3.4rem 0 2.3rem;
  }

  .services-hero-media {
    width: min(72vw, 510px);
  }

  .services-hero-copy {
    max-width: 100%;
  }

  .services-hero .kicker {
    margin-bottom: 0.85rem;
  }

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

  .services-hero .lead {
    font-size: clamp(1.1rem, 5vw, 1.35rem);
    line-height: 1.45;
  }

  .about-showcase {
    padding-block: 4rem;
  }

  .about-showcase-layout {
    width: min(1120px, 92vw);
  }

  .about-showcase-media {
    border-radius: 14px;
    max-height: 19rem;
    aspect-ratio: 16 / 11;
  }

  .services-slider-track {
    grid-auto-columns: minmax(220px, 78vw);
  }

  .about-flow p {
    font-size: 1.02rem;
    line-height: 1.6;
  }

  .services-title {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .services-intro {
    font-size: 0.95rem;
  }

  .cover-kicker {
    justify-content: flex-start;
  }

  .cover-kicker::after {
    display: none;
  }

  .cover-slide {
    flex-basis: clamp(250px, 72vw, 330px);
  }

  .cover-slide h3 {
    font-size: clamp(0.95rem, 4.2vw, 1.2rem);
  }

  .service-panel {
    padding: 1.3rem;
    border-radius: 22px;
  }

  .service-group {
    padding: 1rem;
    border-radius: 16px;
  }

  .service-link {
    width: 100%;
    justify-content: center;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
    white-space: normal;
  }

  .lead {
    font-size: 1.24rem;
  }

  .hero-subcopy {
    font-size: 0.96rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .btn {
    text-align: center;
  }

  .hero-shell {
    min-height: 30rem;
  }

  .logo-card {
    flex: 0 0 calc(50% - 0.55rem);
    min-width: 0;
  }

  .az-photo-grid {
    grid-template-columns: 1fr;
  }

  .state-section {
    padding: 2.5rem 4vw 3rem;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .footer-col--left,
  .footer-col--center,
  .footer-col--right {
    justify-self: center;
    text-align: center;
  }

  .footer-links,
  .footer-social {
    justify-content: center;
  }

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

  /* Section padding */
  .section { padding: 2.2rem 0; }
  .quote-cta-section { padding: 2.2rem 0; }

  /* Footer bottom credit — allow wrap on narrow phones */
  .footer-credit { flex-wrap: wrap; justify-content: center; }

  /* Prevent long email address from blowing layout */
  .footer-links a { overflow-wrap: break-word; word-break: break-all; }

  /* Legal / text pages */
  h2 { font-size: clamp(1.1rem, 5vw, 1.5rem); }
  h3 { font-size: clamp(1rem, 4vw, 1.25rem); }

  /* Gallery state sections */
  .state-section { padding: 2.5rem 4vw 3rem; }

  /* Card padding */
  .card { padding: 1.4rem 1rem; }

  /* Service detail pages — stack to 1 column on mobile */
  .svc-page-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2.2rem;
    padding-bottom: 3rem;
    width: 92vw;
    margin: 0 auto;
  }

  .svc-cta-col {
    position: static;
  }

  .svc-cta-card {
    padding: 1.4rem;
  }

  /* Service row — prevent middle column crushing on phones */
  .service-row {
    grid-template-columns: 48px 1fr;
    gap: 0.85rem 1rem;
  }

  /* Service side — full-width on its own row when sidebar drops */
  .service-side {
    display: none;
  }

  /* Pin cards — arc-in CSS animation on mobile */
  .pin-card {
    opacity: 0;
    transition: none !important;
  }
  .pin-card.arc-in {
    animation: mobile-arc-in-left 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .pin-card:nth-child(2n).arc-in {
    animation-name: mobile-arc-in-right;
  }

  /* Pin note always visible on mobile */
  .pin-note {
    opacity: 1 !important;
    transition: none !important;
  }
}

/* ── Floating Get a Quote CTA ────────────────────────────── */
.quote-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  background: var(--brand);
  color: #062113;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(47,176,115,0.45), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 200ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 200ms, background 150ms;
}
.quote-fab:hover {
  background: #3ecf88;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(47,176,115,0.6), 0 2px 8px rgba(0,0,0,0.3);
}
.quote-fab-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 2px solid var(--brand);
  opacity: 0;
  pointer-events: none;
  animation: fab-pulse 3s ease-out infinite;
}
@keyframes fab-pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0; }
}
@media (max-width: 700px) {
  /* Hero already has a prominent Get a Quote button — FAB just clutters mobile */
  .quote-fab { display: none; }
}

/* ══════════════════════════════════════════════════════════
   HOME PAGE — MOBILE REDESIGN PASS
   700px = phone  |  480px = small phone  |  380px = tiny
   ══════════════════════════════════════════════════════════ */

/* ── 1. Hero ─────────────────────────────────────────────── */
@media (max-width: 700px) {
  /* Full viewport height — content block centered in the frame */
  .hero {
    min-height: 100dvh;
    min-height: calc(var(--app-vh, 1vh) * 100);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: none;
  }

  /* Restore video — full-bleed cover on mobile */
  .hero-media {
    display: block;
    width: 100%;
    left: 0;
    right: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-media::before {
    background:
      linear-gradient(180deg,
        rgba(6,10,13,0.25) 0%,
        rgba(6,10,13,0.45) 35%,
        rgba(6,10,13,0.82) 62%,
        rgba(6,10,13,0.97) 85%,
        rgba(6,10,13,1)    100%
      );
  }
  .hero-media::after { display: none; }
  .hero-video { object-position: center center; }

  .hero-shell {
    position: relative;
    z-index: 1;
    min-height: 0;
    width: 88vw;
    padding: 0;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero-copy .kicker {
    margin-bottom: 2rem;
    font-size: 0.68rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 9.5vw, 2.9rem) !important;
    line-height: 1.1;
    margin-bottom: 1.1rem;
    white-space: normal;
  }

  .hero-copy .lead {
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 0;
    opacity: 0.88;
  }

  .hero-subcopy { display: none; }

  .hero-actions {
    margin-top: 2.25rem;
    gap: 0.75rem;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    padding: 1rem 1.4rem;
    font-size: 1rem;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-copy h1 { font-size: clamp(2rem, 9vw, 2.5rem) !important; }
  .hero-video { object-position: center center; }
}

/* ── 2. Cover showcase ───────────────────────────────────── */
@media (max-width: 700px) {
  .cover-showcase { padding-top: 2.2rem; padding-bottom: 0.5rem; }
  .cover-showcase-head { margin-bottom: 0.75rem; }
}

/* ── 3. Services section ─────────────────────────────────── */
@media (max-width: 700px) {
  /* Kill the JS scroll-pin height and sticky behaviour entirely on mobile */
  #services-pin-wrap { height: auto !important; }
  .services-showcase {
    position: static !important;
    padding-top: 2.8rem;
    padding-bottom: 4rem;
    position: relative !important;
  }
  #services-pin-wrap::after {
    content: '';
    display: block;
    height: 4rem;
    background: linear-gradient(to bottom, transparent, #070f0b);
    margin-top: -4rem;
    position: relative;
    z-index: 2;
    pointer-events: none;
  }

  .services-title { font-size: clamp(1.7rem, 8vw, 2.2rem) !important; }
  .services-intro { font-size: 0.9rem; }
  .services-head { margin-bottom: 1.2rem; }

  /* 2×2 card grid — much better than 4 stacked cards */

  .service-panel {
    padding: 0.75rem 0;
    border-radius: 18px;
    background: none;
    border: none;
    box-shadow: none;
    /* Equal negative margins on both sides — symmetric bleed past container */
    width: auto;
    margin-left: -4vw;
    margin-right: -4vw;
  }
  .service-panel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .service-group {
    padding: 1.1rem 1rem;
    border-radius: 14px;
  }
  .service-group-index {
    font-size: 0.65rem;
    margin-bottom: 0.35rem;
  }
  .service-group h4 {
    font-size: 0.95rem;
    margin: 0.2rem 0 0.65rem;
    line-height: 1.25;
    color: var(--accent);
  }
  .service-checklist li {
    font-size: 0.8rem;
    line-height: 1.55;
    padding-left: 1.25rem;
  }
  .service-panel-note {
    font-size: 0.75rem;
    padding: 0.75rem 0.25rem;
  }
  /* Button centered, gold accent color */
  .service-link {
    width: auto;
    padding: 0.75rem 1.75rem;
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent);
  }
}

/* Collapse to 1-col only on very small phones */
@media (max-width: 360px) {
  .service-panel-grid { grid-template-columns: 1fr; }
}

/* ── 4. Stats — keep 3-across always ────────────────────── */
@media (max-width: 700px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
  }
  .stat {
    padding: 0.6rem 0.4rem;
    text-align: center;
    border-radius: 10px;
  }
  .stat strong { font-size: 1rem; }
  .stat span   { font-size: 0.68rem; display: block; line-height: 1.3; }
}

/* ── 5. About section ────────────────────────────────────── */
@media (max-width: 700px) {
  /* Hide the photo — replaced with ambient orbs */
  .about-showcase-media { display: none; }

  .about-showcase {
    min-height: 0;
    padding-block: 4rem;
    overflow: hidden;
    position: relative;
    background:
      linear-gradient(to bottom, #070f0b 0%, rgba(7,15,11,0.6) 6%, transparent 14%, transparent 62%, rgba(7,15,11,0.6) 80%, #070f0b 100%),
      radial-gradient(ellipse 80% 60% at 15% 30%, rgba(47,176,115,0.13) 0%, transparent 60%),
      radial-gradient(ellipse 65% 50% at 88% 75%, rgba(214,162,75,0.09) 0%, transparent 55%),
      #070f0b;
  }


  .about-showcase-layout {
    min-height: 0;
    width: min(1120px, 88vw);
    position: relative;
    z-index: 1;
  }

  .about-flow {
    padding-block: 0;
    width: 100%;
    text-align: center;
  }

  .about-flow h2 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .about-flow p {
    font-size: 0.93rem;
    line-height: 1.7;
    text-align: left;
  }

  .about-flow p + p { margin-top: 1rem; }
}

@keyframes about-orb-a {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, 15px) scale(1.1); }
}
@keyframes about-orb-b {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-15px, -20px) scale(1.08); }
}

/* ── 6. Testimonials — horizontal scroll on mobile ──────── */
@media (max-width: 700px) {
  .testimonials-section {
    padding: 2.8rem 0;
    position: relative;
  }
  .testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5rem;
    background: linear-gradient(to bottom, #070f0b, transparent);
    pointer-events: none;
    z-index: 1;
  }
  .testimonials-section h2 { font-size: clamp(1.4rem, 6.5vw, 1.8rem); }
  .testimonials-section .kicker { justify-content: center; }

  /* Horizontal scroll strip */
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: unset;
    gap: 0.85rem;
    margin-top: 1.5rem;
    /* Bleed slightly past container so the scroll feels natural */
    width: calc(100vw - 0px);
    margin-left: calc(-4vw);
    padding: 0.25rem 4vw 1.1rem;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }

  .testimonial-card {
    flex: 0 0 84vw;
    max-width: 360px;
    min-width: 0;
    scroll-snap-align: start;
  }
  .testimonial-card:last-child { margin-right: 4vw; }
  .testimonial-text { font-size: 0.9rem; line-height: 1.7; }
}

/* ── 7. Quote CTA section ────────────────────────────────── */
@media (max-width: 700px) {
  .quote-cta-section { padding: 2.8rem 0; }
  .quote-cta-wrap { text-align: center; }
  .quote-cta-wrap h2  { font-size: clamp(1.4rem, 6.5vw, 1.8rem); margin-bottom: 0.5rem; }
  .quote-cta-sub { font-size: 0.9rem; }
}
@media (max-width: 480px) {
  /* Force inline button row to stack vertically */
  .quote-cta-wrap > div[style] {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.65rem !important;
  }
  .quote-cta-wrap .btn {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.4rem;
  }
}

/* ── 8. Footer ───────────────────────────────────────────── */
@media (max-width: 700px) {
  .site-footer { padding-top: 1.4rem; margin-top: 2rem; }
  .footer-grid { gap: 1.4rem; padding-bottom: 0.5rem; }
}

/* ── 9. Disable reveal entrance animations on mobile ──────
   Scroll-triggered reveals can make content feel broken when
   users scroll too fast. Show everything immediately on phones. */
@media (max-width: 700px) {
  .reveal, .reveal-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
