:root {
  --ink: #312821;
  --muted: #716961;
  --paper: #f7f2ea;
  --paper-deep: #e8ded1;
  --clay: #0db7a5;
  --clay-dark: #087f82;
  --olive: #416f70;
  --gold: #c6a46a;
  --sea-glass: #a8d4d0;
  --cyan: #1598bc;
  --espresso: #312821;
  --cocoa: #493b33;
  --line: rgba(49, 40, 33, 0.14);
  --shadow: 0 24px 70px rgba(72, 47, 32, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #fffaf2;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 242, 234, 0.93);
  box-shadow: 0 10px 30px rgba(39, 33, 29, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: 42px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(39, 33, 29, 0.16));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.86;
}

.main-nav a:hover {
  opacity: 1;
}

.language-toggle {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 13px;
  color: inherit;
  background: rgba(255, 250, 242, 0.08);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.language-toggle:hover {
  background: rgba(255, 250, 242, 0.16);
  transform: translateY(-1px);
}

.site-header.is-scrolled .language-toggle {
  background: rgba(39, 33, 29, 0.04);
}

.language-toggle [data-language-next] {
  opacity: 0.54;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 6vw, 92px) 34px;
  overflow: hidden;
  color: #fffaf2;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media,
.hero-media .splide__track,
.hero-media .splide__list,
.hero-media .splide__slide {
  height: 100%;
}

.hero-media .splide__slide {
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-media img.frame-ny-1 {
  object-position: 66% center;
}

.hero-media img.frame-ny-3 {
  object-position: 68% center;
}

.hero-media img.frame-ny-4 {
  object-position: 62% center;
}

.hero-media img.frame-chicago-1 {
  object-position: 64% center;
}

.hero-media img.frame-chicago-2 {
  object-position: 70% center;
}

.hero-media img.frame-chicago-3 {
  object-position: 55% center;
}

.hero-media img.frame-chicago-4 {
  object-position: 68% center;
}

.hero-media img.frame-chicago-5 {
  object-position: 72% 72%;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(49, 40, 33, 0.88) 0%, rgba(49, 40, 33, 0.6) 44%, rgba(21, 82, 86, 0.18) 100%),
    linear-gradient(0deg, rgba(49, 40, 33, 0.72) 0%, rgba(49, 40, 33, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-bottom: clamp(54px, 9vw, 104px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--clay-dark);
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 8vw, 7.2rem);
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4.8rem);
}

h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 560px;
  margin-top: 26px;
  color: rgba(255, 250, 242, 0.84);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

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

.button.primary {
  color: var(--espresso);
  background: var(--clay);
}

.button.primary:hover {
  color: var(--paper);
  background: var(--clay-dark);
}

.button.ghost {
  border-color: rgba(255, 250, 242, 0.48);
  color: #fffaf2;
  background: rgba(255, 250, 242, 0.08);
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 980px);
  border: 1px solid rgba(255, 250, 242, 0.24);
  background: rgba(39, 33, 29, 0.32);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: clamp(18px, 3vw, 28px);
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 250, 242, 0.18);
}

.hero-panel span {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-panel p {
  max-width: 270px;
  margin-top: 10px;
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.9rem;
}

.section-pad {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 92px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  column-gap: clamp(32px, 7vw, 112px);
  row-gap: 30px;
  align-items: start;
  background: var(--paper);
  padding-top: clamp(54px, 6vw, 84px);
  padding-bottom: clamp(54px, 6vw, 84px);
}

.intro .section-kicker {
  grid-row: 1 / 3;
  padding-top: 10px;
}

.intro h2 {
  max-width: 980px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.intro p:not(.section-kicker) {
  max-width: 780px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.02rem;
}

.approach {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(13, 183, 165, 0.12), transparent 30%),
    radial-gradient(circle at 4% 88%, rgba(65, 111, 112, 0.11), transparent 28%),
    var(--paper-deep);
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 112px);
  align-items: start;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-heading h2 {
  max-width: 940px;
}

.approach-heading-copy {
  display: grid;
  grid-template-columns: 1fr;
}

.approach-heading-copy h2 {
  grid-column: auto;
}

.approach-heading-copy > p {
  max-width: 820px;
  margin-top: 22px;
  color: var(--muted);
}

.approach-heading-copy > p + p {
  margin-top: 12px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
  border: 0;
}

.process-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 290px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(39, 33, 29, 0.1);
  border-radius: 22px;
  background: rgba(247, 242, 234, 0.76);
  box-shadow: 0 18px 46px rgba(72, 47, 32, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.process-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clay), var(--gold));
}

