:root {
  --color-teal: #1f99b5;
  --color-teal-dark: #18809a;
  --color-teal-soft: rgba(31, 153, 181, 0.14);
  --color-ink: #1c1f24;
  --color-ink-soft: #3a404a;
  --color-muted: #6b7280;
  --color-line: #d8dde3;
  --color-paper: #f3f5f7;
  --color-white: #ffffff;
  --color-header: #0f1216;
  --shadow-soft: 0 18px 40px rgba(15, 18, 22, 0.12);
  --radius: 4px;
  --font-display: "Outfit", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --header-height: 5.25rem;
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(31, 153, 181, 0.12), transparent 55%),
    linear-gradient(180deg, #eef1f4 0%, var(--color-paper) 28%, #f7f8fa 100%);
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--color-ink);
}

p {
  margin: 0 0 1rem;
}

main {
  min-height: 60vh;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(28, 31, 36, 0.08);
  box-shadow: 0 1px 0 rgba(31, 153, 181, 0.35);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-height);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__logo {
  height: 3.35rem;
  width: auto;
}

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

.site-nav__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--color-ink-soft);
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--color-teal-dark);
  background: var(--color-teal-soft);
}

.site-header__toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(28, 31, 36, 0.15);
  background: transparent;
  border-radius: var(--radius);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.site-header__toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--color-ink);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.site-header__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons & links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

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

.btn--primary {
  background: var(--color-teal);
  color: #061f26;
}

.btn--primary:hover {
  background: var(--color-teal-dark);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: rgba(28, 31, 36, 0.25);
}

.btn--ghost:hover {
  border-color: var(--color-teal);
  color: var(--color-teal-dark);
}

.btn--on-dark {
  background: #fff;
  color: var(--color-ink);
}

.btn--on-dark:hover {
  background: var(--color-teal);
  color: #061f26;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 650;
  color: var(--color-teal-dark);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s var(--ease), gap 0.25s var(--ease);
}

.text-link::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.text-link:hover {
  border-color: var(--color-teal);
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* Hero */
.hero-band {
  padding: 0;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  height: clamp(28rem, 72vh, 42rem);
  max-height: 42rem;
  overflow: hidden;
  background: #10151b;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 18, 0.65);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem;
  display: flex;
  justify-content: center;
  animation: rise-in 0.9s var(--ease);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 38rem;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
  max-width: 14ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero__lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36ch;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero__actions .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero__actions .btn--ghost:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 1.25rem;
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__inner--split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.section__inner--cta {
  text-align: center;
  max-width: 40rem;
}

.section__eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-teal-dark);
  margin: 0 0 0.75rem;
}

.section__title {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.section__lead {
  color: var(--color-muted);
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section__cta {
  margin-top: 2.25rem;
}

.section--intro {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.35));
}

.intro-copy h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
}

.intro-panel {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  min-height: 18rem;
  box-shadow: var(--shadow-soft);
}

.intro-panel::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 4px;
  background: var(--color-teal);
  z-index: 1;
}

.intro-panel__image {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.section--highlights {
  background:
    linear-gradient(135deg, rgba(31, 153, 181, 0.08), transparent 40%),
    #e8ecef;
}

.highlight-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(28, 31, 36, 0.12);
}

.highlight-item {
  padding: 1.5rem 0.25rem 0.5rem;
  border-right: 1px solid rgba(28, 31, 36, 0.12);
  animation: rise-in 0.8s var(--ease);
}

.highlight-item:last-child {
  border-right: none;
}

.highlight-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.highlight-item p {
  color: var(--color-ink-soft);
  margin: 0;
}

.section--cta-band {
  background:
    linear-gradient(120deg, #0f1216 0%, #163335 55%, #0f1216 100%);
  color: #fff;
  padding: clamp(3rem, 7vw, 4.5rem) 1.25rem;
}

.section--cta-band h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.section--cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 1.25rem 2rem;
  background:
    linear-gradient(135deg, #10151b 0%, #1a222c 55%, #123135 100%);
  color: #fff;
}

.page-hero--compact {
  padding-bottom: 2.5rem;
}

.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  animation: rise-in 0.8s var(--ease);
}

.page-hero__inner h1,
.page-hero__inner > p {
  max-width: 38rem;
}

.page-hero .section__eyebrow {
  color: var(--color-teal);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 100%;
}

