:root {
  --ink: #171814;
  --ink-soft: #292b25;
  --paper: #f3f0e7;
  --paper-deep: #e9e5da;
  --white: #fffdf7;
  --lime: #c9f44c;
  --lime-deep: #aee51b;
  --lavender: #d6d1ff;
  --line: rgba(23, 24, 20, 0.18);
  --line-light: rgba(255, 255, 255, 0.18);
  --muted: #66685e;
  --sans: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --latin: "Inter", "Helvetica Neue", Arial, var(--sans);
  --container: 1240px;
  --header-height: 82px;
  --radius: 3px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

/* 의도적 줄바꿈: 문장·구 단위. 화면 폭에 따라 켜고 끔 */
br.break-desktop {
  display: none;
}

br.break-mobile {
  display: inline;
}

@media (min-width: 600px) {
  br.break-desktop {
    display: inline;
  }

  br.break-mobile {
    display: none;
  }
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid #3974ff;
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(23, 24, 20, 0.94);
  color: var(--white);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-light);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--latin);
  font-size: 13px;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.wordmark__switch {
  position: relative;
  width: 38px;
  height: 22px;
  border-radius: 20px;
  background: var(--lime);
}

.wordmark__switch i {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 13px;
  font-weight: 600;
}

.primary-nav a {
  position: relative;
  padding: 12px 0;
}