.process-grid article:hover {
  border-color: rgba(13, 183, 165, 0.28);
  box-shadow: 0 24px 54px rgba(72, 47, 32, 0.13);
  transform: translateY(-4px);
}

.process-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(13, 183, 165, 0.3);
  border-radius: 50%;
  color: var(--clay);
  background: rgba(13, 183, 165, 0.09);
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

.process-grid h3 {
  max-width: 270px;
  margin-top: clamp(34px, 4vw, 54px);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.process-grid article p {
  margin-top: 18px;
}

.how-we-work {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(198, 164, 106, 0.1), transparent 26%),
    radial-gradient(circle at 92% 82%, rgba(168, 212, 208, 0.2), transparent 28%),
    var(--paper);
}

.work-process-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.work-process-grid article {
  display: block;
  min-height: 205px;
  padding: clamp(28px, 3vw, 38px) clamp(26px, 3vw, 42px) clamp(28px, 3vw, 38px) clamp(54px, 5vw, 72px);
  border-color: rgba(65, 111, 112, 0.2);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(168, 212, 208, 0.2), rgba(247, 242, 234, 0.94));
  box-shadow: 0 14px 34px rgba(72, 47, 32, 0.06);
}

.work-process-grid article::before {
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  width: 5px;
  height: auto;
  background: linear-gradient(180deg, var(--olive), var(--gold));
}

.work-icon {
  position: absolute;
  top: 34px;
  left: clamp(24px, 2.8vw, 36px);
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--clay-dark);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 180ms ease, transform 180ms ease;
}

.work-process-grid article:hover .work-icon {
  stroke: var(--clay);
  transform: translateY(-2px);
}

.work-icon-track {
  width: 38px;
  height: 38px;
  stroke-width: 2.1;
}

.work-icon-target {
  top: 30px;
}

.work-process-grid h3 {
  max-width: none;
  margin-top: 0;
  color: var(--clay-dark);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.work-process-grid article p {
  max-width: 580px;
  margin-top: 18px;
  font-size: 1rem;
}

.work-process-grid article:hover {
  border-color: rgba(13, 183, 165, 0.32);
  box-shadow: 0 22px 44px rgba(72, 47, 32, 0.11);
  transform: translateY(-6px);
}

.process-grid p,
.profile-content > p,
.expertise-copy p,
.contact-copy p {
  margin-top: 16px;
  color: var(--muted);
}

.expertise-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--olive);
  transform: rotate(45deg);
}

.tool-matrix {
  display: grid;
  gap: 16px;
}

.tool-matrix div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.tool-matrix div:last-child {
  border-bottom: 1px solid var(--line);
}

.tool-matrix strong {
  color: var(--clay-dark);
}

.tool-matrix p {
  color: var(--muted);
}

.services {
  background:
    radial-gradient(circle at 100% 0, rgba(21, 152, 188, 0.09), transparent 26%),
    var(--paper);
}

.services-list {
  display: grid;
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(250, 249, 245, 0.88);
  box-shadow: 0 16px 42px rgba(72, 47, 32, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(168, 212, 208, 0.22), rgba(250, 249, 245, 0.94));
}

.service-card:hover {
  border-color: rgba(13, 183, 165, 0.28);
  box-shadow: 0 24px 52px rgba(72, 47, 32, 0.11);
  transform: translateY(-4px);
}

.service-summary span,
.service-details > strong {
  display: block;
  color: var(--clay-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-summary h3 {
  max-width: 480px;
  margin-top: 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.04;
}

.service-summary p {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
}

.service-details {
  padding-top: 2px;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 18px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-features li {
  position: relative;
  padding: 15px 0 15px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.service-features li::before {
  content: "";
  position: absolute;
  top: 1.45rem;
  left: 1px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive);
}

.profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background: var(--espresso);
  color: #fffaf2;
}

.globe-column {
  width: min(100%, 560px);
  justify-self: center;
}

.globe-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(198, 164, 106, 0.24);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 44%, rgba(13, 183, 165, 0.12), transparent 66%);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.24);
}

