@font-face {
  font-family: "BPG Nino";
  src: url("assets/bpg_nino_mtavruli_bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "BPG ExtraSquare";
  src: url("assets/bpg_extrasquare_mtavruli_2009.ttf") format("truetype");
  font-display: swap;
}

:root {
  --terracotta-rgb: 137, 54, 46;
  --terracotta: #89362E;
  --terracotta-deep: #89362E;
  --terracotta-soft: rgba(137, 54, 46, 0.12);
  --olive: #86876a;
  --ink: #3f4253;
  --ink-soft: #6f706d;
  --paper: #ffffff;
  --paper-soft: #faf7f2;
  --line: rgba(var(--terracotta-rgb), 0.14);
  --line-strong: rgba(var(--terracotta-rgb), 0.26);
  --shadow: 0 20px 44px rgba(68, 56, 52, 0.1);
  --shadow-strong: 14px 16px 0 rgba(68, 56, 52, 0.32);
  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --radius-xl: 2.75rem;
  --font-brand: "BPG Nino", "Noto Sans Georgian", "Segoe UI", sans-serif;
  --font-display: "BPG ExtraSquare", "Noto Serif Georgian", serif;
  --font-body: "Noto Sans Georgian", "Segoe UI", sans-serif;
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(var(--terracotta-rgb), 0.08), transparent 28%),
    radial-gradient(circle at right 20%, rgba(134, 135, 106, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7f3ee 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.05;
}

body::after {
  background:
    radial-gradient(circle at 0% 10%, rgba(var(--terracotta-rgb), 0.08), transparent 20%),
    radial-gradient(circle at 100% 0%, rgba(var(--terracotta-rgb), 0.04), transparent 18%);
  z-index: -1;
}

header,
main,
footer {
  position: relative;
  z-index: 2;
}

html.has-door-transition body {
  overflow: hidden;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  perspective: 1800px;
  isolation: isolate;
}

.page-transition::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 248, 235, 0.24), rgba(255, 248, 235, 0.02) 34%, rgba(38, 16, 12, 0.26) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(1.5px);
}

.page-transition__frame {
  position: absolute;
  inset: 0;
  display: flex;
}

.page-transition__door {
  position: relative;
  flex: 1 1 50%;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(180deg, #9b4a3f 0%, #89362e 48%, #742d26 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 0 1rem rgba(82, 31, 25, 0.36);
  transform-style: preserve-3d;
}

.page-transition__door::before {
  content: "";
  position: absolute;
  inset: 9% 10%;
  border-radius: 2rem;
  border: 1px solid rgba(255, 243, 232, 0.12);
  box-shadow:
    inset 0 0 0 0.85rem rgba(255, 255, 255, 0.03),
    inset 0 0 0 2.4rem rgba(111, 43, 34, 0.2);
}

.page-transition__door::after {
  content: "";
  position: absolute;
  inset: 16% 18%;
  border-radius: 1.5rem;
  background:
    linear-gradient(90deg, transparent 0%, rgba(44, 19, 16, 0.22) 16%, rgba(255, 255, 255, 0.05) 26%, transparent 34%, transparent 66%, rgba(255, 255, 255, 0.05) 74%, rgba(44, 19, 16, 0.22) 84%, transparent 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 233, 0.08),
    inset 0 0 2rem rgba(0, 0, 0, 0.12);
  opacity: 0.86;
}

.page-transition__door--left {
  transform-origin: left center;
}

.page-transition__door--right {
  transform-origin: right center;
}

.page-transition__hinges {
  position: absolute;
  top: 16%;
  width: 0.9rem;
  height: 3rem;
  border-radius: 0.35rem;
  background:
    linear-gradient(180deg, #f4d18b 0%, #c17b1e 48%, #87510f 100%);
  box-shadow:
    0 18rem 0 0 #c17b1e,
    0 36rem 0 0 #c17b1e,
    inset 0 0 0 1px rgba(255, 247, 226, 0.28);
}

.page-transition__door--left .page-transition__hinges {
  left: 1rem;
}

.page-transition__door--right .page-transition__hinges {
  right: 1rem;
}

.page-transition__knob {
  position: absolute;
  top: 50%;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at 30% 30%, #ffeab6 0%, #dfab46 48%, #8f5715 100%);
  box-shadow:
    0 0 0.75rem rgba(228, 183, 77, 0.34),
    inset 0 0 0 1px rgba(255, 248, 225, 0.5);
}

.page-transition__door--left .page-transition__knob {
  right: 1.75rem;
}

.page-transition__door--right .page-transition__knob {
  left: 1.75rem;
}

.page-transition__handle-shell {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(6.2rem, 8vw, 7.3rem);
  height: clamp(6.2rem, 8vw, 7.3rem);
  transform: translate(-50%, -50%);
  z-index: 4;
  opacity: 0;
  filter: drop-shadow(0 0 1.1rem rgba(238, 194, 89, 0.5));
}

.page-transition__handle-shell::before {
  content: "";
  position: absolute;
  inset: -0.85rem;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 230, 172, 0.52) 0%, rgba(255, 230, 172, 0.12) 40%, rgba(255, 230, 172, 0) 72%);
}

.page-transition__handle {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 28%, #fff5d5 0%, #f2cf7e 22%, #d59c2c 55%, #865114 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 225, 0.56),
    inset 0 -0.4rem 0.9rem rgba(106, 64, 10, 0.42),
    0 0.65rem 1.1rem rgba(91, 58, 13, 0.28);
  transform-origin: center;
}

.page-transition__handle::before {
  content: "";
  position: absolute;
  inset: 0.85rem;
  border-radius: inherit;
  background:
    radial-gradient(circle at 32% 32%, rgba(255, 250, 232, 0.78), rgba(255, 237, 185, 0.18) 38%, rgba(121, 72, 12, 0.14) 100%);
  box-shadow: inset 0 0 0 1px rgba(129, 81, 21, 0.24);
}

.page-transition__handle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.72rem;
  height: 2rem;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(180deg, rgba(255, 250, 232, 0.98), rgba(132, 78, 14, 0.95));
  box-shadow:
    0 0 0 0.14rem rgba(255, 250, 232, 0.26),
    0 0 0.5rem rgba(255, 219, 129, 0.35);
}

html.has-door-transition .page-transition {
  opacity: 1;
  visibility: visible;
  animation: pageTransitionFade 2.3s ease forwards;
}

html.has-door-transition .page-transition__handle-shell {
  animation: pageTransitionHandleReveal 1.18s cubic-bezier(0.22, 0.78, 0.2, 1) 0.05s forwards;
}

html.has-door-transition .page-transition__handle {
  animation: pageTransitionHandleTurn 0.92s cubic-bezier(0.26, 0.8, 0.28, 1) 0.38s forwards;
}

html.has-door-transition .page-transition__door--left {
  animation: pageTransitionDoorLeft 1.16s cubic-bezier(0.2, 0.82, 0.18, 1) 0.9s forwards;
}

html.has-door-transition .page-transition__door--right {
  animation: pageTransitionDoorRight 1.16s cubic-bezier(0.2, 0.82, 0.18, 1) 0.9s forwards;
}

@keyframes pageTransitionFade {
  0%,
  78% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes pageTransitionHandleReveal {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 4.8rem)) scale(0.4);
  }

  30% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.02);
  }

  64% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
  }
}

@keyframes pageTransitionHandleTurn {
  0% {
    transform: rotate(0deg);
  }

  40% {
    transform: rotate(0deg);
  }

  70% {
    transform: rotate(88deg);
  }

  100% {
    transform: rotate(84deg);
  }
}