.primary-nav a:not(.primary-nav__cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav__cta {
  padding: 10px 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 30px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.primary-nav__cta:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.menu-toggle__lines {
  display: grid;
  gap: 5px;
}

.menu-toggle__lines i {
  width: 24px;
  height: 1px;
  display: block;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.section {
  padding-block: clamp(100px, 11vw, 170px);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero__glow {
  position: absolute;
  z-index: -1;
  top: -12%;
  right: -8%;
  width: min(50vw, 700px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 244, 76, 0.18), transparent 66%);
  filter: blur(8px);
}

.hero__inner {
  position: relative;
  min-height: 710px;
  display: flex;
  flex-direction: column;
  padding-block: clamp(48px, 7vh, 86px) 36px;
}

.hero__eyebrow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--latin);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.hero__title {
  position: relative;
  z-index: 2;
  margin: clamp(54px, 7vh, 88px) 0 40px;
  max-width: 1080px;
  font-size: clamp(52px, 7.25vw, 108px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.065em;
}

.hero__title > span {
  position: relative;
  display: inline-block;
  padding-right: 0.32em;
  color: var(--lime);
}

.hero__title i {
  position: absolute;
  right: 0;
  bottom: 0.08em;
  width: 0.18em;
  height: 0.18em;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 28px rgba(201, 244, 76, 0.9);
  pointer-events: none;
}

.hero__bottom {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}

.hero__description {
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.65;
}

.button {
  min-width: 210px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button span[aria-hidden="true"] {
  font-size: 21px;
}

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

.button--light {
  background: var(--lime);
  color: var(--ink);
}

.button--light:hover {
  background: var(--white);
}

.hero__visual {
  position: absolute;
  z-index: 1;
  right: 7%;
  bottom: 6%;
  width: min(65%, 850px);
  height: 36%;
  pointer-events: none;
  opacity: 0.95;
}

.hero__visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__visual path {
  fill: none;
  stroke: rgba(201, 244, 76, 0.5);
  stroke-width: 1.2;
  stroke-dasharray: 4 8;
}

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

.orbit--one {
  right: 2%;
  bottom: -48%;
  width: 410px;
  height: 410px;
}

.orbit--two {
  right: 14%;
  bottom: -13%;
  width: 250px;
  height: 250px;
}

.switch-object {
  position: absolute;
  z-index: 2;
  top: 27%;
  right: 10%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  font: 600 9px/1 var(--latin);
  letter-spacing: 0.12em;
  transform: rotate(-11deg);
}

.switch-object__track {
  position: relative;
  width: 130px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 80px;
  background: rgba(255, 255, 255, 0.04);
}

.switch-object__track i {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 32px rgba(201, 244, 76, 0.42);
}

.section-heading {
  margin-bottom: clamp(60px, 8vw, 105px);
}

.section-heading--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  color: var(--muted);
  font: 700 clamp(18px, 1.7vw, 22px) / 1 var(--latin);
  letter-spacing: 0.14em;
}

.section-kicker span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5.15vw, 74px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.055em;
  text-wrap: pretty;
}

.section-heading h2 em {
  font-style: normal;
  color: var(--muted);
}

.section-heading__aside {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.7;
}

.section-heading--services {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-heading--services .section-kicker {
  align-self: flex-start;
  margin-bottom: 0;
}

.manifesto {
  background: var(--paper);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 clamp(56px, 8vw, 96px);
}

.stat-card {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.stat-card__label {
  margin: 0;
  color: var(--muted);
  font: 700 11px/1 var(--latin);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat-card__value {
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(60px, 12vw, 180px);
  margin: 0 0 clamp(80px, 10vw, 130px) clamp(18%, 17vw, 220px);
}

.manifesto__lead {
  margin: 0;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.03em;
}

.manifesto__note {
  padding-top: 3px;
}

.manifesto__note p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.tag {
  display: inline-block;
  margin: 0;
  font: 700 10px/1 var(--latin);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.process__item {
  position: relative;
  min-height: 315px;
  padding: 28px 28px 34px;
  border-right: 1px solid var(--line);
}

.process__item:last-child {
  border-right: 0;
}

.process__number {
  color: var(--muted);
  font: 600 10px/1 var(--latin);
}

.process__icon {
  height: 115px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: 42px;
  transition: transform 0.25s ease;
}

.process__item:hover .process__icon {
  transform: translateY(-5px) rotate(8deg);
  color: #6c9300;
}

.process h3 {
  margin: 0 0 12px;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.process p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.services {
  background: var(--paper-deep);
}

.service-list {
  border-top: 1px solid var(--ink);
}

.service-list__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: clamp(28px, 4vw, 40px) 10px clamp(32px, 4.5vw, 48px);
  border-bottom: 1px solid var(--line);
}

.service-list__progress {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.15vw, 74px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.055em;
}

.service-list__lede {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.service-card {
  display: grid;
  grid-template-columns: 70px 130px minmax(0, 1fr) 40px;
  align-items: center;
  min-height: 146px;
  padding: 22px 20px 22px 10px;
  border-bottom: 1px solid var(--line);
  transition:
    background 0.3s ease,
    padding 0.3s ease;
}

.service-card:hover {
  padding-right: 30px;
  padding-left: 20px;
  background: var(--lime);
}

.service-card__index {
  align-self: start;
  margin-top: 9px;
  color: var(--muted);
  font: 600 10px/1 var(--latin);
}

.service-card__symbol {
  height: 76px;
  display: flex;
  align-items: center;
}

.service-card__content {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) 1.25fr;
  align-items: center;
  gap: 24px;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: -0.045em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-card__arrow {
  font-size: 24px;
  text-align: right;
  transition: transform 0.25s ease;
}

.service-card:hover .service-card__arrow {
  transform: rotate(45deg);
}

.symbol-rings {
  width: 67px;
  height: 44px;
  display: block;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 21px 0 0 -2px var(--paper-deep), 21px 0 0 0 var(--ink);
  transform: scale(0.72);
}

.service-card:hover .symbol-rings {
  box-shadow: 21px 0 0 -2px var(--lime), 21px 0 0 0 var(--ink);
}

.symbol-text {
  font: 700 36px/1 var(--latin);
  letter-spacing: -0.08em;
}

.symbol-chart {
  height: 53px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.symbol-chart b {
  width: 12px;
  display: block;
  background: var(--ink);
}

.symbol-chart b:nth-child(1) {
  height: 20px;
}

.symbol-chart b:nth-child(2) {
  height: 36px;
}

.symbol-chart b:nth-child(3) {
  height: 51px;
}

.symbol-play {
  width: 62px;
  height: 46px;
  display: block;
  border: 2px solid var(--ink);
  border-radius: 50%;
  position: relative;
}

.symbol-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--ink);
  transform: translate(-50%, -50%);
}

.symbol-grid {
  width: 54px;
  height: 54px;
  display: block;
  background:
    linear-gradient(90deg, transparent 45%, var(--ink) 45% 55%, transparent 55%),
    linear-gradient(transparent 45%, var(--ink) 45% 55%, transparent 55%);
  border: 2px solid var(--ink);
  transform: rotate(8deg);
}

.symbol-switch {
  position: relative;
  width: 72px;
  height: 38px;
  display: block;
  border: 2px solid var(--ink);
  border-radius: 30px;
}

.symbol-switch b {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
}

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

.work .section-heading h2 em {
  color: rgba(255, 255, 255, 0.45);
}

.work .section-heading__aside {
  color: rgba(255, 255, 255, 0.55);
}

.section-kicker--light {
  color: rgba(255, 255, 255, 0.53);
}

.ai-highlight {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.04);
}

.ai-highlight__lead {
  margin: 0;
  max-width: 42em;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.ai-highlight__copy {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
}

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

.case-card {
  min-width: 0;
  color: var(--ink);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-8px);
}

.case-card--lime {
  background: var(--lime);
}

.case-card--cream {
  background: #f2eadc;
}

.case-card--lavender {
  background: var(--lavender);
}

.case-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(23, 24, 20, 0.2);
}

.case-card__label {
  font: 700 9px/1 var(--latin);
  letter-spacing: 0.13em;
}

.case-card__mark {
  font-size: 17px;
}

.case-card__art {
  position: relative;
  height: 290px;
  margin: 18px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--latin);
}

.case-card__art--local span,
.case-card__art--local b {
  position: absolute;
  z-index: 2;
  left: 22px;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.case-card__art--local span {
  top: 22px;
  color: var(--lime);
}

.case-card__art--local b {
  bottom: 22px;
}

.case-card__art--local i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border: 22px solid var(--lime);
  border-radius: 50% 50% 4% 50%;
  transform: translate(-35%, -50%) rotate(-24deg);
}

.case-card__art--launch {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(214, 209, 255, 0.16), transparent 40%),
    var(--ink);
}

.case-card__art--launch span,
.case-card__art--launch b {
  position: absolute;
  z-index: 2;
  font-weight: 700;
  font-size: 46px;
  letter-spacing: -0.06em;
}

.case-card__art--launch span {
  top: 28px;
  left: 20px;
}

.case-card__art--launch b {
  right: 20px;
  bottom: 28px;
  color: var(--lavender);
}

.case-card__art--launch i {
  width: 110px;
  height: 110px;
  display: block;
  background: var(--lavender);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 61%, 50% 100%, 38% 61%, 0 50%, 38% 38%);
  animation: slowSpin 18s linear infinite;
}

.case-card__art--conversion {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding-bottom: 36px;
}

.case-card__art--conversion i {
  width: 54px;
  background: var(--lavender);
  border-radius: 60px 60px 0 0;
}

.case-card__art--conversion i:nth-child(1) {
  height: 70px;
  opacity: 0.35;
}

.case-card__art--conversion i:nth-child(2) {
  height: 135px;
  opacity: 0.6;
}

.case-card__art--conversion i:nth-child(3) {
  height: 205px;
}

.case-card__art--conversion b {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--lavender);
  font-size: 50px;
  letter-spacing: -0.08em;
}