/* About / team */
.about-story__copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.about-story__visual {
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-story__image {
  width: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.section--team {
  background: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.team-card {
  animation: rise-in 0.75s var(--ease);
  animation-delay: var(--delay, 0ms);
  text-align: center;
}

.team-card__photo {
  margin: 0 auto 0.85rem;
  width: min(100%, 15rem);
  aspect-ratio: 1;
  background: #d2ecf1;
  position: relative;
  overflow: hidden;
}

.team-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.team-card__name {
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.team-card__role {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-teal-dark);
  margin-bottom: 0.65rem;
}

.team-card__bio {
  color: var(--color-ink-soft);
  margin: 0;
  font-size: 0.98rem;
}

/* Services page — sticky card stack */
.services-page {
  --stack-top: calc(var(--header-height) + 3.75rem);
  --card-h: min(20rem, calc(100svh - var(--stack-top) - 0.75rem));
  --index-h: 3.5rem;
  position: relative;
}

.services-index {
  position: sticky;
  top: var(--header-height);
  z-index: 40;
  background: rgba(247, 248, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28, 31, 36, 0.08);
}

.services-index__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-index__inner::-webkit-scrollbar {
  display: none;
}

.services-index__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
  color: var(--color-muted);
  border-bottom: 2px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
  font-size: 0.95rem;
}

.services-index__link:hover {
  color: var(--color-ink);
}

.services-index__link.is-active {
  color: var(--color-ink);
  border-bottom-color: var(--color-teal);
}

.services-index__label {
  font-weight: 600;
}

.services-chapters {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3rem;
}

.service-stack__slot {
  position: relative;
  height: calc(var(--card-h) + min(32vh, 11rem));
}

.service-stack__slot:last-child {
  height: var(--card-h);
  margin-bottom: 0.5rem;
}

.service-chapter {
  --stack-progress: 0;
  --stack-i: 0;
  position: sticky;
  top: var(--stack-top);
  z-index: calc(10 + var(--stack-i));
  height: var(--card-h);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(0.85rem, 2vw, 1.5rem);
  align-items: stretch;
  padding: clamp(0.75rem, 1.6vw, 1.1rem);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(165deg, #ffffff 0%, #f7f9fb 55%, #eef2f5 100%);
  border: 1px solid rgba(28, 31, 36, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 18px 42px rgba(15, 18, 22, calc(0.08 + var(--stack-progress) * 0.1));
  transform-origin: center top;
  transform:
    translateY(calc(var(--stack-progress) * -0.85rem))
    scale(calc(1 - var(--stack-progress) * 0.055));
  opacity: calc(1 - var(--stack-progress) * 0.28);
  filter: brightness(calc(1 - var(--stack-progress) * 0.1));
  will-change: transform, opacity, filter;
}

.service-chapter__media {
  position: relative;
  margin: 0;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  background: #10151b;
}

.service-chapter__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(calc(1.04 + var(--stack-progress) * 0.04));
  will-change: transform;
}

.service-chapter__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2.4rem;
  min-width: 0;
  padding: 0.35rem 0.5rem;
}

.service-chapter__body h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  max-width: 16ch;
}

.service-chapter__body p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.55;
  max-width: 34ch;
}

/* Short viewports — keep the stack usable without overflow */
@media (max-height: 760px) {
  .services-page {
    --card-h: min(17rem, calc(100svh - var(--stack-top) - 0.5rem));
  }

  .service-stack__slot {
    height: calc(var(--card-h) + min(28vh, 8rem));
  }

  .service-chapter {
    padding: 0.65rem 0.85rem;
    gap: 0.75rem;
  }

  .service-chapter__body h2 {
    font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  }

  .service-chapter__body p {
    font-size: 0.98rem;
    line-height: 1.5;
  }
}

@media (max-height: 620px) {
  .services-page {
    --card-h: min(14rem, calc(100svh - var(--stack-top) - 0.35rem));
  }

  .service-stack__slot {
    height: calc(var(--card-h) + min(22vh, 6rem));
  }

  .service-chapter__body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-chapter {
    transform: none;
    opacity: 1;
    filter: none;
  }

  .service-chapter__image {
    transform: none;
  }
}

/* Contact */
.section--contact {
  padding-top: 2rem;
}

.section__inner--contact {
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1.4fr);
  gap: 1.5rem;
  align-items: stretch;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.contact-block h2 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal-dark);
  margin-bottom: 0.4rem;
}

.contact-block p {
  margin: 0;
  color: var(--color-ink-soft);
}