@keyframes pageTransitionDoorLeft {
  0%,
  18% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(-108deg);
  }
}

@keyframes pageTransitionDoorRight {
  0%,
  18% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(108deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html.has-door-transition body {
    overflow: auto;
  }

  .page-transition {
    display: none !important;
  }
}

.site-background-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-background-art__piece {
  position: absolute;
  max-width: none;
  height: auto;
  opacity: 0.22;
  transform-origin: center;
  filter: saturate(1.04) contrast(1.06);
}

.site-background-art__piece--1 {
  top: 10%;
  left: -8%;
  width: min(30vw, 30rem);
  opacity: 0.3;
}

.site-background-art__piece--2 {
  top: 6%;
  right: -10%;
  width: min(38vw, 38rem);
  opacity: 0.22;
}

.site-background-art__piece--3 {
  top: 24%;
  right: 4%;
  width: min(31vw, 31rem);
  opacity: 0.48;
  filter: saturate(1.16) contrast(1.12);
}

.site-background-art__piece--4 {
  top: 36%;
  right: -6%;
  width: min(52vw, 54rem);
  opacity: 0.28;
}

.site-background-art__piece--5 {
  top: 55%;
  left: -2%;
  width: min(34vw, 34rem);
  opacity: 0.2;
}

.site-background-art__piece--6 {
  top: 63%;
  left: 56%;
  width: min(92vw, 92rem);
  opacity: 0.24;
  transform: translateX(-50%);
}

.site-background-art__piece--7 {
  bottom: -2%;
  right: -2%;
  width: min(42vw, 44rem);
  opacity: 0.24;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  padding: 0.95rem 1rem;
}

textarea {
  resize: vertical;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.7rem 0 0;
  backdrop-filter: blur(18px);
}

.site-header__frame,
.section,
.site-footer__inner,
.site-footer__meta {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header__frame {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: space-between;
  align-items: center;
  gap: clamp(0.8rem, 1.35vw, 1.1rem);
}

.site-header__nav-shell,
.brand-badge {
  position: relative;
  border-radius: 1.35rem;
}

.site-header__nav-shell {
  background: var(--terracotta);
  color: #fff;
  box-shadow:
    0 8px 0 rgba(115, 115, 115, 0.36),
    8px 10px 0 rgba(68, 56, 52, 0.32);
}

.brand-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  color: var(--ink);
  border: 0;
  box-shadow: none;
}

.site-nav {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  justify-content: start;
  gap: clamp(1.8rem, 2.9vw, 3.45rem);
  min-height: 4.45rem;
  padding: 0.5rem 2.1rem 0.5rem 2rem;
  font-family: var(--font-brand);
  font-size: clamp(0.98rem, 1.04vw, 1.12rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 2rem;
  white-space: nowrap;
  opacity: 0.98;
  text-shadow: 0 1px 0 rgba(83, 64, 56, 0.34);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0.05rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.brand-badge {
  width: clamp(13.8rem, 16vw, 15.6rem);
  height: clamp(4.35rem, 5vw, 4.9rem);
  align-self: center;
  min-height: 0;
  padding: 0;
}

.brand-badge__logo {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center;
}

.menu-toggle {
  display: none;
}

.section {
  padding: clamp(4.2rem, 7vw, 6.8rem) 0;
}

.section--tight {
  padding-top: 2rem;
}

.question-block {
  padding-bottom: 1.4rem;
  overflow: visible;
}

.why-us-section {
  padding-top: 1.2rem;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(var(--terracotta-rgb), 0.1));
  border-top: 1px solid rgba(var(--terracotta-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--terracotta-rgb), 0.08);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--terracotta);
  font-family: var(--font-brand);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-heading--wide {
  max-width: none;
}

.section-heading--singleline {
  max-width: none;
  margin-bottom: 1.35rem;
}

.section-heading h2,
.page-hero__content h1,
.contact-option h2,
.form-card h2,
.note-card h2,
.cta-banner h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.04;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-heading__line {
  display: block;
}

.section-heading--singleline h2 {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  white-space: nowrap;
}

.why-us-title-line {
  display: inline;
}

.section-copy,
.page-hero__lead,
.hero__lead,
.story-layout__main p,
.story-grid__copy p,
.mini-card p,
.metric-card p,
.sector-card p,
.process-card p,
.value-card p,
.audience-card p,
.service-card p,
.lane-card p,
.contact-option p,
.note-card__copy,
.site-footer__brand p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 0.9rem 1.5rem;
  border-radius: 1rem;
  font-family: var(--font-brand);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button--primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 14px 26px rgba(var(--terracotta-rgb), 0.18);
}

.button--secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.button--light {
  background: #fff;
  color: var(--terracotta-deep);
}

.button--outline-light {
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #fff;
}

.hero {
  padding-top: 3.25rem;
}

.hero__grid,
.page-hero__grid,
.story-grid,
.story-layout,
.contact-layout {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.hero__grid,
.page-hero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  align-items: center;
}

.hero__content {
  position: relative;
}

.hero__title {
  display: grid;
  gap: 0.15em;
  margin: 0;
  line-height: 0.92;
}

.hero__title-top,
.hero__title-bottom {
  display: block;
}

.hero__title-top {
  color: var(--olive);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
}

.hero__title-bottom {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 8vw, 6.9rem);
}