.case-card__body {
  min-height: 260px;
  padding: 20px 24px 32px;
}

.case-card__body .tag {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(23, 24, 20, 0.2);
}

.case-card__body h3 {
  margin: 28px 0 20px;
  font-size: clamp(25px, 2.2vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.05em;
}

.case-card__body > p:last-child {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  opacity: 0.7;
}

.reviews {
  background: var(--white);
}

.review-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px 28px 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.review-card__quote {
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.review-card__body {
  margin: 0;
  flex: 1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.review-card__meta {
  display: grid;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-card__meta strong {
  font-size: 15px;
  letter-spacing: -0.03em;
}

.review-card__meta span {
  color: var(--muted);
  font-size: 12px;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--lime);
  text-align: center;
}

.contact__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-kicker--dark {
  color: rgba(23, 24, 20, 0.65);
}

.contact__title {
  margin: 12px 0 24px;
  font-size: clamp(43px, 6.2vw, 88px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.065em;
}

.contact__description {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 21px);
}

.contact__actions {
  display: flex;
  gap: 10px;
  margin-top: 48px;
}

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

.button--outline-dark {
  border-color: rgba(23, 24, 20, 0.45);
  background: transparent;
}

.button--outline-dark:hover {
  background: rgba(23, 24, 20, 0.08);
}

.contact__notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(23, 24, 20, 0.58);
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
}

.contact__shape {
  position: absolute;
  border: 1px solid rgba(23, 24, 20, 0.14);
  border-radius: 50%;
}

.contact__shape::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(23, 24, 20, 0.12);
  border-radius: inherit;
}

.contact__shape--left {
  bottom: -180px;
  left: -180px;
  width: 500px;
  height: 500px;
}

.contact__shape--right {
  top: -160px;
  right: -180px;
  width: 450px;
  height: 450px;
}

.site-footer {
  padding-block: 66px 28px;
  background: var(--ink);
  color: var(--white);
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 64px;
}

.site-footer__brand {
  display: grid;
  gap: 16px;
}

.wordmark--footer {
  font-size: 18px;
}

.wordmark--footer .wordmark__switch {
  width: 52px;
  height: 29px;
}

.wordmark--footer .wordmark__switch i {
  width: 19px;
  height: 19px;
  top: 5px;
  right: 5px;
}

.site-footer__slogan {
  margin: 0;
  color: var(--lime);
  font: 700 12px/1.4 var(--latin);
  letter-spacing: 0.08em;
}

.site-footer__top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  text-align: right;
}