.experience-globe,
.experience-globe canvas {
  width: 100%;
  height: 100%;
}

.experience-globe canvas {
  display: block;
  cursor: grab;
  touch-action: none;
  overscroll-behavior: contain;
  user-select: none;
  -webkit-user-select: none;
}

.experience-globe canvas:active {
  cursor: grabbing;
}

.globe-location {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(198, 164, 106, 0.3);
  text-align: center;
}

.globe-location span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.globe-location strong {
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.82rem;
  font-weight: 500;
}

.profile-content > p {
  max-width: 680px;
  color: rgba(255, 250, 242, 0.74);
}

.about-copy {
  display: grid;
  gap: 20px;
  max-width: 760px;
  margin-top: 32px;
}

.about-copy p {
  padding-left: 20px;
  border-left: 2px solid rgba(198, 164, 106, 0.38);
  color: rgba(255, 250, 242, 0.72);
}

.about-copy p:first-child {
  border-left-color: var(--gold);
  color: rgba(255, 250, 242, 0.9);
  font-size: 1.04rem;
}

.profile-points {
  display: grid;
  gap: 1px;
  margin-top: 42px;
  background: rgba(255, 250, 242, 0.18);
}

.profile-points div {
  padding: 24px 0;
  background: var(--espresso);
}

.profile-points p {
  margin-top: 8px;
  color: rgba(255, 250, 242, 0.68);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.contact-copy h2 {
  max-width: 720px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  color: var(--muted);
}

.contact-lines a {
  color: var(--clay-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #faf9f5;
  box-shadow: var(--shadow);
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(39, 33, 29, 0.18);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(13, 183, 165, 0.28);
  border-color: var(--clay);
}

.form-button {
  width: 100%;
  margin-top: 8px;
  border: 0;
}

.form-status {
  min-height: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status.is-error {
  color: #9a392e;
}

.form-status.is-success {
  color: #4f6b3b;
}

.js .reveal-item {
  opacity: 0;
  translate: 0 28px;
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms, 0ms;
}

.js .reveal-item.is-visible {
  opacity: 1;
  translate: 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 92px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--clay-dark);
  font-weight: 800;
}

@media (max-width: 980px) {
  .intro,
  .section-heading,
  .expertise-layout,
  .service-card,
  .profile,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .process-grid article {
    grid-template-columns: 1fr;
    min-height: 300px;
    padding: 24px;
  }

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

  .work-process-grid article {
    min-height: 220px;
    padding: 28px 26px 28px 56px;
  }

  .work-icon {
    left: 25px;
  }

  .intro .section-kicker {
    grid-row: auto;
    padding-top: 0;
  }

}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
    gap: 10px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 22;
    order: 3;
  }

  .language-toggle {
    order: 2;
    min-height: 36px;
    padding: 0 11px;
    font-size: 0.72rem;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 21;
    display: grid;
    gap: 0;
    padding: 98px 20px 22px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 18px 40px rgba(39, 33, 29, 0.12);
    transform: translateY(-110%);
    transition: transform 200ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 16px 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 92vh;
    padding: 104px 20px 24px;
  }

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

  .hero-panel div + div {
    border-top: 1px solid rgba(255, 250, 242, 0.18);
    border-left: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .work-process-grid {
    grid-template-columns: 1fr;
  }

  .approach-heading-copy {
    grid-template-columns: 1fr;
  }

  .approach-heading-copy h2 {
    grid-column: auto;
  }

  .approach-heading-copy > p + p {
    margin-top: 12px;
  }

  .process-grid article {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .process-grid article p {
    grid-column: auto;
    margin-top: 14px;
  }

  .work-process-grid article {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 14px;
    padding: 30px 24px 32px 28px;
  }

  .work-icon,
  .work-icon-target,
  .work-icon-track {
    position: static;
    grid-column: 1;
    grid-row: 1;
    width: 32px;
    height: 32px;
    margin-top: -7px;
    align-self: start;
  }

  .work-process-grid h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }

  .work-process-grid article p {
    grid-column: 2;
    grid-row: 2;
  }


  .tool-matrix div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal-item,
  .js .reveal-item.is-visible {
    opacity: 1;
    translate: none;
    transition: none;
  }
}