.hero__lead {
  max-width: 40rem;
  margin-top: 1.6rem;
  font-family: var(--font-brand);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.55;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.tag-row span {
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.hero__quick-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 4.85rem;
  padding: 1.1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: linear-gradient(135deg, #89362E 0%, #89362E 54%, #89362E 100%);
  color: #fff;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  letter-spacing: 0.035em;
  text-shadow: 0 1px 0 rgba(92, 46, 28, 0.24);
  box-shadow:
    0 18px 34px rgba(var(--terracotta-rgb), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  animation: heroQuickLinkGlow 5.6s ease-in-out infinite;
}

.hero__quick-link::after {
  content: "";
  position: absolute;
  top: -38%;
  left: -24%;
  width: 34%;
  height: 185%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 46%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.16) 54%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(22deg);
  pointer-events: none;
  animation: heroQuickLinkShine 4.8s ease-in-out infinite;
}

@keyframes heroQuickLinkShine {
  0%,
  18% {
    transform: translateX(0) rotate(22deg);
    opacity: 0;
  }

  34% {
    opacity: 0.95;
  }

  54% {
    transform: translateX(20rem) rotate(22deg);
    opacity: 0;
  }

  100% {
    transform: translateX(20rem) rotate(22deg);
    opacity: 0;
  }
}

@keyframes heroQuickLinkGlow {
  0%,
  100% {
    box-shadow:
      0 18px 34px rgba(var(--terracotta-rgb), 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }

  50% {
    box-shadow:
      0 22px 42px rgba(var(--terracotta-rgb), 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

.hero__cta-panel {
  position: relative;
  margin-top: 2rem;
  padding: 2rem 2rem 2.2rem;
  overflow: hidden;
  background: var(--terracotta);
  color: #fff;
  border-radius: 2.2rem 8rem 2.2rem 2.2rem;
  box-shadow: var(--shadow);
}

.hero__cta-panel::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 10rem;
  height: 10rem;
  border-radius: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  transform: rotate(22deg);
}

.hero__cta-panel p {
  max-width: 28rem;
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.8;
}

.showcase-band {
  padding: 0.35rem 0 2.6rem;
  overflow: hidden;
}

.showcase-band__figure {
  width: min(78rem, calc(100vw - 13rem));
  margin: 0 auto 0 0;
}

.showcase-band__figure img {
  width: 100%;
  height: auto;
}

.question-section {
  display: grid;
  gap: 1.6rem;
}

.question-section__heading {
  max-width: none;
}

.question-section__heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: clamp(1.3rem, 1.95vw, 1.95rem);
  line-height: 1.2;
  text-wrap: balance;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem 1.75rem;
  align-items: start;
}

.question-column {
  display: grid;
  gap: 1.15rem;
  align-content: start;
  will-change: auto;
}

.question-column--left {
  padding-top: 1.5rem;
}

.question-card {
  position: relative;
  min-height: 0;
  padding: 1.15rem 1.25rem;
  border-radius: 999px;
  border: 2px solid rgba(191, 136, 122, 0.9);
  background: linear-gradient(180deg, rgba(148, 67, 56, 0.98), rgba(137, 54, 46, 0.98));
  box-shadow:
    0 18px 30px rgba(var(--terracotta-rgb), 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.95rem;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

html.has-js .question-grid .question-card {
  opacity: 0;
  transform: translateY(1.05rem) scale(0.94);
}

html.has-js .question-grid.is-visible .question-card {
  animation: questionCardPop 720ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

html.has-js .question-grid.is-visible .question-column--left .question-card:nth-child(1) {
  animation-delay: 0ms;
}

html.has-js .question-grid.is-visible .question-column--right .question-card:nth-child(1) {
  animation-delay: 120ms;
}

html.has-js .question-grid.is-visible .question-column--left .question-card:nth-child(2) {
  animation-delay: 240ms;
}

html.has-js .question-grid.is-visible .question-column--right .question-card:nth-child(2) {
  animation-delay: 360ms;
}

html.has-js .question-grid.is-visible .question-column--left .question-card:nth-child(3) {
  animation-delay: 480ms;
}

html.has-js .question-grid.is-visible .question-column--right .question-card:nth-child(3) {
  animation-delay: 600ms;
}

html.has-js .question-grid.is-visible .question-column--left .question-card:nth-child(4) {
  animation-delay: 720ms;
}

html.has-js .question-grid.is-visible .question-column--right .question-card:nth-child(4) {
  animation-delay: 840ms;
}

.question-card::after {
  content: "";
  position: absolute;
  inset: 0.42rem;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.question-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.question-card__icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.question-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-family: var(--font-brand);
  font-size: clamp(1.08rem, 1.42vw, 1.38rem);
  line-height: 1.22;
  text-wrap: balance;
}

@keyframes questionCardPop {
  0% {
    opacity: 0;
    transform: translateY(1.05rem) scale(0.94);
  }

  68% {
    opacity: 1;
    transform: translateY(-0.18rem) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .question-column {
    animation: none;
  }

  .why-us-pill {
    animation: none;
  }

  .service-orbit-card,
  .service-orbit-card__icon,
  .service-orbit-card__icon::before {
    animation: none;
  }

  .service-orbit-card,
  .service-orbit-card:hover,
  .service-orbit-card:hover .service-orbit-card__icon,
  .service-orbit-card:hover .service-orbit-card__icon img {
    transform: none;
  }
}

.hero__visual {
  position: relative;
  min-height: 40rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: clamp(0.4rem, 1.2vw, 1.2rem);
  padding-bottom: 11.5rem;
}

.hero__image-frame,
.page-hero__media {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border-radius: 4.5rem 1rem 1rem 4.5rem;
  box-shadow: var(--shadow);
}

.hero__image-frame {
  min-height: 100%;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 12% 100%, 0% 62%);
}

.hero__image-frame::after,
.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: inherit;
}

.hero__image-frame img,
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__building-cutout {
  position: relative;
  z-index: 1;
  width: min(100%, 41rem);
  margin: 0;
  pointer-events: none;
}

.hero__building-cutout img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 31rem;
  filter: drop-shadow(0 1.8rem 2.6rem rgba(52, 57, 77, 0.2));
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: min(16rem, 70%);
  padding: 1.15rem 1.2rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(var(--terracotta-rgb), 0.14);
  border-radius: 1.35rem;
  box-shadow: var(--shadow);
}

.floating-card--top {
  top: 2rem;
  right: -1rem;
}

.floating-card--bottom {
  right: -0.4rem;
  bottom: 1.8rem;
}

.floating-card__label {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--terracotta);
  font-family: var(--font-brand);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.floating-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: 0.94rem;
}

.floating-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

.floating-card--statement {
  top: auto;
  right: 0;
  bottom: 0;
  width: min(35rem, calc(100% - 0.25rem));
  max-width: calc(100% - 0.25rem);
  min-height: 10.75rem;
  padding: 0.85rem 1rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.8)),
    url("assets/hero-wireframe-8.png") center / cover no-repeat,
    #fff;
}

.floating-card__statement {
  margin: 0;
  width: 100%;
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: clamp(3rem, 4.25vw, 4.8rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-align: center;
}

.floating-card__statement-line {
  display: block;
  white-space: nowrap;
}

.feature-strip,
.values-grid,
.audience-grid,
.services-grid,
.lane-grid,
.process-grid,
.contact-options {
  display: grid;
  gap: 1.25rem;
}

.feature-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card,
.metric-card,
.sector-card,
.process-card,
.value-card,
.audience-card,
.service-card,
.lane-card,
.contact-option,
.form-card,
.note-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(var(--terracotta-rgb), 0.1);
  box-shadow: var(--shadow);
}

.mini-card,
.process-card,
.value-card,
.audience-card,
.service-card,
.lane-card,
.contact-option {
  border-radius: 1.5rem;
  padding: 1.55rem;
}

.mini-card h2,
.metric-card strong,
.sector-card h3,
.process-card h3,
.value-card h3,
.audience-card h3,
.service-card h3,
.lane-card h3,
.contact-option h2,
.form-card h2,
.note-card h2 {
  font-family: var(--font-brand);
}

.mini-card h2,
.sector-card h3,
.process-card h3,
.value-card h3,
.audience-card h3,
.service-card h3,
.lane-card h3,
.contact-option h2 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  line-height: 1.45;
}

.story-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  align-items: start;
}

.story-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.why-us-frame-wrap {
  display: grid;
}

.why-us-system {
  display: grid;
  gap: 1.55rem;
}

.why-us-system__lead {
  max-width: 52rem;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-brand);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.5;
}

.why-us-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem 1.3rem;
  align-items: center;
}

.why-us-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 5.5rem;
  padding: 1rem 1.45rem;
  border-radius: 999px;
  border: 2px solid rgba(197, 147, 133, 0.95);
  background: linear-gradient(180deg, rgba(148, 67, 56, 0.98), rgba(137, 54, 46, 0.99));
  box-shadow:
    0 16px 28px rgba(var(--terracotta-rgb), 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #fff;
  overflow: hidden;
  cursor: default;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.why-us-pill::after {
  content: "";
  position: absolute;
  inset: 0.38rem;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.why-us-pill:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow:
    0 22px 38px rgba(var(--terracotta-rgb), 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  border-color: rgba(223, 185, 174, 1);
}

.why-us-pill__icon,
.why-us-pill__label {
  position: relative;
  z-index: 1;
}

.why-us-pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.why-us-pill__icon svg {
  width: 1.42rem;
  height: 1.42rem;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-us-pill__label {
  font-family: var(--font-brand);
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  line-height: 1.15;
  white-space: nowrap;
}

.why-us-pill--1 {
  animation: whyUsFloatOne 7s ease-in-out infinite;
}

.why-us-pill--2 {
  animation: whyUsFloatTwo 7.8s ease-in-out infinite;
}

.why-us-pill--3 {
  animation: whyUsFloatThree 8.3s ease-in-out infinite;
}

.why-us-pill--4 {
  animation: whyUsFloatFour 7.4s ease-in-out infinite;
}

@keyframes whyUsFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-0.4rem, -0.35rem, 0);
  }
}

