:root {
  --cream: #f5efe6;
  --paper: #fffaf3;
  --ink: #161616;
  --orange: #ff5a1f;
  --orange-dark: #d53a04;
  --pink: #ff789f;
  --lime: #c9f15a;
  --line: rgba(22, 22, 22, 0.18);
  --shell: min(1200px, calc(100vw - 128px));
  --radius: 28px;
  --font-sans: "Manrope", Arial, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

html.menu-open,
body.menu-open,
body.lightbox-open {
  overflow: hidden;
  overscroll-behavior: none;
}

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

.ui-arrow {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.14em;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-label {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 44px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.76);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  display: flex;
  width: min(1200px, calc(100vw - 40px));
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 22px;
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 999px;
  background: rgba(245, 239, 230, 0.86);
  box-shadow: 0 10px 40px rgba(22, 22, 22, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 243, 0.94);
  box-shadow: 0 14px 50px rgba(22, 22, 22, 0.14);
}

.wordmark {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.wordmark > span {
  white-space: nowrap;
}

.wordmark i {
  color: var(--orange);
  font-size: 1.35em;
  font-style: normal;
  line-height: 0;
}

.wordmark small {
  color: rgba(22, 22, 22, 0.52);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 880px;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: 44px;
  align-items: center;
  padding: 150px max(64px, calc((100vw - 1200px) / 2)) 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 17%, rgba(255, 120, 159, 0.22), transparent 24%),
    radial-gradient(circle at 82% 70%, rgba(201, 241, 90, 0.22), transparent 22%),
    var(--cream);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 34px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.hero-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(56px, 6.4vw, 104px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero-title-accent {
  position: relative;
  display: inline-block;
  color: var(--orange);
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.hero-title-accent::after {
  position: absolute;
  right: -3%;
  bottom: -3px;
  left: 4%;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
  opacity: 0.82;
  transform: rotate(-2deg);
}

.hero-lead {
  max-width: 660px;
  margin: 38px 0 0;
  color: rgba(22, 22, 22, 0.72);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
}

.hero-lead strong {
  color: var(--ink);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 21px 15px 25px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button:hover {
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.18);
  transform: translateY(-4px);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition: gap 0.2s ease, color 0.2s ease;
}

.text-link span {
  display: inline-flex;
  align-items: center;
}

.text-link:hover {
  gap: 18px;
  color: var(--orange);
}

.hero-visual {
  height: 580px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(22, 22, 22, 0.18);
  border-radius: 50%;
}

.orbit-one {
  inset: 40px 8px 34px 40px;
}

.orbit-two {
  inset: 110px -70px 110px 110px;
}

.portrait-backdrop {
  position: absolute;
  top: 62px;
  right: 8px;
  width: 79%;
  height: 478px;
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: var(--orange);
  box-shadow: 8px 9px 0 var(--ink);
  transform: rotate(6deg);
}

.portrait-card {
  position: absolute;
  top: 38px;
  right: 38px;
  z-index: 2;
  width: 78%;
  height: 500px;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: #c9b7a5;
  box-shadow: 7px 8px 0 var(--ink);
  transform: rotate(2deg);
}

.portrait-card::after {
  position: absolute;
  inset: 0;
  border: 9px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  content: "";
  pointer-events: none;
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.portrait-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 15px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portrait-tag {
  position: absolute;
  z-index: 4;
  padding: 13px 17px;
  border: 2px solid var(--ink);
  box-shadow: 5px 6px 0 var(--ink);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.portrait-tag .ui-arrow {
  width: 1.15em;
  height: 1.15em;
  margin-left: 3px;
}

.portrait-tag-pink {
  top: 340px;
  left: -12px;
  background: var(--pink);
  transform: rotate(-7deg);
}

.portrait-tag-lime {
  right: -8px;
  bottom: 40px;
  background: var(--lime);
  transform: rotate(6deg);
}

.visual-card {
  position: absolute;
  display: flex;
  align-items: end;
  border: 2px solid var(--ink);
  box-shadow: 8px 9px 0 var(--ink);
  font-size: clamp(24px, 2.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.visual-card p {
  margin: 0;
}

.visual-card-main {
  top: 70px;
  right: 54px;
  width: 82%;
  height: 250px;
  padding: 28px;
  background: var(--orange);
  color: white;
  transform: rotate(5deg);
}

.visual-card-index {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.visual-card-pink {
  top: 328px;
  left: 4px;
  width: 64%;
  height: 130px;
  padding: 20px;
  background: var(--pink);
  transform: rotate(-6deg);
}

.visual-card-lime {
  right: 0;
  bottom: 24px;
  width: 54%;
  height: 120px;
  padding: 18px;
  background: var(--lime);
  transform: rotate(6deg);
}

.experience-sticker {
  position: absolute;
  top: 2px;
  left: 5px;
  z-index: 3;
  display: flex;
  width: 148px;
  height: 148px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 6px 7px 0 var(--ink);
  transform: rotate(-10deg);
}

.experience-sticker strong {
  font-size: 50px;
  letter-spacing: -0.08em;
  line-height: 1;
}

.experience-sticker span {
  margin-left: 7px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-signature {
  position: absolute;
  right: 0;
  bottom: -18px;
  z-index: 5;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 48px);
  font-style: italic;
  font-weight: 600;
  transform: rotate(-5deg);
}

.hero-foot {
  position: absolute;
  right: max(64px, calc((100vw - 1200px) / 2));
  bottom: 32px;
  left: max(64px, calc((100vw - 1200px) / 2));
  display: flex;
  z-index: 2;
  gap: 18px;
  align-items: center;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-foot i {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.ticker {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--orange);
  color: white;
}

.ticker-track {
  width: max-content;
  padding: 20px 0;
  font-size: clamp(24px, 3.3vw, 50px);
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}

.ticker-track b {
  display: inline-block;
  margin: 0 24px;
  color: var(--lime);
  font-weight: 400;
}

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

.case-section {
  padding: 96px 0 112px;
  background: var(--paper);
}

.case-intro {
  max-width: 900px;
  margin-bottom: 48px;
}

.case-labels {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.case-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-title,
.services-head h2,
.about h2,
.outcome h2 {
  margin: 0;
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.case-title {
  max-width: 850px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
}

.case-badge {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-gallery {
  display: grid;
  max-width: 1040px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
  align-items: start;
}

.portfolio-case + .portfolio-case {
  margin-top: 104px;
  padding-top: 96px;
  border-top: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #e7e7e7;
  color: white;
  cursor: zoom-in;
  text-align: left;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 18%, transparent 78%, rgba(0, 0, 0, 0.38));
  content: "";
  opacity: 0.65;
  transition: opacity 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.gallery-item:hover::after {
  opacity: 1;
}


.principles {
  padding: 126px 0;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.principles-heading h2 {
  margin: 0;
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.principles-script {
  margin: 0 0 0 28%;
  color: var(--orange);
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 90px);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  transform: rotate(-2deg);
}

.principles-lead {
  max-width: 620px;
  margin: 70px 0 74px auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.55;
}

.principles-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  counter-reset: item;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.principles-list li {
  min-height: 260px;
  padding: 24px 24px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.principles-list li:last-child {
  border-right: 0;
}

.principles-list li > span {
  display: block;
  margin-bottom: 82px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.principles-list strong {
  display: block;
  font-size: 18px;
}

.principles-list p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.services {
  padding: 126px 0;
  background: var(--lime);
}

.services-head {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 76px;
}

.services-head p {
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.65;
}

.services-list {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.services-list li {
  display: grid;
  min-height: 112px;
  grid-template-columns: 70px 1fr minmax(230px, 0.7fr) 38px;
  gap: 20px;
  align-items: center;
  padding: 22px 8px;
  border-bottom: 1px solid rgba(22, 22, 22, 0.46);
  transition: background 0.25s ease, padding 0.25s ease;
}

.services-list li:hover {
  padding-right: 20px;
  padding-left: 20px;
  background: var(--paper);
}

.services-list span {
  font-size: 11px;
  font-weight: 800;
}

.services-list h3 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.services-list p {
  margin: 0;
  color: rgba(22, 22, 22, 0.62);
  font-size: 13px;
}

.services-list b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  font-weight: 400;
}

.services-list b .ui-arrow {
  width: 28px;
  height: 28px;
}

.advantages {
  position: relative;
  padding: 126px 0;
  overflow: hidden;
  background: var(--paper);
}

.advantages::before {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.advantages-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 72px;
}

.advantages-head h2 {
  margin: 0;
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.advantages-head > p {
  margin: 0 0 8px;
  color: rgba(22, 22, 22, 0.66);
  font-size: 16px;
  line-height: 1.65;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.advantage-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 7px 8px 0 var(--ink);
}

.advantage-card > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 78px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  place-items: center;
}

.advantage-card h3 {
  max-width: 480px;
  margin: 0 0 14px;
  font-size: clamp(27px, 3.2vw, 45px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.advantage-card p {
  max-width: 520px;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.advantage-card-orange {
  background: var(--orange);
  color: white;
  transform: rotate(-0.7deg);
}

.advantage-card-dark {
  background: var(--ink);
  color: white;
  transform: rotate(0.7deg);
}

.advantage-card-dark p,
.advantage-card-orange p {
  color: rgba(255, 255, 255, 0.72);
}

.advantage-card-paper {
  background: var(--cream);
  transform: rotate(0.4deg);
}

.advantage-card-pink {
  background: var(--pink);
  transform: rotate(-0.5deg);
}

.advantages-accent {
  margin: 80px 0 -18px;
  font-size: clamp(44px, 7.5vw, 108px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.92;
  text-align: center;
}

.advantages-accent i {
  display: inline-block;
  color: var(--orange);
  font-family: var(--font-serif);
  font-weight: 600;
  transform: rotate(-8deg);
}

.about {
  padding: 126px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px 80px;
}

.about-copy {
  align-self: end;
  padding-left: 14%;
}

.about-copy p {
  margin: 0 0 24px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.about-copy p:last-child {
  margin-bottom: 0;
  color: rgba(22, 22, 22, 0.55);
  font-size: 14px;
}

.stat {
  display: flex;
  min-height: 260px;
  align-items: end;
  justify-content: space-between;
  padding: 34px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 9px 0 var(--ink);
}

.stat strong {
  font-size: clamp(92px, 11vw, 162px);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.75;
}

.stat span {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.stat-orange {
  background: var(--orange);
  color: white;
  transform: rotate(-1.5deg);
}

.stat-pink {
  background: var(--pink);
  transform: rotate(1.5deg);
}

.process {
  padding: 126px 0;
  background: var(--ink);
  color: white;
}

.process-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 84px;
}

.process-head h2 {
  margin: 0;
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.process-head em {
  color: var(--orange);
  font-family: var(--font-serif);
  font-weight: 600;
}

.process-head > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.65;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.process-list li {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 24px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.process-list li:nth-child(3n) {
  border-right: 0;
}

.process-list span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.process-list p {
  max-width: 260px;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.outcome {
  padding: 126px 0 110px;
  overflow: hidden;
  background: var(--orange);
  color: white;
}

.outcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: 60px 100px;
}

.outcome .section-label span {
  border-color: white;
}

.outcome-list {
  align-self: end;
  margin: 68px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  list-style: none;
}

.outcome-list li {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 700;
}

.outcome-list span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
}

.outcome-quote {
  grid-column: 1 / -1;
  margin: 30px 0 -42px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(54px, 8.5vw, 126px);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.85;
  text-align: center;
  transform: rotate(-2deg);
}

.brief {
  padding: 126px 0;
  background:
    radial-gradient(circle at 9% 78%, rgba(255, 120, 159, 0.18), transparent 24%),
    var(--cream);
}

.brief-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: 84px;
  align-items: start;
}

.brief-copy {
  position: sticky;
  top: 120px;
}

.brief-copy h2 {
  margin: 0;
  font-size: clamp(54px, 6.8vw, 102px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.brief-copy > p:not(.section-label) {
  max-width: 480px;
  margin: 36px 0 0;
  color: rgba(22, 22, 22, 0.64);
  font-size: 16px;
  line-height: 1.65;
}

.brief-note {
  display: grid;
  gap: 5px;
  margin-top: 42px;
  padding: 20px 22px;
  border: 1px solid var(--ink);
  border-radius: 18px;
  background: var(--lime);
  box-shadow: 5px 6px 0 var(--ink);
  transform: rotate(-1.5deg);
}

.brief-note strong {
  font-size: 14px;
}

.brief-note span {
  font-size: 11px;
  line-height: 1.5;
}

.brief-form {
  display: grid;
  gap: 26px;
  padding: 38px;
  border: 2px solid var(--ink);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 9px 10px 0 var(--ink);
}

.form-row,
.brief-form label {
  display: grid;
  gap: 9px;
}

.form-row-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brief-form label > span,
.brief-form legend {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brief-form input[type="text"],
.brief-form input[type="url"],
.brief-form select,
.brief-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(22, 22, 22, 0.32);
  border-radius: 12px;
  outline: none;
  background: white;
  color: var(--ink);
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.brief-form textarea {
  min-height: 130px;
  resize: vertical;
}

.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.16);
}

.brief-form input::placeholder,
.brief-form textarea::placeholder {
  color: rgba(22, 22, 22, 0.38);
}

.brief-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.brief-form legend {
  margin-bottom: 12px;
}

.form-options {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.form-options label {
  position: relative;
  display: block;
  cursor: pointer;
}

.form-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-options span {
  display: block;
  padding: 11px 14px;
  border: 1px solid rgba(22, 22, 22, 0.38);
  border-radius: 999px;
  background: white;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.form-options input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.form-options input:focus-visible + span {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

.brief-form .form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  cursor: pointer;
}

.brief-form .form-consent input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--orange);
}

.brief-form .form-consent > span {
  color: rgba(22, 22, 22, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.form-consent a,
.form-legal-note a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.brief-submit {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 17px 14px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.brief-submit span {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  place-items: center;
}

.brief-submit span .ui-arrow {
  width: 18px;
  height: 18px;
}

.brief-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
}

.form-caption,
.form-status,
.form-legal-note {
  margin: -12px 0 0;
  color: rgba(22, 22, 22, 0.48);
  font-size: 10px;
  line-height: 1.5;
}

.form-legal-note {
  margin-top: -18px;
  padding-top: 12px;
  border-top: 1px solid rgba(22, 22, 22, 0.14);
}

.form-status {
  min-height: 15px;
  margin-top: -20px;
  color: var(--orange-dark);
  font-weight: 700;
}

.contact {
  position: relative;
  padding: 126px 0 110px;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact-orb {
  position: absolute;
  top: 50%;
  right: -120px;
  width: 510px;
  height: 510px;
  border-radius: 50%;
  background: var(--pink);
  filter: blur(0);
  opacity: 0.92;
  transform: translateY(-50%);
}

.contact-orb::before,
.contact-orb::after {
  position: absolute;
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.contact-orb::before { inset: 42px; }
.contact-orb::after { inset: 92px; }

.contact h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(68px, 10vw, 154px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.contact-script {
  margin: 0 0 0 26%;
  color: var(--lime);
  font-family: var(--font-serif);
  font-size: clamp(58px, 8vw, 122px);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
  transform: rotate(-3deg);
}

.contact-person {
  width: fit-content;
  margin: 30px 0 0;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-lead {
  max-width: 570px;
  margin: 62px 0 52px;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.6;
}

.contact-links {
  position: relative;
  z-index: 3;
  display: grid;
  max-width: 820px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-links a {
  display: grid;
  grid-template-columns: 150px 1fr 30px;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 0.2s ease, padding 0.2s ease;
}

.contact-links a:hover {
  padding-right: 10px;
  padding-left: 10px;
  color: var(--lime);
}

.contact-links span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.contact-links b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  font-weight: 400;
}

.contact-links b .ui-arrow {
  width: 26px;
  height: 26px;
}

.site-footer {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  padding: 24px max(64px, calc((100vw - 1200px) / 2));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer strong {
  font-weight: 800;
  letter-spacing: 0.06em;
}

.site-footer a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: white;
}

.site-footer a .ui-arrow {
  width: 14px;
  height: 14px;
}

.footer-legal {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-legal a:hover {
  color: white;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.legal-header {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  padding: 20px max(24px, calc((100vw - 1060px) / 2));
  border-bottom: 1px solid rgba(22, 22, 22, 0.16);
  background: var(--paper);
}

.legal-header .wordmark {
  position: static;
}

.legal-back {
  padding-bottom: 3px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.legal-main {
  width: min(100% - 48px, 880px);
  margin: 0 auto;
  padding: 76px 0 110px;
}

.legal-kicker {
  margin-bottom: 22px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-main h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.legal-updated {
  margin: 22px 0 0;
  color: rgba(22, 22, 22, 0.54);
  font-size: 12px;
}

.legal-draft {
  margin: 42px 0 58px;
  padding: 20px 22px;
  border: 1px solid var(--ink);
  border-radius: 16px;
  background: var(--lime);
  box-shadow: 5px 6px 0 var(--ink);
  font-size: 13px;
  line-height: 1.6;
}

.legal-content {
  display: grid;
  gap: 42px;
}

.legal-content section {
  padding-top: 28px;
  border-top: 1px solid rgba(22, 22, 22, 0.18);
}

.legal-content h2 {
  margin: 0 0 16px;
  font-size: clamp(22px, 3.5vw, 34px);
  letter-spacing: -0.035em;
}

.legal-content p,
.legal-content li {
  color: rgba(22, 22, 22, 0.76);
  font-size: 14px;
  line-height: 1.75;
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-content a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-placeholder {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(255, 90, 31, 0.13);
  color: var(--orange-dark);
  font-weight: 800;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 34px 90px;
  overflow: hidden;
  border: 0;
  background: rgba(12, 12, 12, 0.96);
  color: white;
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  gap: 24px;
  align-items: center;
}

.lightbox::backdrop {
  background: rgba(12, 12, 12, 0.96);
}

.lightbox figure {
  display: flex;
  height: calc(100dvh - 68px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.lightbox img {
  max-width: 100%;
  max-height: calc(100dvh - 120px);
  border-radius: 8px;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.lightbox-close,
.lightbox-arrow {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
  place-items: center;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 5;
  width: 48px;
  height: 48px;
  font-size: 28px;
}

.lightbox-arrow {
  width: 54px;
  height: 54px;
  transition: background 0.2s ease, color 0.2s ease;
}

.lightbox-arrow .ui-arrow {
  width: 24px;
  height: 24px;
}

.lightbox-arrow:hover,
.lightbox-close:hover {
  background: var(--orange);
  color: white;
}

html.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

html.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 64px, 960px);
  }

  .main-nav {
    gap: 17px;
  }

  .hero {
    min-height: 800px;
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
    padding-inline: 42px;
  }

  .hero-title {
    font-size: clamp(56px, 7vw, 76px);
  }

  .hero-visual {
    height: 500px;
  }

  .visual-card-main {
    right: 24px;
  }

  .case-intro,
  .services-head,
  .process-head {
    gap: 46px;
  }

  .case-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    gap: 16px;
  }

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

  .principles-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .principles-list li:nth-child(2n) {
    border-right: 0;
  }

  .outcome-grid {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 48px);
  }

  .site-header {
    top: 12px;
    width: calc(100vw - 24px);
    min-height: 58px;
    padding-right: 9px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    color: white;
  }

  .menu-toggle span:not(.sr-only) {
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    min-height: 100vh;
    height: 100dvh;
    padding: calc(96px + env(safe-area-inset-top)) 24px calc(24px + env(safe-area-inset-bottom));
    overflow-y: auto;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--cream);
    font-size: clamp(29px, 8vw, 42px);
    font-weight: 800;
    letter-spacing: -0.04em;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .main-nav a {
    padding: 14px 0;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .main-nav > a:not(.nav-cta) {
    border-bottom: 1px solid rgba(22, 22, 22, 0.18);
  }

  .nav-cta {
    margin-top: auto;
    padding: 18px 22px;
    color: white;
    font-size: 16px;
    letter-spacing: 0;
    text-align: center;
  }

  body.menu-open .site-header {
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100vh;
    height: 100dvh;
    align-items: flex-start;
    padding: 20px 20px 0;
    border: 0;
    border-radius: 0;
    background: var(--cream);
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }

  body.menu-open .wordmark {
    position: fixed;
    top: calc(24px + env(safe-area-inset-top));
    left: 24px;
    z-index: 103;
  }

  body.menu-open .menu-toggle {
    position: fixed;
    top: calc(16px + env(safe-area-inset-top));
    right: 16px;
    z-index: 104;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 126px 24px 94px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(100%, 560px);
    height: 470px;
    margin-inline: auto;
  }

  .portrait-backdrop {
    top: 50px;
    right: 10px;
    height: 390px;
  }

  .portrait-card {
    top: 28px;
    right: 34px;
    height: 410px;
  }

  .portrait-tag-pink {
    top: 280px;
  }

  .portrait-tag-lime {
    bottom: 18px;
  }

  .hero-foot {
    right: 24px;
    bottom: 22px;
    left: 24px;
  }

  .case-section,
  .principles,
  .services,
  .advantages,
  .about,
  .process,
  .outcome,
  .brief,
  .contact {
    padding-block: 92px;
  }

  .case-intro,
  .services-head,
  .advantages-head,
  .process-head,
  .outcome-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .brief-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .brief-copy {
    position: static;
  }

  .case-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item-featured {
    width: 80%;
    margin-inline: auto;
  }

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

  .principles-script {
    margin-left: 10%;
  }

  .principles-lead {
    margin-top: 52px;
  }

  .services-list li {
    grid-template-columns: 46px 1fr 30px;
  }

  .services-list li p {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-copy {
    padding-left: 18%;
  }

  .stat {
    min-height: 230px;
  }

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

  .process-list li:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.24);
  }

  .process-list li:nth-child(2n) {
    border-right: 0;
  }

  .outcome-list {
    margin-top: 0;
  }

  .outcome-quote {
    margin-top: 20px;
  }

  .contact-orb {
    top: auto;
    right: -180px;
    bottom: 30px;
    width: 400px;
    height: 400px;
    transform: none;
  }

  .contact-script {
    margin-left: 10%;
  }

  .site-footer {
    padding-inline: 24px;
  }
}

@media (max-width: 520px) {
  :root {
    --shell: calc(100% - 40px);
    --radius: 20px;
  }

  .wordmark small {
    display: none;
  }

  .hero {
    gap: 40px;
    padding: 118px 20px 82px;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 9px;
  }

  .hero-title {
    font-size: clamp(43px, 13.2vw, 63px);
    line-height: 0.95;
  }

  .hero-title-accent::after {
    height: 5px;
  }

  .hero-lead {
    margin-top: 27px;
    font-size: 17px;
  }

  .hero-actions {
    gap: 22px;
    align-items: stretch;
    margin-top: 30px;
    flex-direction: column;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .legal-header {
    min-height: 78px;
    padding: 16px 20px;
  }

  .legal-header .wordmark small {
    display: none;
  }

  .legal-main {
    width: min(100% - 40px, 880px);
    padding: 52px 0 80px;
  }

  .legal-draft {
    margin: 32px 0 46px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    width: fit-content;
  }

  .hero-visual {
    height: 400px;
  }

  .portrait-backdrop {
    top: 38px;
    right: 7px;
    width: 80%;
    height: 336px;
    border-radius: 18px;
    box-shadow: 5px 6px 0 var(--ink);
  }

  .portrait-card {
    top: 18px;
    right: 23px;
    width: 77%;
    height: 350px;
    border-radius: 18px;
    box-shadow: 5px 6px 0 var(--ink);
  }

  .portrait-card::after {
    border-width: 6px;
    border-radius: 14px;
  }

  .portrait-card figcaption {
    right: 10px;
    bottom: 10px;
    padding: 7px 9px;
    font-size: 7px;
  }

  .portrait-tag {
    padding: 10px 12px;
    box-shadow: 4px 5px 0 var(--ink);
    font-size: 13px;
  }

  .portrait-tag-pink {
    top: 256px;
    left: -2px;
  }

  .portrait-tag-lime {
    right: -2px;
    bottom: 12px;
    font-size: 10px;
  }

  .visual-card {
    box-shadow: 5px 6px 0 var(--ink);
  }

  .visual-card-main {
    top: 70px;
    right: 20px;
    width: 80%;
    height: 165px;
    padding: 18px;
    font-size: 28px;
  }

  .visual-card-pink {
    top: 238px;
    width: 64%;
    height: 92px;
    padding: 14px;
    font-size: 23px;
  }

  .visual-card-lime {
    bottom: 8px;
    height: 86px;
    padding: 13px;
    font-size: 23px;
  }

  .experience-sticker {
    width: 104px;
    height: 104px;
    box-shadow: 4px 5px 0 var(--ink);
  }

  .experience-sticker strong {
    font-size: 34px;
  }

  .experience-sticker span {
    font-size: 7px;
  }

  .hero-signature {
    right: 10px;
    bottom: -24px;
    font-size: 29px;
  }

  .hero-foot span:last-of-type,
  .hero-foot i:last-of-type {
    display: none;
  }

  .ticker-track {
    padding: 14px 0;
    font-size: 24px;
  }

  .ticker-track b {
    margin-inline: 14px;
  }

  .section-label {
    margin-bottom: 30px;
  }

  .case-section,
  .principles,
  .services,
  .advantages,
  .about,
  .process,
  .outcome,
  .brief,
  .contact {
    padding-block: 74px;
  }

  .case-section {
    padding-block: 58px 64px;
  }

  .services-head h2,
  .advantages-head h2,
  .about h2,
  .outcome h2 {
    font-size: clamp(43px, 12vw, 58px);
  }

  .case-title {
    font-size: clamp(36px, 10.8vw, 46px);
  }

  .case-intro {
    margin-bottom: 30px;
  }

  .gallery-item-featured {
    width: 100%;
  }

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

  .case-gallery {
    display: flex;
    width: calc(100% + 20px);
    gap: 14px;
    margin-right: -20px;
    padding: 2px 20px 12px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0 20px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .case-gallery::-webkit-scrollbar {
    display: none;
  }

  .case-gallery .gallery-grid {
    display: contents;
  }

  .case-gallery .gallery-item,
  .case-gallery .gallery-item-featured {
    width: auto;
    min-width: 0;
    flex: 0 0 min(76vw, 320px);
    margin: 0;
    aspect-ratio: 3 / 4;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .case-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .principles-heading h2 {
    font-size: 52px;
    line-height: 0.92;
  }

  .principles-script {
    margin-top: 12px;
    margin-left: 0;
    font-size: 44px;
  }

  .principles-lead {
    margin: 42px 0 48px;
    font-size: 17px;
  }

  .principles-list {
    grid-template-columns: 1fr;
  }

  .principles-list li,
  .principles-list li:nth-child(2n) {
    min-height: 190px;
    border-right: 0;
  }

  .principles-list li > span {
    margin-bottom: 44px;
  }

  .services-head {
    margin-bottom: 44px;
  }

  .advantages-head {
    margin-bottom: 44px;
  }

  .advantage-card {
    min-height: 250px;
    padding: 24px;
  }

  .advantage-card > span {
    margin-bottom: 54px;
  }

  .advantage-card h3 {
    font-size: 29px;
  }

  .advantages-accent {
    margin-top: 58px;
    font-size: 48px;
  }

  .services-list li {
    min-height: 94px;
    grid-template-columns: 34px 1fr 24px;
    gap: 12px;
    padding-inline: 0;
  }

  .services-list li:hover {
    padding-inline: 8px;
  }

  .services-list h3 {
    font-size: 22px;
  }

  .about-copy {
    padding-left: 0;
  }

  .about-copy p {
    font-size: 17px;
  }

  .stat {
    min-height: 190px;
    padding: 25px;
  }

  .stat strong {
    font-size: 92px;
  }

  .stat span {
    font-size: 9px;
  }

  .process-head h2 {
    font-size: 51px;
  }

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

  .process-list li,
  .process-list li:nth-child(3n),
  .process-list li:nth-child(2n) {
    min-height: 142px;
    border-right: 0;
  }

  .outcome-list li {
    align-items: flex-start;
    font-size: 13px;
  }

  .outcome-quote {
    margin-bottom: -22px;
    font-size: 53px;
    line-height: 0.9;
  }

  .brief-copy h2 {
    font-size: 55px;
  }

  .brief-copy > p:not(.section-label) {
    margin-top: 28px;
    font-size: 15px;
  }

  .brief-form {
    gap: 22px;
    padding: 24px 18px;
    border-radius: 22px;
    box-shadow: 6px 7px 0 var(--ink);
  }

  .form-row-two {
    grid-template-columns: 1fr;
  }

  .form-options {
    gap: 7px;
  }

  .form-options span {
    padding: 10px 12px;
    font-size: 10px !important;
  }

  .contact h2 {
    font-size: 67px;
    line-height: 0.83;
  }

  .contact-script {
    margin-top: 13px;
    margin-left: 0;
    font-size: 53px;
  }

  .contact-lead {
    margin: 46px 0 38px;
    font-size: 16px;
  }

  .contact-links a {
    grid-template-columns: 1fr 26px;
    gap: 10px;
  }

  .contact-links span {
    grid-column: 1 / -1;
  }

  .contact-links strong {
    font-size: 18px;
  }

  .contact-orb {
    right: -240px;
    bottom: 60px;
  }

  .site-footer {
    min-height: 140px;
    align-items: flex-start;
    padding-block: 32px;
    flex-direction: column;
  }

  .lightbox {
    padding: 70px 14px 22px;
  }

  .lightbox[open] {
    grid-template-columns: 44px 1fr 44px;
    gap: 6px;
  }

  .lightbox-arrow {
    width: 42px;
    height: 42px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