.site-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.62);
  font: 500 11px/1.6 var(--latin);
  letter-spacing: 0.04em;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__legal {
  display: grid;
  gap: 6px;
}

.site-footer__legal strong {
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.04em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.process__item:nth-child(2),
.service-card:nth-child(2),
.case-card:nth-child(2) {
  transition-delay: 0.08s;
}

.process__item:nth-child(3),
.service-card:nth-child(3),
.case-card:nth-child(3) {
  transition-delay: 0.16s;
}

.process__item:nth-child(4),
.service-card:nth-child(4) {
  transition-delay: 0.24s;
}

.service-card:nth-child(5) {
  transition-delay: 0.32s;
}

.service-card:nth-child(6) {
  transition-delay: 0.4s;
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .hero__inner {
    min-height: 680px;
  }

  .hero__title {
    font-size: clamp(52px, 8vw, 78px);
  }

  .manifesto__grid {
    margin-left: 10%;
    gap: 60px;
  }

  .process__item {
    min-height: 290px;
    padding: 25px 20px;
  }

  .service-card {
    grid-template-columns: 50px 90px minmax(0, 1fr) 30px;
  }

  .service-card__content {
    grid-template-columns: minmax(190px, 0.65fr) 1.35fr;
  }

  .case-card__art {
    height: 230px;
  }

  .case-card__body {
    min-height: 280px;
  }
}

@media (max-width: 780px) {
  .site-header {
    height: 68px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    height: calc(100svh - 68px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 32px 24px 90px;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 17px 6px;
    border-bottom: 1px solid var(--line-light);
    font-size: 24px;
  }

  .primary-nav__cta {
    margin-top: 28px;
    padding: 15px 20px !important;
    text-align: center;
    font-size: 15px !important;
  }

  .hero {
    min-height: calc(100svh - 68px);
  }

  .hero__inner {
    min-height: 670px;
    padding-block: 36px 28px;
  }

  .hero__title {
    margin-top: 55px;
    font-size: clamp(46px, 12.3vw, 74px);
    line-height: 1.18;
  }

  .hero__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero__bottom .button {
    width: 100%;
  }

  .hero__visual {
    right: -30%;
    bottom: 21%;
    width: 110%;
    height: 27%;
    opacity: 0.66;
  }

  .switch-object {
    right: 28%;
    transform: scale(0.72) rotate(-11deg);
    transform-origin: right;
  }

  .section-heading--split {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading__aside {
    padding-left: 0;
  }

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

  .manifesto__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-left: 0;
  }

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

  .process__item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process__item:last-child {
    border-bottom: 0;
  }

  .service-card {
    grid-template-columns: 42px 75px minmax(0, 1fr) 25px;
    min-height: 125px;
  }

  .service-card__symbol {
    transform: scale(0.8);
    transform-origin: left center;
  }

  .service-card__content {
    display: block;
  }

  .service-card p {
    margin-top: 7px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .case-card__top {
    grid-column: 1 / -1;
  }

  .case-card__art {
    height: auto;
    min-height: 290px;
  }

  .case-card__body {
    min-height: 0;
    align-self: center;
  }

  .review-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(78%, 320px);
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .review-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 88px;
  }

  .wordmark {
    font-size: 11px;
  }

  .wordmark__switch {
    width: 34px;
    height: 20px;
  }

  .wordmark__switch i {
    width: 12px;
    height: 12px;
  }

  .hero__inner {
    min-height: 680px;
  }

  .hero__title {
    font-size: clamp(32px, 9.8vw, 52px);
    letter-spacing: -0.07em;
  }

  .hero__description {
    font-size: 15px;
  }

  .section-heading {
    margin-bottom: 54px;
  }

  .section-heading h2 {
    font-size: clamp(30px, 8.4vw, 42px);
    line-height: 1.3;
  }

  .section-heading--services {
    align-items: stretch;
    text-align: left;
    margin-bottom: 36px;
  }

  .service-list__intro {
    padding: 24px 4px 28px;
    gap: 10px;
  }

  .service-list__progress {
    font-size: clamp(30px, 8.4vw, 42px);
  }

  .service-list__lede {
    max-width: 100%;
    font-size: clamp(15px, 4.2vw, 20px);
    white-space: normal;
    text-wrap: pretty;
  }

  .contact__title {
    font-size: clamp(30px, 8.6vw, 42px);
    line-height: 1.3;
  }

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

  .process__item {
    min-height: 0;
    display: grid;
    grid-template-columns: 30px 62px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0 12px;
    padding: 24px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process__item:last-child {
    border-bottom: 0;
  }

  .process__number {
    grid-row: 1 / 3;
  }

  .process__icon {
    grid-row: 1 / 3;
    height: auto;
    font-size: 30px;
  }

  .process h3 {
    margin: 0 0 3px;
    font-size: 18px;
  }

  .process p {
    font-size: 12px;
  }

  .service-card {
    position: relative;
    grid-template-columns: 34px 56px minmax(0, 1fr);
    min-height: 116px;
    padding-right: 8px;
    padding-left: 2px;
  }

  .service-card:hover {
    padding-right: 8px;
    padding-left: 2px;
  }

  .service-card__index {
    font-size: 8px;
  }

  .service-card__symbol {
    transform: scale(0.62);
  }

  .service-card h3 {
    font-size: 21px;
  }

  .service-card p {
    font-size: 11px;
    line-height: 1.55;
  }

  .service-card__arrow {
    position: absolute;
    top: 14px;
    right: 4px;
    font-size: 16px;
  }

  .case-card {
    display: block;
  }

  .case-card__art {
    height: 250px;
    min-height: 0;
  }

  .case-card__body {
    min-height: 255px;
  }

  .review-rail {
    grid-auto-columns: minmax(86%, 300px);
  }

  .contact__actions {
    width: 100%;
    flex-direction: column;
  }

  .contact__actions .button {
    width: 100%;
  }

  .contact__notice {
    align-items: flex-start;
    text-align: left;
  }

  .site-footer {
    padding-top: 50px;
  }

  .site-footer__top {
    gap: 40px;
    flex-direction: column;
  }

  .site-footer__top > p {
    text-align: left;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #43453d;
    --line: rgba(23, 24, 20, 0.42);
  }
}


/* olive mate: hide legacy switch knob on wordmark */
.wordmark__switch { display: none !important; }