@keyframes whyUsFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0.45rem, -0.28rem, 0);
  }
}

@keyframes whyUsFloatThree {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-0.35rem, 0.32rem, 0);
  }
}

@keyframes whyUsFloatFour {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0.38rem, 0.28rem, 0);
  }
}

.story-grid__copy,
.story-layout__main {
  display: grid;
  gap: 1rem;
}

.story-grid__panel {
  display: grid;
  gap: 1rem;
}

.metric-card {
  padding: 1.35rem 1.45rem;
  border-radius: 1.5rem;
}

.metric-card span,
.process-card span,
.audience-card span,
.service-card span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--terracotta);
  font-family: var(--font-brand);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
  line-height: 1.4;
}

.section--carousel-showcase {
  overflow: hidden;
}

.sector-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(26rem, 42rem);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.sector-showcase__copy {
  margin-bottom: 0;
}

.sector-showcase__copy h2 {
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 0.98;
}

.sector-carousel {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.sector-carousel__stage {
  position: relative;
  width: min(100%, 42rem);
  min-height: 36rem;
}

.sector-carousel__slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(21rem, 72%);
  aspect-ratio: 1122 / 1402;
  overflow: hidden;
  border-radius: 2.4rem;
  border: 1px solid rgba(var(--terracotta-rgb), 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 44px rgba(68, 56, 52, 0.18);
  opacity: 0;
  transform: translateX(-50%) scale(0.88);
  transition:
    transform 360ms ease,
    opacity 360ms ease,
    box-shadow 360ms ease,
    filter 360ms ease;
  will-change: transform, opacity;
}

.sector-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sector-carousel__slide.is-active {
  z-index: 3;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  box-shadow: 0 28px 52px rgba(68, 56, 52, 0.24);
  filter: saturate(1.02);
}

.sector-carousel__slide.is-prev {
  z-index: 2;
  opacity: 0.92;
  transform: translateX(calc(-50% - 10.5rem)) translateY(1.25rem) scale(0.88) rotate(-6deg);
}

.sector-carousel__slide.is-next {
  z-index: 1;
  opacity: 0.92;
  transform: translateX(calc(-50% + 10.5rem)) translateY(1.25rem) scale(0.88) rotate(6deg);
}

.sector-carousel__slide.is-hidden {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

.sector-carousel__controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.sector-carousel__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--terracotta-rgb), 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--terracotta);
  box-shadow: 0 12px 24px rgba(68, 56, 52, 0.12);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.sector-carousel__control:hover {
  transform: translateY(-2px);
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 18px 28px rgba(var(--terracotta-rgb), 0.2);
}

.sector-carousel__control svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--terracotta);
  font-family: var(--font-brand);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

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

.page-hero {
  padding-top: 3rem;
}

.page-hero--contact {
  position: relative;
  padding-bottom: 1.1rem;
  overflow: clip;
}

.page-hero--contact .page-hero__grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.98fr) minmax(22rem, 0.88fr);
  gap: clamp(2rem, 4vw, 3.8rem);
  align-items: start;
}

.page-hero__content--contact {
  display: grid;
  align-content: start;
  min-height: auto;
  padding-right: clamp(0.25rem, 0.8vw, 0.6rem);
}

.contact-hero-panel {
  width: 100%;
  align-self: start;
  position: relative;
  z-index: 2;
}

.note-card--hero {
  width: 100%;
  margin: 0;
  padding: 1.5rem;
}

.note-card--hero .contact-channel-grid {
  margin-top: 1rem;
}

.contact-hero-title {
  margin: 0;
  max-width: 7.4ch;
  font-family: var(--font-brand);
  font-size: clamp(3rem, 5.7vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  color: var(--olive);
}

.contact-hero-lead {
  max-width: 30rem;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-family: var(--font-brand);
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
  line-height: 1.48;
  text-wrap: pretty;
}

.contact-photo-carousel {
  width: min(100%, 34rem);
  margin-top: 1.55rem;
  justify-items: start;
}

.contact-photo-carousel .sector-carousel__stage {
  width: min(100%, 34rem);
  min-height: 24rem;
}

.contact-photo-carousel .sector-carousel__slide {
  width: min(20rem, 72%);
  aspect-ratio: 4 / 3;
  border-radius: 2rem;
}

.contact-photo-carousel .sector-carousel__slide.is-prev {
  transform: translateX(calc(-50% - 6.65rem)) translateY(0.9rem) scale(0.9) rotate(-5deg);
}

.contact-photo-carousel .sector-carousel__slide.is-next {
  transform: translateX(calc(-50% + 6.65rem)) translateY(0.9rem) scale(0.9) rotate(5deg);
}

.page-hero__lead {
  margin-top: 1.25rem;
  max-width: 36rem;
}

.service-orbit-section {
  padding-top: 0.9rem;
  padding-bottom: 1.7rem;
}

.service-orbit-shell {
  position: relative;
  padding: clamp(1.4rem, 3.2vw, 2.35rem);
  overflow: hidden;
  isolation: isolate;
  border-radius: 3rem;
  border: 1px solid rgba(var(--terracotta-rgb), 0.1);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at top right, rgba(var(--terracotta-rgb), 0.12), transparent 26%),
    radial-gradient(circle at bottom left, rgba(134, 135, 106, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.service-orbit-shell::before,
.service-orbit-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.service-orbit-shell::before {
  inset: auto auto -10rem -7rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--terracotta-rgb), 0.1), transparent 68%);
  filter: blur(10px);
}

.service-orbit-shell::after {
  top: 1rem;
  right: 1rem;
  width: min(18rem, 30vw);
  height: min(18rem, 30vw);
  border-radius: 50%;
  border: 1px solid rgba(var(--terracotta-rgb), 0.09);
  opacity: 0.7;
}

.service-orbit-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.7fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.6rem;
}

.service-orbit-intro__copy h2 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.8vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.service-orbit-intro__lead {
  max-width: 30rem;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-brand);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.6;
}

.service-orbit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.service-orbit-quote {
  --span: 6;
  position: relative;
  z-index: 1;
  grid-column: span var(--span);
  display: flex;
  align-items: center;
  min-height: 15.1rem;
  padding: 1.2rem 0.8rem 1.2rem 1.35rem;
}

.service-orbit-quote::before {
  content: "";
  position: absolute;
  inset: 0.8rem 0.2rem 0.8rem 0;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top left, rgba(var(--terracotta-rgb), 0.14), transparent 46%),
    radial-gradient(circle at bottom right, rgba(134, 135, 106, 0.1), transparent 36%);
  opacity: 0.85;
  pointer-events: none;
}

.service-orbit-quote p {
  position: relative;
  z-index: 1;
  max-width: 27rem;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-brand);
  font-size: clamp(1.16rem, 1.7vw, 1.48rem);
  line-height: 1.58;
  text-wrap: balance;
}