.contact-block a {
  color: var(--color-ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.contact-block a:hover {
  color: var(--color-teal-dark);
  border-color: var(--color-teal);
}

.contact-actions {
  margin-top: 0.5rem;
}

.contact-map {
  min-height: 26rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-line);
  background: #dfe4e9;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  border: 0;
  display: block;
}

/* Brand marquee */
.brand-marquee {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(243, 245, 247, 0.9));
  border-top: 1px solid rgba(28, 31, 36, 0.06);
  border-bottom: 1px solid rgba(28, 31, 36, 0.06);
  overflow: hidden;
}

.brand-marquee__header {
  max-width: var(--max);
  margin: 0 auto 1.75rem;
  padding: 0 1.25rem;
  text-align: center;
}

.brand-marquee__header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
}

.brand-marquee__viewport {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-marquee__track {
  display: flex;
  width: max-content;
  animation: brand-marquee 40s linear infinite;
}

.brand-marquee__track:hover {
  animation-play-state: paused;
}

.brand-marquee__group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0 0.625rem;
}

.brand-marquee__item {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 10.5rem;
  height: 4.75rem;
  padding: 0.75rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 18, 22, 0.06);
}

.brand-marquee__logo {
  max-width: 100%;
  max-height: 2.75rem;
  width: auto;
  height: auto;
  object-fit: contain;
  transform: scale(0.85);
  transition: transform 0.4s var(--ease);
}

.brand-marquee__item:hover .brand-marquee__logo {
  transform: scale(1.05);
}

.brand-marquee__cta {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  padding: 0 1.25rem;
  text-align: center;
}

@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Brands grid */
.section--brands {
  padding-top: 2.5rem;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8.5rem;
  padding: 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 18, 22, 0.05);
  animation: rise-in 0.7s var(--ease) both;
  animation-delay: var(--delay, 0ms);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.brand-card:hover {
  border-color: rgba(31, 153, 181, 0.45);
  box-shadow: 0 14px 32px rgba(15, 18, 22, 0.1);
}

.brand-card__logo {
  max-width: 90%;
  max-height: 5.5rem;
  width: auto;
  height: auto;
  object-fit: contain;
  transform: scale(0.85);
  transition: transform 0.4s var(--ease);
}

.brand-card:hover .brand-card__logo {
  transform: scale(1.05);
}

/* Footer */
.site-footer {
  background: #0f1216;
  color: rgba(255, 255, 255, 0.78);
  margin-top: auto;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr 0.8fr 1fr;
  gap: 2rem;
}

.site-footer__logo {
  height: 3rem;
  width: auto;
  margin-bottom: 1rem;
  background: #fff;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius);
}

.site-footer__brand p {
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__col h2 {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin: 0 0 1rem;
  min-height: 3rem;
  display: flex;
  align-items: center;
}

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

.site-footer__col a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s var(--ease);
}

.site-footer__col a:hover {
  color: var(--color-teal);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.25rem 1.35rem;
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Animations */
@keyframes rise-in {
  from {
    transform: translateY(18px);
  }
  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  .brand-marquee__track {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.25rem;
    gap: 1rem;
  }

  .brand-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .brand-marquee__group {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-band {
    padding: 0;
  }

  .hero {
    height: auto;
    min-height: min(32rem, calc(100vh - var(--header-height)));
    max-height: none;
  }

  .hero__inner {
    padding: 2.25rem 1.25rem 3rem;
  }

  .hero__content {
    max-width: none;
  }

  .section__inner--split,
  .section__inner--contact,
  .highlight-list,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    border-right: none;
    border-bottom: 1px solid rgba(28, 31, 36, 0.12);
    padding: 1.25rem 0;
  }

  .highlight-item:last-child {
    border-bottom: none;
  }

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

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

@media (max-width: 720px) {
  .site-header {
    overflow: visible;
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(28, 31, 36, 0.08);
    box-shadow: 0 12px 28px rgba(15, 18, 22, 0.1);
    transform: translateY(-0.5rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), visibility 0.25s var(--ease);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav__link {
    padding: 0.95rem 1rem;
    font-size: 1.1rem;
    color: var(--color-ink);
    border-bottom: 1px solid rgba(28, 31, 36, 0.08);
  }

  .site-nav__link:last-child {
    border-bottom: none;
  }

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

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

  .service-chapter {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0.65rem;
    padding: 0.65rem;
  }

  .service-chapter__media {
    order: -1;
    min-height: 38%;
  }

  .service-chapter__body {
    padding: 0.15rem 0.25rem 0.35rem;
  }

  .service-chapter__body h2 {
    max-width: none;
  }

  .service-chapter__body p {
    max-width: none;
  }

  .service-stack__slot {
    height: calc(var(--card-h) + min(28vh, 9rem));
  }

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