.service-orbit-card {
  --accent-rgb: var(--terracotta-rgb);
  --delay: 0s;
  --span: 4;
  --height: 15.25rem;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: var(--height);
  padding: 1.25rem;
  overflow: hidden;
  isolation: isolate;
  grid-column: span var(--span);
  border-radius: 2rem;
  border: 1px solid rgba(var(--terracotta-rgb), 0.1);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.12), transparent 34%),
    #fff;
  transform-origin: center;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
  animation: service-orbit-card-float 7.6s ease-in-out infinite;
  animation-delay: var(--delay);
}

.service-orbit-card::before,
.service-orbit-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.service-orbit-card::before {
  top: -18%;
  right: -10%;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.16), transparent 68%);
  filter: blur(10px);
  opacity: 0.9;
}

.service-orbit-card::after {
  inset: 0.55rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.service-orbit-card:hover {
  transform: translateY(-10px) rotate(-0.8deg);
  border-color: rgba(var(--terracotta-rgb), 0.18);
  box-shadow: 0 28px 52px rgba(68, 56, 52, 0.14);
}

.service-orbit-card__content,
.service-orbit-card__icon {
  position: relative;
  z-index: 1;
}

.service-orbit-card__content {
  display: grid;
  gap: 0.5rem;
  max-width: calc(100% - min(8.5rem, 38%));
}

.service-orbit-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 3.15rem;
  min-height: 2.2rem;
  padding: 0.28rem 0.82rem 0.2rem;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--terracotta);
  font-family: var(--font-brand);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.service-orbit-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.75vw, 1.58rem);
  line-height: 1.1;
}

.service-orbit-card--feature h3 {
  font-size: clamp(1.34rem, 2vw, 1.86rem);
}

.service-orbit-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.42;
}

.service-orbit-card__icon {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: clamp(6.1rem, 8.8vw, 8.8rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transform-origin: center;
  pointer-events: none;
  animation: service-orbit-icon-bob 8.2s ease-in-out infinite;
  animation-delay: calc(var(--delay) - 0.8s);
}

.service-orbit-card__icon::before,
.service-orbit-card__icon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.service-orbit-card__icon::before {
  inset: 12%;
  border: 1px dashed rgba(var(--accent-rgb), 0.26);
  animation: service-orbit-ring 15s linear infinite;
}

.service-orbit-card__icon::after {
  inset: 28%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.22), transparent 72%);
  filter: blur(10px);
}

.service-orbit-card__icon img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  will-change: transform;
  filter: drop-shadow(0 18px 22px rgba(var(--accent-rgb), 0.18));
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.service-orbit-card:hover .service-orbit-card__icon {
  transform: translate3d(-0.4rem, -0.55rem, 0) rotate(-7deg);
}

.service-orbit-card:hover .service-orbit-card__icon::before {
  animation-duration: 5.8s;
}

.service-orbit-card:hover .service-orbit-card__icon img {
  transform: scale(1.08) rotate(5deg);
  filter: drop-shadow(0 24px 28px rgba(var(--accent-rgb), 0.24));
}

@keyframes service-orbit-card-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes service-orbit-icon-bob {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0.2rem, -0.45rem, 0) rotate(4deg);
  }
}

@keyframes service-orbit-ring {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.page-hero--banner {
  padding-top: 2.4rem;
}

.page-hero--panorama {
  padding-top: 2.2rem;
}

.page-hero__banner {
  margin: 0;
  position: relative;
  min-height: clamp(27rem, 43vw, 39rem);
  overflow: hidden;
  isolation: isolate;
  border-radius: 4.75rem 1.25rem 2.2rem 2.2rem;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 18%);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.page-hero__banner--panorama {
  min-height: 0;
  aspect-ratio: 2600 / 1160;
  border-radius: 2.35rem;
  clip-path: none;
  background: #95493d;
}

.page-hero__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 249, 244, 0.92) 0%,
      rgba(255, 249, 244, 0.72) 26%,
      rgba(255, 249, 244, 0.28) 48%,
      rgba(255, 249, 244, 0.04) 72%
    ),
    linear-gradient(180deg, rgba(31, 28, 42, 0.06), rgba(31, 28, 42, 0.18));
  z-index: 1;
}

.page-hero__banner--panorama::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(18, 11, 11, 0.08));
}

.page-hero__banner::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 3.6rem 0.9rem 1.6rem 1.6rem;
  z-index: 2;
}

.page-hero__banner--panorama::after {
  inset: 1.05rem;
  border-radius: 1.6rem;
  border-color: rgba(255, 255, 255, 0.38);
}

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

.page-hero__banner--panorama img {
  object-position: center center;
}

.page-hero__banner-copy {
  position: absolute;
  left: clamp(1.4rem, 3vw, 2.4rem);
  right: clamp(1.4rem, 3vw, 2.4rem);
  bottom: clamp(1.6rem, 4vw, 2.6rem);
  z-index: 3;
  display: grid;
  gap: 0.9rem;
  max-width: min(60rem, 64%);
}

.page-hero__banner-copy .eyebrow {
  width: fit-content;
  padding: 0.48rem 0.8rem 0.42rem;
  border-radius: 999px;
  background: rgba(255, 249, 244, 0.68);
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.page-hero__banner-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.65vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  max-width: 100%;
}

.page-hero__title-line {
  display: block;
  width: fit-content;
}

.page-hero__media {
  min-height: 32rem;
  clip-path: polygon(16% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 38%);
}

.story-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(17rem, 0.8fr);
  align-items: start;
}

.quote-card {
  margin: 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(var(--terracotta-rgb), 0.1), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(var(--terracotta-rgb), 0.14);
  border-radius: 2rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.18;
  box-shadow: var(--shadow);
}

.values-grid,
.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-mid-visual-section {
  padding-top: 0.9rem;
  padding-bottom: 1.2rem;
}

.about-services-cta {
  padding-top: 0.7rem;
  padding-bottom: 3.2rem;
  display: flex;
  justify-content: center;
}

.about-services-cta__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 24rem);
  min-height: 5.35rem;
  padding: 1rem 2.8rem;
  overflow: hidden;
  isolation: isolate;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--terracotta), #a24a3f);
  color: #fff;
  border: 1px solid rgba(var(--terracotta-rgb), 0.2);
  box-shadow:
    0 18px 38px rgba(var(--terracotta-rgb), 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-family: var(--font-brand);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
  animation: about-services-cta-glow 2.6s ease-in-out infinite;
}

.about-services-cta__button span {
  position: relative;
  z-index: 1;
}

.about-services-cta__button::before {
  content: "";
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: -42%;
  width: 34%;
  transform: skewX(-24deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  animation: about-services-cta-shine 3.2s linear infinite;
}

.about-services-cta__button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 22px 44px rgba(var(--terracotta-rgb), 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: saturate(1.04);
}

@keyframes about-services-cta-glow {
  0%,
  100% {
    box-shadow:
      0 18px 38px rgba(var(--terracotta-rgb), 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  50% {
    box-shadow:
      0 22px 48px rgba(var(--terracotta-rgb), 0.34),
      0 0 22px rgba(var(--terracotta-rgb), 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
}

@keyframes about-services-cta-shine {
  0% {
    left: -42%;
  }

  100% {
    left: 124%;
  }
}

.about-visual-figure {
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.about-visual-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.8fr);
  align-items: start;
}

.contact-layout--single {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.contact-layout--single .note-card {
  width: min(100%, 46rem);
}

.form-card,
.note-card {
  border-radius: 2rem;
  padding: 2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.94rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--terracotta-deep);
  font-size: 0.94rem;
}

.contact-link {
  color: var(--terracotta-deep);
  font-family: var(--font-brand);
  text-decoration: none;
  word-break: break-word;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-detail-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 1.6rem;
}

.contact-detail-list p {
  display: grid;
  gap: 0.28rem;
  margin: 0;
  color: var(--ink-soft);
}

.contact-detail-list strong {
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: 0.95rem;
}

.contact-channel-grid {
  display: grid;
  gap: 0.95rem;
  margin: 1.2rem 0 1.2rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(var(--terracotta-rgb), 0.12);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 244, 0.88)),
    radial-gradient(circle at top right, rgba(var(--terracotta-rgb), 0.1), transparent 40%);
  box-shadow: 0 18px 30px rgba(31, 28, 42, 0.07);
  text-decoration: none;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.contact-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--terracotta-rgb), 0.3);
  box-shadow: 0 24px 36px rgba(var(--terracotta-rgb), 0.14);
}

.contact-channel__icon,
.contact-address__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(var(--terracotta-rgb), 0.98), rgba(137, 54, 46, 0.98));
  color: #fff;
  box-shadow:
    0 12px 24px rgba(var(--terracotta-rgb), 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.contact-channel__icon svg,
.contact-address__icon svg {
  width: 1.32rem;
  height: 1.32rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-channel__value {
  min-width: 0;
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: 1rem;
  line-height: 1.45;
  word-break: break-word;
}

.contact-address {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.2rem;
  padding: 0.95rem 1rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(var(--terracotta-rgb), 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.contact-address__body {
  display: grid;
  gap: 0.2rem;
}

.contact-address__label {
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: 0.95rem;
}

.contact-address__value {
  color: var(--ink-soft);
  font-family: var(--font-brand);
}

.note-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 1.6rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  gap: 1.15rem;
  padding: 1.45rem 1.55rem;
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(var(--terracotta-rgb), 0.1)),
    #fff;
  border: 1px solid rgba(var(--terracotta-rgb), 0.12);
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  max-width: none;
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  white-space: nowrap;
}

.cta-banner .button-row {
  display: grid;
  grid-template-columns: repeat(2, 13.25rem);
  flex: 0 0 auto;
  gap: 0.7rem;
}

.cta-banner .button {
  width: 100%;
}

.site-footer {
  padding: 0.35rem 0 1.35rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0 0.8rem;
  border-top: 1px solid rgba(var(--terracotta-rgb), 0.14);
}

.site-footer__brand {
  max-width: none;
}

.site-footer__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(10.8rem, 14vw, 12.2rem);
  height: 3.8rem;
  margin-bottom: 0;
  overflow: hidden;
}

.site-footer__logo {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.45rem;
  align-items: center;
  justify-content: flex-end;
  font-family: var(--font-brand);
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-footer__meta {
  color: var(--ink-soft);
  margin-top: 0.1rem;
  text-align: center;
  font-size: 1rem;
}

.call-fab {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  max-width: calc(100vw - 2rem);
}

.call-fab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  flex: 0 0 3.6rem;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  box-shadow:
    0 16px 34px rgba(var(--terracotta-rgb), 0.24),
    0 0 0 0 rgba(var(--terracotta-rgb), 0.18);
  animation: call-fab-pulse 2.5s ease-in-out infinite;
}

.call-fab__icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.call-fab__label {
  display: inline-flex;
  align-items: center;
  min-height: 3.35rem;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(var(--terracotta-rgb), 0.22);
  color: var(--terracotta);
  box-shadow: 0 16px 32px rgba(68, 56, 52, 0.14);
  font-family: var(--font-brand);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.call-fab:hover .call-fab__label {
  background: #fff;
}

.call-fab:hover .call-fab__icon {
  transform: translateY(-2px);
}

@keyframes call-fab-pulse {
  0%,
  100% {
    box-shadow:
      0 16px 34px rgba(var(--terracotta-rgb), 0.24),
      0 0 0 0 rgba(var(--terracotta-rgb), 0.16);
  }

  50% {
    box-shadow:
      0 18px 36px rgba(var(--terracotta-rgb), 0.28),
      0 0 0 12px rgba(var(--terracotta-rgb), 0);
  }
}

html.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

html.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 980px) {
  .question-section__heading h2 {
    white-space: nowrap;
  }
}

@media (max-width: 1080px) {
  .site-background-art__piece--2,
  .site-background-art__piece--4 {
    opacity: 0.18;
  }

  .showcase-band__figure {
    width: min(68rem, calc(100vw - 8rem));
  }

  .page-hero__banner {
    min-height: 33rem;
  }

  .page-hero__banner-copy {
    max-width: 72%;
  }

  .page-hero__banner-copy h1 {
    font-size: clamp(2.7rem, 5vw, 4.8rem);
  }

  .service-orbit-intro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-orbit-intro__copy h2,
  .service-orbit-intro__lead {
    max-width: none;
  }

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

  .service-orbit-quote {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 0.55rem 0.2rem 0.2rem;
  }

  .service-orbit-quote::before {
    inset: 0.2rem 0 0;
  }

  .service-orbit-quote p {
    max-width: 38rem;
  }

  .service-orbit-card {
    grid-column: auto;
    min-height: 17rem;
  }

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

  .sector-showcase {
    grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 0.9fr);
    gap: 2rem;
  }

  .sector-carousel__stage {
    min-height: 32rem;
  }

  .sector-carousel__slide.is-prev {
    transform: translateX(calc(-50% - 7.5rem)) translateY(1rem) scale(0.87) rotate(-5deg);
  }

  .sector-carousel__slide.is-next {
    transform: translateX(calc(-50% + 7.5rem)) translateY(1rem) scale(0.87) rotate(5deg);
  }

  .hero__grid,
  .page-hero__grid,
  .story-grid,
  .story-layout,
  .contact-layout,
  .process-grid,
  .services-grid,
  .lane-grid,
  .sector-grid,
  .values-grid,
  .audience-grid,
  .contact-options {
    grid-template-columns: 1fr 1fr;
  }

  .hero__visual,
  .page-hero__media {
    min-height: 30rem;
  }

  .hero__building-cutout {
    width: min(100%, 36rem);
  }

  .sector-grid {
    grid-auto-columns: minmax(18rem, calc((100% - 1.25rem) / 2));
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-background-art__piece {
    opacity: 0.16;
  }

  .showcase-band {
    padding: 0 0 2rem;
  }

  .showcase-band__figure {
    width: calc(100vw - 1.2rem);
  }

  .page-hero--banner {
    padding-top: 2rem;
  }

  .page-hero--contact .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .page-hero__content--contact {
    min-height: auto;
    padding-right: 0;
  }

  .contact-hero-title {
    max-width: 7.6ch;
    font-size: clamp(2.7rem, 10vw, 4.5rem);
  }

  .contact-hero-lead {
    max-width: 32rem;
    font-size: clamp(1rem, 3.4vw, 1.22rem);
  }

  .contact-photo-carousel {
    width: 100%;
    margin-top: 1.25rem;
    justify-items: center;
  }

  .contact-photo-carousel .sector-carousel__stage {
    width: min(100%, 24rem);
    min-height: 19.5rem;
  }

  .contact-photo-carousel .sector-carousel__slide {
    width: min(15rem, 68vw);
  }

  .contact-photo-carousel .sector-carousel__slide.is-prev {
    transform: translateX(calc(-50% - 5rem)) translateY(0.75rem) scale(0.86) rotate(-4deg);
  }

  .contact-photo-carousel .sector-carousel__slide.is-next {
    transform: translateX(calc(-50% + 5rem)) translateY(0.75rem) scale(0.86) rotate(4deg);
  }

  .page-hero__banner {
    min-height: 27rem;
    border-radius: 2.2rem;
    clip-path: none;
  }

  .page-hero__banner--panorama {
    min-height: 0;
    aspect-ratio: 2 / 1;
    border-radius: 1.8rem;
  }

  .page-hero__banner::after {
    inset: 0.8rem;
    border-radius: 1.6rem;
  }

  .page-hero__banner--panorama::after {
    inset: 0.85rem;
    border-radius: 1.2rem;
  }

  .page-hero__banner-copy {
    left: 1.3rem;
    right: 1.3rem;
    bottom: 1.35rem;
    max-width: none;
    gap: 0.75rem;
  }

  .page-hero__banner-copy h1 {
    font-size: clamp(2.3rem, 8vw, 4rem);
  }

  .service-orbit-shell {
    border-radius: 2rem;
    padding: 1.2rem;
  }

  .service-orbit-shell::after {
    width: 12rem;
    height: 12rem;
    top: auto;
    right: -2rem;
    bottom: -2rem;
  }

  .service-orbit-section {
    padding-top: 0.45rem;
  }

  .service-orbit-intro {
    margin-bottom: 1.15rem;
  }

  .service-orbit-intro__copy h2 {
    max-width: 12ch;
    font-size: clamp(2.1rem, 8vw, 3.8rem);
  }

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

  .service-orbit-quote {
    padding: 0.3rem 0;
  }

  .service-orbit-quote::before {
    inset: 0;
    border-radius: 1.6rem;
  }

  .service-orbit-quote p {
    max-width: none;
    font-size: clamp(1rem, 3.2vw, 1.2rem);
  }

  .service-orbit-card {
    min-height: 13.8rem;
    grid-column: auto;
  }

  .service-orbit-card__content {
    max-width: calc(100% - 7.25rem);
  }

  .service-orbit-card__icon {
    width: 6rem;
    top: 0.8rem;
    right: 0.8rem;
  }

  .sector-showcase {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .sector-carousel {
    width: 100%;
  }

  .sector-carousel__stage {
    width: min(100%, 24rem);
    min-height: 28rem;
  }

  .sector-carousel__slide {
    width: min(15rem, 68vw);
  }

  .sector-carousel__slide.is-prev {
    transform: translateX(calc(-50% - 5.25rem)) translateY(0.9rem) scale(0.86) rotate(-4deg);
  }

  .sector-carousel__slide.is-next {
    transform: translateX(calc(-50% + 5.25rem)) translateY(0.9rem) scale(0.86) rotate(4deg);
  }

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

  .question-column {
    animation: none;
    gap: 0.9rem;
  }

  .question-column--left {
    padding-top: 0;
  }

  .question-card {
    min-height: 0;
    padding: 1rem 1.05rem;
    border-radius: 999px;
    gap: 0.8rem;
  }

  .question-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.9rem;
  }

  .question-card__icon svg {
    width: 1.3rem;
    height: 1.3rem;
  }

  .question-card p {
    font-size: 1rem;
    line-height: 1.24;
  }

  .why-us-system {
    gap: 1.2rem;
  }

  .why-us-system__lead {
    font-size: 1.02rem;
    line-height: 1.45;
  }

  .why-us-pill-cloud {
    gap: 0.85rem;
  }

  .why-us-pill {
    width: 100%;
    min-height: 4.75rem;
    padding: 0.9rem 1rem;
    gap: 0.7rem;
    border-radius: 1.7rem;
    animation: none;
  }

  .why-us-pill__icon {
    width: 2.55rem;
    height: 2.55rem;
  }

  .why-us-pill__icon svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .why-us-pill__label {
    font-size: 1rem;
    white-space: normal;
  }

  .site-background-art__piece--2,
  .site-background-art__piece--4,
  .site-background-art__piece--6 {
    display: none;
  }

  .site-background-art__piece--1 {
    top: 14%;
    left: -24%;
    width: min(62vw, 26rem);
  }

  .site-background-art__piece--3 {
    top: 34%;
    right: -3%;
    width: min(42vw, 14rem);
    opacity: 0.3;
  }

  .site-background-art__piece--5 {
    top: 60%;
    left: -16%;
    width: min(66vw, 24rem);
  }

  .site-background-art__piece--7 {
    bottom: 4%;
    right: -18%;
    width: min(72vw, 28rem);
  }

  .site-header {
    padding-top: 0.55rem;
  }

  .site-header__frame {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.7rem;
  }

  .brand-badge {
    min-width: 0;
    width: min(15rem, calc(100vw - 6rem));
    height: clamp(4rem, 14vw, 4.6rem);
    justify-self: end;
    justify-content: center;
    padding: 0;
  }

  .site-header__nav-shell {
    justify-self: start;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 3.35rem;
    min-width: 3.35rem;
    min-height: 3.35rem;
    padding: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    border-radius: 1.1rem;
    background: var(--terracotta);
    box-shadow:
      0 8px 0 rgba(115, 115, 115, 0.34),
      8px 10px 0 rgba(68, 56, 52, 0.3);
  }

  .menu-toggle::before {
    content: "";
    width: 1.25rem;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    box-shadow:
      0 -0.38rem 0 #fff,
      0 0.38rem 0 #fff;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: clamp(5.15rem, 18vw, 6.65rem);
    left: max(1rem, env(safe-area-inset-left));
    right: max(1rem, env(safe-area-inset-right));
    z-index: 30;
    width: auto;
    min-width: 0;
    max-height: min(26rem, calc(100svh - 7.5rem));
    overflow-y: auto;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.35rem;
    min-height: 0;
    padding: 0.85rem;
    border-radius: 1.45rem;
    background: var(--terracotta);
    box-shadow:
      0 8px 0 rgba(115, 115, 115, 0.34),
      8px 10px 0 rgba(68, 56, 52, 0.3);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 3.1rem;
    justify-content: center;
    padding: 0.35rem 0.9rem;
    border-radius: 0.9rem;
    font-size: clamp(1rem, 4vw, 1.18rem);
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.08);
  }

  .site-nav a[aria-current="page"]::after {
    left: 50%;
    right: auto;
    width: 2.2rem;
    bottom: 0.45rem;
    transform: translateX(-50%);
  }

  .call-fab {
    left: 0.85rem;
    bottom: 0.85rem;
  }

  .call-fab__label {
    padding: 0.74rem 1rem;
    font-size: 0.82rem;
  }

  .hero__grid,
  .page-hero__grid,
  .story-grid,
  .story-layout,
  .contact-layout,
  .process-grid,
  .services-grid,
  .lane-grid,
  .sector-grid,
  .values-grid,
  .audience-grid,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero__image-frame,
  .page-hero__media {
    border-radius: 2rem;
    clip-path: none;
  }

  .floating-card {
    position: static;
    width: 100%;
  }

  .hero__visual {
    display: grid;
    gap: 1rem;
    justify-items: center;
  }

  .hero__building-cutout {
    width: min(100%, 25rem);
  }

  .floating-card--statement {
    min-height: 0;
    padding: 1.5rem 1.35rem;
  }

  .floating-card__statement {
    font-size: clamp(1.6rem, 7vw, 2.15rem);
    line-height: 1.38;
  }

  .floating-card__statement-line {
    white-space: normal;
  }

  .cta-banner,
  .site-footer__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta-banner {
    width: 100%;
    gap: 1rem;
  }

  .cta-banner h2 {
    white-space: normal;
  }

  .cta-banner .button-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .site-footer__nav {
    justify-content: start;
  }
}

@media (hover: none) and (pointer: coarse) {
  .site-header {
    z-index: 80;
    padding-top: 0.55rem;
  }

  .site-header__frame,
  .section,
  .site-footer__inner,
  .site-footer__meta {
    width: min(1240px, calc(100% - 1.2rem));
  }

  .site-header__frame {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.7rem;
  }

  .brand-badge {
    min-width: 0;
    width: min(15rem, calc(100vw - 6rem));
    height: clamp(4rem, 14vw, 4.6rem);
    justify-self: end;
    padding: 0;
  }

  .site-header__nav-shell {
    justify-self: start;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 3.35rem;
    min-width: 3.35rem;
    min-height: 3.35rem;
    padding: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    border-radius: 1.1rem;
    background: var(--terracotta);
    box-shadow:
      0 8px 0 rgba(115, 115, 115, 0.34),
      8px 10px 0 rgba(68, 56, 52, 0.3);
  }

  .menu-toggle::before {
    content: "";
    width: 1.25rem;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    box-shadow:
      0 -0.38rem 0 #fff,
      0 0.38rem 0 #fff;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: clamp(5.15rem, 18vw, 6.65rem);
    left: max(0.75rem, env(safe-area-inset-left));
    right: max(0.75rem, env(safe-area-inset-right));
    z-index: 90;
    width: auto;
    min-width: 0;
    max-width: none;
    max-height: min(26rem, calc(100svh - 7.5rem));
    overflow-y: auto;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.35rem;
    min-height: 0;
    padding: 0.85rem;
    border-radius: 1.45rem;
    background: var(--terracotta);
    box-shadow:
      0 8px 0 rgba(115, 115, 115, 0.34),
      8px 10px 0 rgba(68, 56, 52, 0.3);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 3.1rem;
    justify-content: center;
    padding: 0.35rem 0.9rem;
    border-radius: 0.9rem;
    font-size: clamp(1rem, 4vw, 1.18rem);
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero__grid,
  .page-hero__grid,
  .story-grid,
  .story-layout,
  .contact-layout,
  .process-grid,
  .services-grid,
  .lane-grid,
  .sector-grid,
  .values-grid,
  .audience-grid,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .hero__visual,
  .hero__cta-panel,
  .hero__quick-link,
  .hero__building-cutout,
  .floating-card {
    max-width: 100%;
  }

  .hero__title,
  .hero__lead {
    overflow-wrap: anywhere;
  }

  .hero__lead br {
    display: none;
  }

  .why-us-section .section-heading--singleline h2 {
    white-space: normal;
  }

  .why-us-title-line {
    display: block;
  }
}

@media (max-width: 580px) {
  .site-header__frame,
  .section,
  .site-footer__inner,
  .site-footer__meta {
    width: min(1240px, calc(100% - 1.2rem));
  }

  .hero__cta-panel {
    border-radius: 1.8rem;
    padding: 1.5rem;
  }

  .why-us-section .section-heading--singleline h2 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
    line-height: 1.12;
    white-space: normal;
  }

  .why-us-title-line {
    display: block;
  }

  .page-hero--contact {
    padding-bottom: 0.4rem;
  }

  .contact-hero-title {
    max-width: 7.4ch;
    font-size: clamp(2.35rem, 11.8vw, 3.7rem);
    line-height: 0.9;
  }

  .contact-hero-lead {
    font-size: 0.98rem;
    line-height: 1.44;
  }

  .contact-photo-carousel .sector-carousel__stage {
    min-height: 17rem;
  }

  .contact-photo-carousel .sector-carousel__slide {
    width: min(13rem, 70vw);
    border-radius: 1.8rem;
  }

  .contact-photo-carousel .sector-carousel__slide.is-prev {
    transform: translateX(calc(-50% - 4rem)) translateY(0.65rem) scale(0.84) rotate(-4deg);
  }

  .contact-photo-carousel .sector-carousel__slide.is-next {
    transform: translateX(calc(-50% + 4rem)) translateY(0.65rem) scale(0.84) rotate(4deg);
  }

  .page-hero__banner {
    min-height: 22rem;
  }

  .page-hero__banner--panorama {
    min-height: 0;
    aspect-ratio: 1.7 / 1;
    border-radius: 1.4rem;
  }

  .page-hero__banner-copy {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .page-hero__banner-copy .eyebrow {
    padding: 0.42rem 0.68rem 0.36rem;
  }

  .page-hero__banner-copy h1 {
    font-size: clamp(1.95rem, 9.6vw, 3rem);
    line-height: 0.94;
  }

  .service-orbit-shell {
    padding: 1rem;
    border-radius: 1.6rem;
  }

  .service-orbit-intro {
    gap: 0.85rem;
    margin-bottom: 0.95rem;
  }

  .service-orbit-intro__copy h2 {
    max-width: none;
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .service-orbit-intro__lead {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .service-orbit-quote {
    padding: 0.15rem 0;
  }

  .service-orbit-quote::before {
    border-radius: 1.2rem;
  }

  .service-orbit-quote p {
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .service-orbit-card {
    min-height: 12.25rem;
    padding: 1rem;
    border-radius: 1.45rem;
  }

  .service-orbit-card::after {
    inset: 0.45rem;
    border-radius: 1.1rem;
  }

  .service-orbit-card__content {
    max-width: calc(100% - 5.9rem);
    gap: 0.42rem;
  }

  .service-orbit-card__index {
    min-width: 2.7rem;
    min-height: 1.95rem;
    padding: 0.22rem 0.68rem 0.16rem;
    font-size: 0.75rem;
  }

  .service-orbit-card h3 {
    font-size: 1.06rem;
  }

  .service-orbit-card--feature h3 {
    font-size: 1.16rem;
  }

  .service-orbit-card p {
    font-size: 0.92rem;
  }

  .service-orbit-card__icon {
    width: 5.2rem;
    top: 0.65rem;
    right: 0.65rem;
  }

  .about-services-cta {
    padding-top: 0.4rem;
    padding-bottom: 2.4rem;
  }

  .about-services-cta__button {
    width: min(100%, 20rem);
    min-height: 4.65rem;
    padding: 0.95rem 1.4rem;
    font-size: 0.96rem;
  }

  .call-fab {
    gap: 0.5rem;
    max-width: calc(100vw - 1.2rem);
  }

  .call-fab__icon {
    width: 3.15rem;
    height: 3.15rem;
    flex-basis: 3.15rem;
  }

  .call-fab__label {
    min-height: 3rem;
    padding: 0.7rem 0.92rem;
    font-size: 0.76rem;
    max-width: calc(100vw - 5rem);
    white-space: normal;
    line-height: 1.2;
  }

  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .form-card,
  .note-card,
  .cta-banner {
    padding: 1.4rem;
  }

  .contact-channel,
  .contact-address {
    padding: 0.9rem;
    border-radius: 1.1rem;
  }

  .contact-channel__icon,
  .contact-address__icon {
    width: 2.7rem;
    height: 2.7rem;
  }

  .contact-channel__value {
    font-size: 0.95rem;
  }

  .sector-carousel__stage {
    min-height: 24rem;
  }

  .sector-carousel__slide {
    width: min(13rem, 70vw);
    border-radius: 1.8rem;
  }

  .sector-carousel__slide.is-prev {
    transform: translateX(calc(-50% - 4.15rem)) translateY(0.7rem) scale(0.84) rotate(-4deg);
  }

  .sector-carousel__slide.is-next {
    transform: translateX(calc(-50% + 4.15rem)) translateY(0.7rem) scale(0.84) rotate(4deg);
  }

  .cta-banner .button-row {
    grid-template-columns: 1fr;
  }
}
