:root {
  --paper: #ffffff;
  --paper-soft: #f6f6f4;
  --ink: #111111;
  --muted: rgba(17, 17, 17, 0.56);
  --brick: #9f2f2b;
  --brick-deep: #111111;
  --line: rgba(17, 17, 17, 0.1);
}

/* Event popup */
body.is-event-popup-open {
  overflow: hidden;
}

.event-popup[hidden] {
  display: none;
}

.event-popup {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 32px);
  background: rgba(0, 0, 0, 0.76);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.event-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.event-popup-dialog {
  position: relative;
  display: flex;
  max-width: min(620px, 92vw);
  max-height: calc(100vh - 32px);
  flex-direction: column;
  overflow: visible;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  transform: translateY(12px) scale(0.985);
  transition: transform 0.22s ease;
}

.event-popup.is-open .event-popup-dialog {
  transform: translateY(0) scale(1);
}

.event-popup-image-link {
  display: block;
  min-height: 0;
  overflow: hidden;
  background: #fff;
}

.event-popup-image-link img {
  display: block;
  width: auto;
  max-width: min(620px, 92vw);
  height: auto;
  max-height: calc(85vh - 62px);
  margin: 0 auto;
  object-fit: contain;
}

.event-popup-close-icon {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 50%;
  background: #fff;
  color: #111;
  font: 300 30px/1 Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.event-popup-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 58px;
  border-top: 1px solid #ddd;
  background: #fff;
}

.event-popup-actions button {
  border: 0;
  background: #fff;
  color: #171717;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}

.event-popup-actions button + button {
  border-left: 1px solid #ddd;
}

.event-popup-actions button:hover,
.event-popup-actions button:focus-visible {
  background: #f3f3f3;
}

.event-popup-close-icon:focus-visible,
.event-popup-image-link:focus-visible,
.event-popup-actions button:focus-visible {
  outline: 3px solid #e30613;
  outline-offset: 2px;
}

.event-popup-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;
}

@media (max-width: 640px) {
  .event-popup {
    padding: 16px;
  }

  .event-popup-dialog {
    width: calc(100vw - 32px);
    max-width: none;
    max-height: calc(100dvh - 32px);
  }

  .event-popup-image-link img {
    width: 100%;
    max-width: none;
    max-height: calc(100dvh - 106px);
  }

  .event-popup-close-icon {
    top: -12px;
    right: -8px;
  }

  .event-popup-actions {
    min-height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-popup,
  .event-popup-dialog {
    transition: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Pretendard",
    "Noto Sans KR",
    "Apple SD Gothic Neo",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

@media (max-width: 760px), (pointer: coarse) {
  html {
    scroll-behavior: auto;
  }

  .cursor-trace {
    display: none;
  }

  #css3d-container {
    pointer-events: none;
  }

  .portfolio-preview,
  .browser-frame:hover .work-screenshot,
  .browser-frame:focus-within .work-screenshot {
    animation-play-state: paused;
  }
}

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

.cursor-trace {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 60;
  width: 1px;
  height: 1px;
  pointer-events: none;
  transform: translate3d(var(--cursor-x, -120px), var(--cursor-y, -120px), 0);
  transition: opacity 220ms ease;
}

.cursor-trace i {
  position: absolute;
  left: -4px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brick);
  box-shadow: 0 0 0 8px rgba(159, 47, 43, 0.1);
}

.cursor-trace span {
  position: absolute;
  left: 12px;
  top: 0;
  width: 54px;
  height: 1px;
  background: currentColor;
  color: rgba(17, 17, 17, 0.38);
  transform-origin: left center;
  transform: rotate(var(--cursor-angle, 0deg)) scaleX(var(--cursor-speed, 0.35));
  transition:
    color 420ms ease,
    transform 120ms linear;
}

body.is-dark-section .cursor-trace span {
  color: rgba(255, 255, 255, 0.42);
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 92px 92px;
  color: var(--ink);
  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-loader.is-done {
  visibility: hidden;
  opacity: 0;
}

.intro-count {
  position: absolute;
  left: clamp(24px, 5vw, 78px);
  bottom: clamp(24px, 5vw, 70px);
  font-family: "Pretendard", "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(54px, 10vw, 148px);
  font-weight: 800;
  line-height: 0.8;
}

.intro-name {
  position: relative;
  z-index: 2;
  font-family: "Pretendard", "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(68px, 12vw, 210px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.82;
  animation: introName 2400ms cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
}

.intro-ghost {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 17, 17, 0.08);
  font-size: clamp(90px, 21vw, 330px);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.intro-ghost span {
  position: absolute;
  opacity: 0;
  transform: translateY(70px) scale(0.98);
  animation: introWord 3600ms cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.intro-ghost span:nth-child(2) {
  animation-delay: 900ms;
}

.intro-ghost span:nth-child(3) {
  animation-delay: 1800ms;
}

.intro-line {
  position: absolute;
  left: clamp(24px, 5vw, 78px);
  right: clamp(24px, 5vw, 78px);
  bottom: clamp(112px, 12vw, 180px);
  height: 2px;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.12);
}

.intro-line i {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--ink);
  transition: width 180ms linear;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  width: 100%;
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: clamp(16px, 3vw, 44px);
  align-items: center;
  padding: 24px clamp(22px, 5vw, 74px);
  pointer-events: none;
  transition: color 420ms ease;
}

.site-header a,
.site-header button {
  color: inherit;
  pointer-events: auto;
}

.brand {
  justify-self: start;
  min-width: clamp(112px, 10vw, 170px);
  font-size: 14px;
  font-weight: 900;
}

.site-header nav {
  display: flex;
  gap: clamp(18px, 2.3vw, 34px);
  align-items: center;
  justify-self: end;
  margin: 0 clamp(12px, 2.8vw, 44px) 0 0;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 999px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.42);
  color: rgba(17, 17, 17, 0.72);
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 650;
  line-height: 1;
  box-shadow: 0 16px 46px rgba(17, 17, 17, 0.05);
  backdrop-filter: blur(14px);
}

.site-header nav a {
  transition: color 220ms ease, transform 220ms ease;
}

.site-header nav a:hover {
  color: var(--brick);
  transform: translateY(-1px);
}

.menu-button {
  display: flex;
  width: 64px;
  height: 42px;
  justify-self: end;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 16px 46px rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition:
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.menu-button span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: currentColor;
  transform-origin: right center;
  transition:
    width 240ms ease,
    background 240ms ease,
    transform 240ms ease;
}

.menu-button span + span {
  width: 16px;
  opacity: 0.72;
}

.menu-button:hover {
  border-color: rgba(159, 47, 43, 0.36);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 20px 54px rgba(159, 47, 43, 0.12);
  transform: translateY(-2px);
}

.menu-button:hover span {
  background: var(--brick);
}

.menu-button:hover span:first-child {
  width: 17px;
}

.menu-button:hover span + span {
  width: 27px;
}

body.is-dark-section .site-header {
  color: #fff;
}

body.is-dark-section .site-header nav {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(17, 17, 17, 0.28);
  color: rgba(255, 255, 255, 0.72);
}

body.is-dark-section .menu-button {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(17, 17, 17, 0.32);
}

body.is-menu-open {
  overflow: hidden;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  justify-items: end;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition:
    background 420ms ease,
    opacity 320ms ease;
}

.menu-panel::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 76%, rgba(255, 74, 63, 0.16), transparent 26%),
    rgba(0, 0, 0, 0.42);
  content: "";
}

.menu-panel-inner {
  position: relative;
  display: grid;
  align-content: center;
  width: min(520px, 100%);
  min-height: 100svh;
  padding: clamp(88px, 10vw, 132px) clamp(28px, 5vw, 70px) clamp(42px, 6vw, 72px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(8, 8, 8, 0.88);
  background-size: 72px 72px;
  box-shadow: -40px 0 100px rgba(0, 0, 0, 0.32);
  color: #fff;
  transform: translateX(100%);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(22px);
}

.menu-panel-inner > span {
  margin-bottom: 42px;
  color: #ff4a3f;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.menu-panel nav {
  display: grid;
  gap: 0;
}

.menu-panel nav a {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.95;
  opacity: 0;
  transform: translateX(28px);
  transition:
    color 260ms ease,
    opacity 420ms ease,
    transform 420ms ease;
}

.menu-panel nav a:nth-child(1) {
  transition-delay: 80ms;
}

.menu-panel nav a:nth-child(2) {
  transition-delay: 130ms;
}

.menu-panel nav a:nth-child(3) {
  transition-delay: 180ms;
}

.menu-panel nav a:nth-child(4) {
  transition-delay: 230ms;
}

.menu-panel nav a em {
  color: rgba(255, 74, 63, 0.92);
  font-style: normal;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
}

.menu-panel nav a:hover {
  color: #ff4a3f;
  transform: translateX(10px);
}

.menu-panel-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 820;
}

.menu-panel-contact a:last-child {
  color: #ff4a3f;
}

.menu-close {
  position: absolute;
  right: clamp(22px, 5vw, 74px);
  top: 24px;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.menu-close span {
  position: absolute;
  width: 24px;
  height: 1.5px;
  background: currentColor;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

body.is-menu-open .menu-panel {
  background: rgba(0, 0, 0, 0.36);
  opacity: 1;
  pointer-events: auto;
}

body.is-menu-open .menu-panel-inner {
  transform: translateX(0);
}

body.is-menu-open .menu-panel nav a {
  opacity: 1;
  transform: translateX(0);
}

body.is-menu-open .menu-button span:first-child {
  width: 25px;
  transform: rotate(-32deg);
}

body.is-menu-open .menu-button span + span {
  width: 25px;
  transform: rotate(32deg);
}

.hero-3d {
  position: relative;
  min-height: 430svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.042) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 44%, rgba(159, 47, 43, 0.055), transparent 24%),
    var(--paper);
  background-size:
    84px 84px,
    84px 84px,
    auto,
    auto;
  isolation: isolate;
}

#css3d-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  pointer-events: none;
}

.flow-map {
  position: fixed;
  left: 50%;
  top: 49%;
  z-index: 4;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  color: rgba(17, 17, 17, 0.22);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.flow-map::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  content: "";
}

.flow-map::after {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(159, 47, 43, 0.24);
  border-radius: 50%;
  content: "";
}

.flow-map span {
  position: absolute;
  display: grid;
  width: auto;
  min-width: 96px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  padding: 0 14px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.flow-map span:nth-child(1) {
  left: 50%;
  top: -17px;
  color: var(--brick);
  transform: translateX(-50%);
}

.flow-map span:nth-child(2) {
  right: -48px;
  top: 50%;
  transform: translateY(-50%);
}

.flow-map span:nth-child(3) {
  left: 50%;
  bottom: -17px;
  transform: translateX(-50%);
}

.flow-map span:nth-child(4) {
  left: -48px;
  top: 50%;
  transform: translateY(-50%);
}

.flow-map i {
  position: absolute;
  inset: 21%;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 50%;
}

.orbit-light {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: #b4342d;
  box-shadow:
    0 0 0 5px rgba(180, 52, 45, 0.08),
    0 0 24px rgba(180, 52, 45, 0.34);
  transform: rotate(0deg) translateX(min(29vw, 380px));
  transform-origin: center;
  animation: heroOrbitOuter 14s linear infinite;
}

.orbit-light::before {
  position: absolute;
  right: 5px;
  top: 50%;
  width: 82px;
  height: 1px;
  background: linear-gradient(90deg, rgba(180, 52, 45, 0), rgba(180, 52, 45, 0.32));
  content: "";
  transform: translateY(-50%);
}

.orbit-light-inner {
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: #d8d8d5;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.52),
    0 0 22px rgba(160, 160, 154, 0.34);
  opacity: 0.82;
  transform: rotate(190deg) translateX(min(20vw, 286px));
  animation: heroOrbitInner 19s linear infinite;
}

.orbit-light-inner::before {
  width: 64px;
  background: linear-gradient(90deg, rgba(216, 216, 213, 0), rgba(120, 120, 116, 0.26));
}

.scroll-words {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: var(--outline-progress, 0);
}

.scroll-words span {
  position: absolute;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 17, 17, 0.075);
  font-family:
    "Arial Black",
    "Pretendard",
    "Noto Sans KR",
    system-ui,
    sans-serif;
  font-size: clamp(96px, 17vw, 300px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.8;
  transform: translate3d(0, calc(var(--outline-progress, 0) * -42px), 0);
}

.scroll-words span:nth-child(1) {
  left: -4vw;
  top: 18vh;
}

.scroll-words span:nth-child(2) {
  right: 7vw;
  top: 11vh;
}

.scroll-words span:nth-child(3) {
  left: 14vw;
  bottom: 10vh;
}

.scroll-words span:nth-child(4) {
  right: -9vw;
  bottom: 22vh;
}

.css3d-card {
  width: var(--w);
  height: var(--h);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 28px 44px rgba(0, 0, 0, 0.14);
  will-change: transform, opacity;
  transform-style: preserve-3d;
}

.css3d-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
}

.center-brand {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 8;
  width: min(66vw, 980px);
  text-align: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.center-brand::before {
  position: absolute;
  left: 50%;
  top: 35%;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 17, 17, 0.075);
  content: "SEARCH";
  font-family: "Arial Black", "Pretendard", "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(72px, 10vw, 176px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.8;
  transform: translate(-50%, -50%);
}

.brand-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--brick);
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 900;
  letter-spacing: 0.22em;
}

.center-brand h1 {
  position: relative;
  display: block;
  margin: 0;
  color: var(--ink);
  font-family:
    "Pretendard",
    "Noto Sans KR",
    system-ui,
    sans-serif;
  font-size: clamp(58px, 6.2vw, 112px);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  transform: none;
}

.center-brand h1::before {
  display: none;
}

.center-brand h1 span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-shadow:
    0 1px 0 rgba(17, 17, 17, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.08);
}

.center-brand h1 span::after {
  display: none;
}

.center-brand h1 span:nth-child(2) {
  color: inherit;
  -webkit-text-stroke: 0;
}

.center-brand p {
  margin: 22px auto 0;
  max-width: 540px;
  color: rgba(17, 17, 17, 0.72);
  font-size: clamp(16px, 1.32vw, 20px);
  font-weight: 650;
  line-height: 1.7;
  word-break: keep-all;
}

.keyword-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
  pointer-events: auto;
}

.keyword-pills button {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(17, 17, 17, 0.62);
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  transition:
    border-color 320ms ease,
    background 320ms ease,
    color 320ms ease,
    transform 320ms ease,
    box-shadow 320ms ease;
}

.keyword-pills button:hover,
.keyword-pills button:focus-visible,
.keyword-pills button.is-active {
  border-color: rgba(159, 47, 43, 0.38);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  outline: 0;
  transform: translateY(-2px);
}

.mobile-hero-slider {
  display: none;
}

@media (max-width: 760px) {
  .hero-3d {
    min-height: auto;
    padding: 126px 0 74px;
    overflow: hidden;
  }

  #css3d-container,
  .flow-map,
  .scroll-words,
  .hero-label {
    display: none;
  }

  .center-brand {
    position: relative;
    left: auto;
    top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 18px;
    opacity: 1;
    text-align: center;
    pointer-events: auto;
    transform: none;
  }

  .center-brand > * {
    margin-right: auto;
    margin-left: auto;
  }

  .center-brand::before {
    display: none;
  }

  .mobile-hero-slider {
    display: block;
    width: min(100%, 520px);
    margin: 40px auto 0;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.11);
    touch-action: pan-y;
  }

  .mobile-hero-track {
    display: flex;
    align-items: center;
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .mobile-hero-slide {
    flex: 0 0 100%;
    margin: 0;
    background: #f6f6f4;
  }

  .mobile-hero-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .mobile-hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 15px;
    background: #fff;
  }

  .mobile-hero-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.22);
    cursor: pointer;
  }

  .mobile-hero-dots button[aria-current="true"] {
    width: 22px;
    border-radius: 999px;
    background: var(--brick);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-hero-track {
    transition: none;
  }
}

.hero-label {
  position: fixed;
  left: clamp(20px, 5vw, 74px);
  bottom: clamp(28px, 5vw, 64px);
  z-index: 9;
  display: grid;
  gap: 12px;
  width: min(260px, 42vw);
  color: rgba(17, 17, 17, 0.58);
  pointer-events: none;
  transition:
    color 420ms ease,
    opacity 320ms ease,
    transform 320ms ease;
}

.hero-label span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-label i {
  display: block;
  width: calc(42px + var(--hero-label-progress, 0) * 108px);
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

body.is-dark-section .hero-label {
  opacity: 0;
  transform: translateY(18px);
}

.latest-insights {
  position: relative;
  z-index: 14;
  overflow: hidden;
  padding: clamp(110px, 10vw, 170px) clamp(22px, 5vw, 74px);
  background:
    radial-gradient(circle at 15% 18%, rgba(159, 47, 43, 0.045), transparent 14%),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    #fbfbfa;
  background-size: auto, 92px 92px, 92px 92px, auto;
  color: var(--ink);
}

.insights-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 2fr);
  gap: clamp(48px, 7vw, 110px);
  width: min(1580px, 100%);
  margin: 0 auto;
}

.light-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(24px, 3vw, 42px);
  color: #f13b30;
}

.light-kicker i,
.dark-kicker i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}

.insights-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.1vw, 70px);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 1.15;
  word-break: keep-all;
}

.insights-copy p {
  max-width: 380px;
  margin: clamp(28px, 3vw, 44px) 0 clamp(44px, 5vw, 76px);
  color: rgba(17, 17, 17, 0.58);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 520;
  line-height: 1.85;
  word-break: keep-all;
}

.text-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.72);
  padding-bottom: 13px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
}

.text-arrow-link span {
  transition: transform 280ms ease;
}

.text-arrow-link:hover span {
  transform: translateX(6px);
}

.insight-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2.8vw, 42px);
}

.insight-card {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  min-width: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.25);
  padding-top: 18px;
  color: var(--ink);
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease;
}

.is-visible.insight-card,
.is-visible[data-bottom-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.insight-card:hover {
  border-color: rgba(241, 59, 48, 0.75);
}

.insight-no {
  margin-bottom: 34px;
  color: rgba(17, 17, 17, 0.9);
  font-size: 15px;
  font-weight: 800;
}

.insight-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  margin-bottom: 22px;
  background: #f2f2f0;
}

.insight-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.insight-thumb::before,
.insight-thumb::after,
.insight-thumb i,
.insight-thumb b {
  position: absolute;
  content: "";
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.insight-card:hover .insight-thumb::before,
.insight-card:hover .insight-thumb::after,
.insight-card:hover .insight-thumb i,
.insight-card:hover .insight-thumb b,
.insight-card:hover .insight-thumb img {
  transform: scale(1.035);
}

.insight-thumb-01 {
  background: linear-gradient(135deg, #f6f6f4, #d9d9d6);
}

.insight-thumb-01::before {
  inset: 0;
  background:
    radial-gradient(circle at 14% 5%, rgba(0, 0, 0, 0.12), transparent 10%),
    linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.78) 43% 100%);
}

.insight-thumb-01 b {
  right: 17%;
  top: 32%;
  color: #111;
  content: "BRAND\A STRATEGY";
  font-size: clamp(14px, 1.05vw, 20px);
  font-weight: 900;
  line-height: 1.05;
  white-space: pre;
  transform: rotate(-18deg);
}

.insight-thumb-02 {
  background: linear-gradient(135deg, #111, #2f2f2f);
}

.insight-thumb-02::before {
  left: -8%;
  right: -8%;
  top: 54%;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow:
    60px -30px rgba(255,255,255,0.18),
    130px -56px rgba(255,255,255,0.2),
    210px -82px rgba(255,255,255,0.16);
  transform: rotate(-11deg);
}

.insight-thumb-02 i {
  left: 10%;
  right: 8%;
  top: 22%;
  bottom: 20%;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.insight-thumb-03 {
  background: linear-gradient(135deg, #f4f4f2, #cfcfcb);
}

.insight-thumb-03::before {
  left: 18%;
  top: 12%;
  width: 52%;
  height: 75%;
  border-radius: 4px;
  background:
    repeating-linear-gradient(to bottom, transparent 0 18px, rgba(17,17,17,0.45) 19px 21px, transparent 22px 34px),
    #fafafa;
  transform: rotate(-8deg);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.insight-thumb-03::after {
  right: 10%;
  bottom: 14%;
  width: 32%;
  height: 5px;
  background: #111;
  transform: rotate(-18deg);
}

.insight-thumb-04 {
  background: linear-gradient(135deg, #090909, #282828);
}

.insight-thumb-04::before {
  inset: 10% 12%;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.02)),
    #111;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  transform: rotate(-10deg);
}

.insight-thumb-04 b {
  left: 32%;
  top: 47%;
  color: rgba(255, 255, 255, 0.76);
  content: "ROOTBRICK";
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.insight-card em {
  color: #f13b30;
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.insight-card h3 {
  margin: 10px 0 0;
  font-size: clamp(20px, 1.35vw, 27px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.35;
  word-break: keep-all;
}

.insight-card p {
  margin: 24px 0 28px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 15px;
  font-weight: 520;
  line-height: 1.75;
  word-break: keep-all;
}

.insight-card time {
  color: rgba(17, 17, 17, 0.45);
  font-size: 14px;
  font-weight: 650;
}

.insight-card strong {
  justify-self: end;
  margin-top: -22px;
  font-size: 22px;
  font-weight: 400;
  transition: color 260ms ease, transform 260ms ease;
}

.insight-card:hover strong {
  color: #f13b30;
  transform: translateX(6px);
}

.faq-section,
.final-cta {
  position: relative;
  z-index: 14;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    #090909;
  background-size: 92px 92px;
  color: #fff;
}

.faq-section {
  padding: clamp(98px, 8vw, 142px) clamp(22px, 5vw, 74px);
}

.faq-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.85fr);
  gap: clamp(48px, 7vw, 112px);
  width: min(1580px, 100%);
  margin: 0 auto;
}

.dark-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(24px, 3vw, 42px);
  color: #ff4a3f;
}

.faq-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 68px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1.14;
}

.faq-copy p {
  max-width: 340px;
  margin: clamp(28px, 3vw, 44px) 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.85;
  word-break: keep-all;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: rgba(255, 255, 255, 0.28);
}

.faq-item button {
  display: grid;
  grid-template-columns: 56px 1fr 34px;
  align-items: center;
  width: 100%;
  border: 0;
  padding: clamp(22px, 2.4vw, 32px) 0;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  color: #ff4a3f;
  font-size: 17px;
  font-weight: 900;
}

.faq-item button strong {
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 820;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.faq-item button i {
  position: relative;
  width: 22px;
  height: 22px;
  justify-self: end;
  transition: transform 300ms ease;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.88);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open button i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer p {
  max-width: 720px;
  margin: 0 0 clamp(24px, 2.4vw, 34px) 56px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.85;
  word-break: keep-all;
}

.final-cta {
  padding: clamp(88px, 8vw, 138px) clamp(22px, 5vw, 74px);
}

.final-cta::before {
  position: absolute;
  right: -15%;
  bottom: -45%;
  width: min(70vw, 920px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 74, 63, 0.62), rgba(159, 47, 43, 0.22) 36%, transparent 68%);
  filter: blur(18px);
  content: "";
}

.final-cta::after {
  position: absolute;
  right: 9%;
  bottom: -28%;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 74, 63, 0.2);
  border-radius: 50%;
  box-shadow:
    -70px -55px 0 -69px rgba(255, 74, 63, 0.55),
    -145px -105px 0 -144px rgba(255, 74, 63, 0.28);
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: clamp(44px, 7vw, 112px);
  width: min(1580px, 100%);
  margin: 0 auto;
}

.final-cta span {
  display: block;
  margin-bottom: 28px;
  color: #ff4a3f;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.final-cta h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(44px, 5vw, 86px);
  font-weight: 420;
  letter-spacing: -0.055em;
  line-height: 1.24;
  word-break: keep-all;
}

.final-cta-action p {
  max-width: 360px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
  line-height: 1.8;
  word-break: keep-all;
}

.final-cta-action a {
  display: inline-flex;
  align-items: center;
  gap: 42px;
  border-radius: 999px;
  padding: 22px 34px;
  background: linear-gradient(135deg, #ff4a3f, #c71811);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 24px 60px rgba(241, 59, 48, 0.32);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.final-cta-action a:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 78px rgba(241, 59, 48, 0.45);
}

.final-cta-action i {
  font-style: normal;
  font-size: 24px;
}

[data-bottom-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.site-footer {
  position: relative;
  z-index: 14;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(54px, 5vw, 84px) clamp(22px, 5vw, 74px) clamp(36px, 4vw, 58px);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 74, 63, 0.13), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #070707;
  background-size: auto, 92px 92px, 92px 92px, auto;
  color: #fff;
}

.site-footer-inner {
  width: min(1580px, 100%);
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 90px);
  padding: 0 0 clamp(42px, 5vw, 72px);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-col strong {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 15px;
  font-weight: 620;
  transition: color 240ms ease, transform 240ms ease;
}

.footer-col a:hover {
  color: #ff4a3f;
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 620;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:first-child {
  color: rgba(255, 255, 255, 0.92);
}

.contact-button {
  position: fixed;
  right: clamp(20px, 5vw, 74px);
  bottom: 30px;
  z-index: 80;
  display: inline-flex;
  min-width: 220px;
  height: 58px;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  padding: 0 22px 0 30px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  font-weight: 600;
  transition:
    background 420ms ease,
    color 420ms ease,
    border-color 420ms ease,
    box-shadow 420ms ease,
    transform 420ms ease;
}

body.is-dark-section .contact-button {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.16);
}

.contact-button.is-inverted {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.16);
}

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

.contact-button i {
  width: 16px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.next-panel {
  position: relative;
  z-index: 12;
  display: flex;
  min-height: auto;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(92px, 8vw, 132px) clamp(22px, 5vw, 74px) clamp(52px, 5vw, 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 58% 32%, rgba(255, 255, 255, 0.11), transparent 12%),
    radial-gradient(circle at 74% 70%, rgba(159, 47, 43, 0.16), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.042) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #101010;
  background-size:
    auto,
    auto,
    96px 96px,
    96px 96px,
    auto;
  color: #fff;
  isolation: isolate;
  --method-mx: 0;
  --method-my: 0;
  --orbit-point-x: 50%;
  --orbit-point-y: 33%;
}

.next-panel::before {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: -1;
  width: min(86vw, 1280px);
  height: min(40vw, 520px);
  border: 1px solid rgba(159, 47, 43, 0.36);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%) rotate(-4deg) scale(calc(0.92 + var(--next-progress, 0) * 0.08));
}

.next-panel::after {
  position: absolute;
  left: 9vw;
  right: 7vw;
  top: 52%;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), rgba(159, 47, 43, 0.54), transparent);
  content: "";
  opacity: calc(0.25 + var(--next-progress, 0) * 0.55);
  transform: scaleX(calc(0.35 + var(--next-progress, 0) * 0.65));
}

.method-orbit {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

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

.method-orbit span:nth-child(1) {
  left: 24%;
  top: 10%;
  width: 52vw;
  height: 52vw;
  transform: rotate(18deg);
}

.method-orbit span:nth-child(1)::after {
  position: absolute;
  left: 50%;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brick);
  box-shadow: 0 0 0 9px rgba(159, 47, 43, 0.12), 0 0 32px rgba(159, 47, 43, 0.5);
  content: "";
  display: none;
}

.method-orbit-point {
  position: absolute;
  left: var(--orbit-point-x);
  top: var(--orbit-point-y);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brick);
  box-shadow:
    0 0 0 9px rgba(159, 47, 43, 0.11),
    0 0 34px rgba(159, 47, 43, 0.58);
  opacity: calc(0.42 + var(--next-progress, 0) * 0.58);
  transform: translate(-50%, -50%);
  transition:
    left 620ms cubic-bezier(0.22, 1, 0.36, 1),
    top 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms ease,
    box-shadow 360ms ease;
}

.method-orbit span:nth-child(2) {
  right: -8%;
  bottom: -20%;
  width: 42vw;
  height: 42vw;
  border-color: rgba(159, 47, 43, 0.12);
}

.method-signal {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.method-signal i {
  position: absolute;
  display: block;
  width: 1px;
  height: min(42vw, 560px);
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: calc(0.18 + var(--next-progress, 0) * 0.34);
  transform-origin: center;
}

.method-signal i:nth-child(1) {
  left: 47%;
  top: 7%;
  transform: rotate(22deg) translateY(calc(var(--method-my) * 10px));
}

.method-signal i:nth-child(2) {
  left: 70%;
  top: 16%;
  background: linear-gradient(transparent, rgba(159, 47, 43, 0.24), transparent);
  transform: rotate(-18deg) translateX(calc(var(--method-mx) * 12px));
}

.method-signal i:nth-child(3) {
  left: 83%;
  top: 34%;
  transform: rotate(35deg) translateY(calc(var(--method-my) * -8px));
}

.next-inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(790px, 1.7fr);
  gap: clamp(32px, 4vw, 72px);
  width: min(1500px, 100%);
  align-items: center;
  min-height: min(760px, calc(100vh - 140px));
  transform: translateY(calc(70px - var(--next-progress, 0) * 70px));
  opacity: calc(0.32 + var(--next-progress, 0) * 0.68);
}

.method-copy {
  max-width: 360px;
}

.section-kicker {
  display: block;
  margin-bottom: clamp(22px, 3vw, 42px);
  color: var(--brick);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 950;
  letter-spacing: 0.16em;
}

.next-title {
  display: grid;
  gap: clamp(3px, 0.7vw, 9px);
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3.8vw, 60px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.next-title span {
  display: block;
  opacity: calc(0.2 + var(--next-progress, 0) * 0.8);
  filter: blur(calc((1 - var(--next-progress, 0)) * 10px));
  clip-path: inset(calc((1 - var(--next-progress, 0)) * 100%) 0 0 0);
  transform:
    translateX(calc((1 - var(--next-progress, 0)) * -32px))
    translateY(calc(46px - var(--next-progress, 0) * 46px));
}

.next-title span:nth-child(2) {
  opacity: calc(0.12 + var(--next-line-2, 0) * 0.88);
  filter: blur(calc((1 - var(--next-line-2, 0)) * 10px));
  clip-path: inset(calc((1 - var(--next-line-2, 0)) * 100%) 0 0 0);
  transform:
    translateX(calc((1 - var(--next-line-2, 0)) * -32px))
    translateY(calc(58px - var(--next-line-2, 0) * 58px));
}

.next-title span:nth-child(3) {
  opacity: calc(0.12 + var(--next-line-3, 0) * 0.88);
  filter: blur(calc((1 - var(--next-line-3, 0)) * 10px));
  clip-path: inset(calc((1 - var(--next-line-3, 0)) * 100%) 0 0 0);
  transform:
    translateX(calc((1 - var(--next-line-3, 0)) * -32px))
    translateY(calc(70px - var(--next-line-3, 0) * 70px));
}

.method-copy p {
  margin: clamp(28px, 4vw, 46px) 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 520;
  height: calc(1.9em * 4);
  line-height: 1.9;
  overflow: hidden;
  word-break: keep-all;
  transition:
    opacity 260ms ease,
    filter 260ms ease;
}

.method-copy p.is-changing {
  opacity: 0;
  filter: blur(8px);
}

.process-stage {
  display: grid;
  grid-template-columns: repeat(5, minmax(148px, 1fr));
  gap: clamp(12px, 1.25vw, 20px);
  align-items: center;
  perspective: 1200px;
  transform:
    rotateX(calc(var(--method-my) * -1.8deg))
    rotateY(calc(var(--method-mx) * 2deg));
  transform-style: preserve-3d;
  transition: transform 220ms ease-out;
}

.process-card {
  --card-progress: 0;
  --card-y: calc(42px - var(--card-progress) * 42px);
  --card-z: calc(16px + var(--card-progress) * 44px);
  --card-rx: calc(2deg - var(--card-progress) * 2deg);
  --card-ry: calc(-14deg + var(--card-progress) * 9deg);
  --card-scale: calc(0.93 + var(--card-progress) * 0.06);
  --hover-y: 0px;
  --hover-scale: 1;
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(90px, 1fr) auto;
  min-height: clamp(350px, 31vw, 490px);
  align-content: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  padding: clamp(22px, 2vw, 34px);
  box-shadow:
    -10px 0 18px rgba(255, 255, 255, 0.04),
    16px 0 24px rgba(0, 0, 0, 0.26),
    0 42px 90px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: calc(0.44 + var(--card-progress) * 0.56);
  transform:
    translateY(calc(var(--card-y) + var(--hover-y)))
    translateZ(var(--card-z))
    rotateX(var(--card-rx))
    rotateY(var(--card-ry))
    scale(var(--card-scale))
    scale(var(--hover-scale));
  transition:
    border-color 360ms ease,
    box-shadow 420ms ease,
    filter 360ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}

.process-card.is-hovered {
  --hover-y: -10px;
  --hover-scale: 1.035;
  z-index: 8;
  box-shadow:
    -14px 0 24px rgba(255, 255, 255, 0.06),
    24px 0 38px rgba(0, 0, 0, 0.34),
    0 62px 132px rgba(0, 0, 0, 0.6),
    0 0 74px rgba(159, 47, 43, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  filter: brightness(1.1);
}

.process-card::after {
  position: absolute;
  right: -14px;
  top: 14px;
  bottom: 14px;
  width: 14px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.42));
  content: "";
  opacity: 0.52;
  transform: rotateY(72deg);
  transform-origin: left center;
}

.process-card:nth-child(2),
.process-card:nth-child(4) {
  --card-y: calc(18px - var(--card-progress) * 34px);
  --card-z: calc(16px + var(--card-progress) * 44px);
  --card-rx: calc(-1deg + var(--card-progress) * 1deg);
  --card-ry: calc(12deg - var(--card-progress) * 8deg);
  --card-scale: calc(0.93 + var(--card-progress) * 0.06);
}

.process-card:nth-child(3) {
  --card-y: calc(58px - var(--card-progress) * 58px);
  --card-z: calc(24px + var(--card-progress) * 52px);
  --card-rx: calc(1deg - var(--card-progress) * 1deg);
  --card-ry: calc(-5deg + var(--card-progress) * 5deg);
  --card-scale: calc(0.94 + var(--card-progress) * 0.065);
}

.process-card.is-active {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 44px 96px rgba(0, 0, 0, 0.44),
    0 0 64px rgba(159, 47, 43, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  filter: brightness(1.08);
}

.process-card:hover {
  filter: brightness(1.12);
}

.process-card-light {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(233, 233, 229, 0.92)),
    #fff;
  color: var(--ink);
}

.process-card-dark {
  background:
    linear-gradient(145deg, rgba(33, 33, 33, 0.98), rgba(10, 10, 10, 0.98)),
    #151515;
  color: #fff;
}

.process-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 17, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  opacity: 0.45;
}

.process-card-dark::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
}

.process-card strong,
.process-card h3,
.process-card p,
.process-card ul,
.process-card a,
.process-card .card-graphic {
  position: relative;
  z-index: 1;
}

.card-face {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto minmax(110px, 1fr) auto;
  min-height: 100%;
  transition:
    opacity 380ms ease,
    filter 380ms ease,
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card-front {
  opacity: 1;
  transform: translateZ(16px);
}

.card-detail {
  position: absolute;
  inset: clamp(22px, 2vw, 34px);
  grid-template-rows: auto auto auto 1fr auto;
  opacity: 0;
  pointer-events: none;
  filter: blur(8px);
  transform: translateZ(42px);
}

.process-card.is-hovered .card-front,
.process-card:focus-within .card-front {
  opacity: 0;
  filter: blur(8px);
  transform: translateZ(8px);
}

.process-card.is-hovered .card-detail,
.process-card:focus-within .card-detail {
  opacity: 1;
  pointer-events: auto;
  filter: blur(0);
  transform: translateZ(48px);
}

.process-card strong {
  color: var(--brick);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.process-card h3 {
  margin: clamp(18px, 2vw, 30px) 0 0;
  max-width: 150px;
  font-size: clamp(17px, 1.55vw, 25px);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  transform: translateZ(28px);
}

.process-card p {
  align-self: end;
  margin: 0;
  color: currentColor;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 650;
  line-height: 1.75;
  opacity: 0.66;
  word-break: keep-all;
  transform: translateZ(18px);
}

.card-detail p {
  align-self: start;
  margin: clamp(18px, 1.7vw, 26px) 0 0;
  font-size: clamp(11px, 0.78vw, 13px);
  line-height: 1.74;
  opacity: 0.74;
}

.card-detail ul {
  display: grid;
  gap: 9px;
  align-self: start;
  margin: clamp(22px, 2vw, 30px) 0 0;
  padding: 0;
  list-style: none;
  font-size: clamp(10px, 0.72vw, 12px);
  font-weight: 760;
  line-height: 1.45;
  opacity: 0.84;
}

.card-detail li {
  position: relative;
  padding-left: 17px;
}

.card-detail li::before {
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(159, 47, 43, 0.8);
  background:
    radial-gradient(circle at 50% 50%, var(--brick) 0 2px, transparent 2.5px),
    rgba(159, 47, 43, 0.09);
  box-shadow: 0 0 12px rgba(159, 47, 43, 0.22);
  content: "";
}

.card-detail a {
  align-self: end;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: clamp(14px, 1.5vw, 22px);
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  color: currentColor;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
  opacity: 0.92;
}

.card-detail a span {
  color: var(--brick);
}

.card-graphic {
  position: relative;
  align-self: center;
  justify-self: center;
  width: clamp(58px, 5.6vw, 88px);
  height: clamp(58px, 5.6vw, 88px);
  margin: clamp(14px, 2.6vw, 34px) 0 clamp(12px, 2vw, 26px);
  opacity: 0.92;
  transform: translateZ(34px);
}

.search-graphic i {
  position: absolute;
  inset: 18%;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.search-graphic span {
  position: absolute;
  right: 8%;
  bottom: 14%;
  width: 36%;
  height: 4px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.structure-graphic i {
  position: absolute;
  bottom: 18%;
  width: 28%;
  height: 24%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.structure-graphic i:nth-child(1) {
  left: 4%;
}

.structure-graphic i:nth-child(2) {
  left: 36%;
}

.structure-graphic i:nth-child(3) {
  left: 68%;
}

.structure-graphic span {
  position: absolute;
  left: 43%;
  top: 18%;
  width: 18%;
  height: 28%;
  background: var(--brick);
}

.content-graphic i {
  position: absolute;
  inset: 6% 18% 6% 10%;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.content-graphic i::before,
.content-graphic i::after {
  position: absolute;
  left: 14%;
  right: 18%;
  height: 2px;
  background: currentColor;
  content: "";
}

.content-graphic i::before {
  top: 32%;
}

.content-graphic i::after {
  top: 50%;
}

.content-graphic span {
  position: absolute;
  right: 8%;
  bottom: 14%;
  width: 42%;
  height: 5px;
  background: var(--brick);
  transform: rotate(-36deg);
}

.build-graphic i {
  position: absolute;
  inset: 12% 7%;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.build-graphic i::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 18%;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0.5;
}

.build-graphic span {
  position: absolute;
  right: 13%;
  bottom: 17%;
  width: 0;
  height: 0;
  border-left: 20px solid var(--brick);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  transform: rotate(38deg);
}

.growth-graphic i {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 18%;
  height: 52%;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.growth-graphic span {
  position: absolute;
  left: 21%;
  right: 8%;
  bottom: 30%;
  height: 34%;
  border-top: 3px solid var(--brick);
  border-right: 3px solid var(--brick);
  transform: skewY(-22deg);
}

.featured-projects {
  position: relative;
  z-index: 13;
  overflow: hidden;
  padding: clamp(118px, 11vw, 176px) clamp(22px, 5vw, 74px) clamp(120px, 10vw, 168px);
  background:
    radial-gradient(circle at 77% 16%, rgba(159, 47, 43, 0.055), transparent 14%),
    radial-gradient(circle at 19% 82%, rgba(17, 17, 17, 0.045), transparent 18%),
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    #fbfbfa;
  background-size:
    auto,
    auto,
    92px 92px,
    92px 92px,
    auto;
  color: var(--ink);
  --featured-progress: 0;
}

.featured-projects::before {
  position: absolute;
  left: 40%;
  top: -16%;
  width: min(58vw, 860px);
  height: min(58vw, 860px);
  border: 1px solid rgba(17, 17, 17, 0.055);
  border-radius: 50%;
  content: "";
  opacity: calc(0.2 + var(--featured-progress) * 0.55);
  transform: translateX(-50%) rotate(-12deg);
}

.featured-projects::after {
  position: absolute;
  right: 6vw;
  bottom: 8%;
  width: min(38vw, 560px);
  height: min(38vw, 560px);
  border: 1px solid rgba(159, 47, 43, 0.12);
  border-radius: 50%;
  content: "";
  opacity: calc(0.15 + var(--featured-progress) * 0.42);
  transform: rotate(18deg);
}

.featured-number {
  position: absolute;
  right: clamp(24px, 6vw, 100px);
  top: clamp(34px, 5vw, 76px);
  color: rgba(17, 17, 17, 0.035);
  font-size: clamp(96px, 13vw, 210px);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.featured-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.48fr) minmax(720px, 1.55fr);
  gap: clamp(42px, 5vw, 84px);
  width: min(1500px, 100%);
  margin: 0 auto;
  align-items: start;
}

.featured-copy {
  position: sticky;
  top: 128px;
  max-width: 360px;
  padding-top: 8px;
}

.featured-copy .section-kicker {
  margin-bottom: clamp(22px, 3vw, 38px);
}

.featured-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 76px);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 1.02;
  word-break: keep-all;
}

.featured-copy h2::after {
  display: inline-block;
  width: 0.18em;
  height: 0.18em;
  margin-left: 0.08em;
  border-radius: 50%;
  background: var(--brick);
  content: "";
  vertical-align: baseline;
}

.featured-copy p {
  margin: clamp(24px, 3vw, 34px) 0 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 520;
  line-height: 1.82;
  word-break: keep-all;
}

.portfolio-more {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: clamp(54px, 6vw, 88px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.32);
  padding-bottom: 13px;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 850;
  transition:
    color 320ms ease,
    border-color 320ms ease,
    gap 320ms ease;
}

.portfolio-more span {
  color: var(--brick);
  font-size: 24px;
  line-height: 1;
}

.portfolio-more:hover {
  gap: 24px;
  border-color: var(--brick);
  color: var(--brick);
}

.portfolio-slider {
  min-width: 0;
}

.portfolio-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.portfolio-controls {
  display: inline-flex;
  gap: 8px;
}

.portfolio-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  font-weight: 900;
  transition:
    background 280ms ease,
    border-color 280ms ease,
    color 280ms ease,
    transform 280ms ease;
}

.portfolio-controls button:hover,
.portfolio-controls button:focus-visible {
  border-color: rgba(159, 47, 43, 0.38);
  background: var(--ink);
  color: #fff;
  outline: 0;
  transform: translateY(-2px);
}

.portfolio-viewport {
  overflow-x: auto;
  overflow-y: visible;
  padding: 0 0 26px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.portfolio-viewport::-webkit-scrollbar {
  display: none;
}

.portfolio-track {
  display: flex;
  gap: clamp(16px, 1.5vw, 24px);
}

.portfolio-slider .portfolio-card-large {
  flex: 0 0 calc((100% - clamp(16px, 1.5vw, 24px)) / 2);
  grid-column: auto;
  scroll-snap-align: start;
}

.portfolio-small-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, 24px);
  margin-top: clamp(10px, 1.8vw, 24px);
}

.portfolio-card {
  --reveal: 0;
  position: relative;
  display: grid;
  min-height: 214px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 28px 70px rgba(17, 17, 17, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  opacity: var(--reveal);
  transform: translateY(calc((1 - var(--reveal)) * 42px));
  transition:
    opacity 620ms ease,
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease,
    border-color 420ms ease;
}

.portfolio-card-large {
  grid-column: span 2;
  min-height: clamp(360px, 28vw, 490px);
}

.portfolio-card-dark {
  background: #101010;
  color: #fff;
}

.portfolio-card:hover,
.portfolio-card:focus-visible {
  z-index: 3;
  border-color: rgba(159, 47, 43, 0.28);
  box-shadow:
    0 40px 94px rgba(17, 17, 17, 0.16),
    0 0 54px rgba(159, 47, 43, 0.1);
  outline: 0;
  transform: translateY(calc((1 - var(--reveal)) * 42px - 8px)) scale(1.02);
}

.project-shot {
  position: relative;
  min-height: 126px;
  overflow: hidden;
  background: #f5f5f2;
}

.portfolio-card-large .project-shot {
  min-height: clamp(290px, 22vw, 390px);
}

.project-page {
  min-height: 156%;
  padding: clamp(20px, 2vw, 34px);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 244, 241, 0.9));
  background-size:
    54px 54px,
    54px 54px,
    auto;
  transform: translateY(0) scale(1);
  transition: transform 2600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card:hover .project-page,
.portfolio-card:focus-visible .project-page,
.portfolio-card:hover .project-screenshot,
.portfolio-card:focus-visible .project-screenshot {
  transform: translateY(var(--shot-scroll, -30%)) scale(1.03);
}

.project-screenshot {
  display: block;
  width: 100%;
  min-height: 150%;
  object-fit: cover;
  object-position: top center;
  transform: translateY(0) scale(1);
  transition: transform 2600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card-dark .project-page {
  background:
    radial-gradient(circle at 72% 36%, rgba(159, 47, 43, 0.24), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #101010;
}

.project-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(17, 17, 17, 0.55);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.project-nav span {
  margin-right: auto;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 6px 9px;
  color: var(--ink);
}

.project-nav i {
  display: block;
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.54;
}

.portfolio-card-dark .project-nav {
  color: rgba(255, 255, 255, 0.58);
}

.portfolio-card-dark .project-nav span {
  color: #fff;
}

.project-hero {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 62%;
  margin-top: clamp(42px, 5vw, 82px);
}

.project-hero b {
  font-size: clamp(22px, 2.4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.18;
  word-break: keep-all;
}

.project-hero small {
  color: rgba(17, 17, 17, 0.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.portfolio-card-dark .project-hero small {
  color: rgba(255, 255, 255, 0.56);
}

.project-visual {
  position: absolute;
  right: 0;
  bottom: 18%;
  width: 46%;
  height: 58%;
  border-radius: 999px 0 0 999px;
  background:
    radial-gradient(circle at 44% 34%, rgba(255, 255, 255, 0.86), transparent 24%),
    linear-gradient(135deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.22));
  opacity: 0.92;
}

.project-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(80px, 10vw, 146px);
}

.project-blocks i {
  display: block;
  min-height: 84px;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.055);
}

.portfolio-card-dark .project-blocks i {
  background: rgba(255, 255, 255, 0.08);
}

.project-shot-law .project-visual {
  background:
    radial-gradient(circle at 54% 42%, rgba(159, 47, 43, 0.28), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.18));
}

.project-shot-interior .project-visual {
  border-radius: 4px 0 0 4px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.1), transparent),
    linear-gradient(135deg, #f8f8f7, #b8b8b2);
}

.project-shot-realestate .project-visual {
  background:
    linear-gradient(180deg, rgba(12, 28, 44, 0.15), rgba(12, 28, 44, 0.42)),
    linear-gradient(135deg, #f8f8f8, #1c2730);
}

.project-shot-tax .project-visual {
  border-radius: 4px 0 0 4px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.2)),
    #f4f4f2;
}

.project-shot-commerce .project-visual {
  background:
    radial-gradient(circle at 44% 38%, rgba(159, 47, 43, 0.2), transparent 22%),
    linear-gradient(135deg, #ffffff, #ddddda);
}

.portfolio-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px 16px;
  align-items: end;
  padding: clamp(15px, 1.3vw, 21px);
  background: inherit;
}

.portfolio-meta span {
  grid-column: 1 / -1;
  width: fit-content;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 5px 9px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 11px;
  font-weight: 850;
}

.portfolio-card-dark .portfolio-meta span {
  color: rgba(255, 255, 255, 0.74);
}

.portfolio-meta strong {
  font-size: clamp(14px, 0.98vw, 17px);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.36;
  word-break: keep-all;
  transition: color 320ms ease;
}

.portfolio-meta i {
  color: var(--brick);
  font-style: normal;
  font-size: 26px;
  line-height: 1;
  transform: translateX(0);
  transition: transform 320ms ease;
}

.portfolio-card:hover .portfolio-meta strong,
.portfolio-card:focus-visible .portfolio-meta strong {
  color: var(--brick);
}

.portfolio-card:hover .portfolio-meta i,
.portfolio-card:focus-visible .portfolio-meta i {
  transform: translateX(6px);
}

.featured-projects[data-showroom] {
  padding-bottom: 0;
}

.featured-projects[data-showroom] .featured-inner {
  grid-template-columns: minmax(240px, 0.42fr) minmax(760px, 1.7fr);
  row-gap: clamp(42px, 5vw, 80px);
  perspective: 1600px;
}

.showroom {
  position: relative;
  min-height: clamp(520px, 42vw, 700px);
  transform:
    rotateX(calc(var(--showroom-y, 0) * -2.2deg))
    rotateY(calc(var(--showroom-x, 0) * 2.8deg));
  transform-style: preserve-3d;
  transition: transform 220ms ease-out;
}

.showroom-guide {
  position: absolute;
  left: 50%;
  top: 0;
  color: rgba(17, 17, 17, 0.35);
  font-size: 12px;
  font-weight: 700;
  transform: translateX(-50%);
}

.showroom-orbit {
  position: absolute;
  inset: 12% 2% 4%;
  pointer-events: none;
  transform-style: preserve-3d;
}

.showroom-orbit span,
.showroom-orbit i {
  position: absolute;
  left: 50%;
  top: 58%;
  width: min(70vw, 980px);
  height: min(18vw, 260px);
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(66deg);
}

.showroom-orbit i {
  width: min(44vw, 640px);
  height: min(12vw, 180px);
  border-color: rgba(159, 47, 43, 0.15);
}

.showroom-orbit::after {
  position: absolute;
  left: 50%;
  bottom: 15%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brick);
  box-shadow: 0 18px 38px rgba(159, 47, 43, 0.28);
  content: "";
  transform: translateX(-50%);
}

.showroom-nav {
  position: absolute;
  right: clamp(0px, 1vw, 18px);
  z-index: 8;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 20px;
  font-weight: 900;
  transition:
    background 300ms ease,
    color 300ms ease,
    transform 300ms ease,
    border-color 300ms ease;
}

.showroom-nav:hover,
.showroom-nav:focus-visible {
  border-color: rgba(159, 47, 43, 0.36);
  background: var(--ink);
  color: #fff;
  outline: 0;
  transform: translateY(-2px);
}

.showroom-nav-prev {
  top: 23%;
}

.showroom-nav-next {
  bottom: 22%;
}

.showroom-deck {
  position: absolute;
  inset: clamp(46px, 4vw, 76px) 72px 0 0;
  transform-style: preserve-3d;
}

.showroom-card {
  --slot-x: 0px;
  --slot-z: 0px;
  --slot-ry: 0deg;
  --slot-scale: 1;
  --slot-opacity: 1;
  position: absolute;
  left: 50%;
  top: 48%;
  display: block;
  width: min(58vw, 650px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #fff;
  color: inherit;
  cursor: pointer;
  opacity: var(--slot-opacity);
  box-shadow:
    0 42px 90px rgba(17, 17, 17, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transform:
    translate(-50%, -50%)
    translateX(var(--slot-x))
    translateZ(var(--slot-z))
    rotateY(var(--slot-ry))
    scale(var(--slot-scale));
  transform-style: preserve-3d;
  transition:
    opacity 540ms ease,
    box-shadow 420ms ease,
    filter 420ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.showroom-card.is-active {
  z-index: 5;
}

.showroom-card:hover,
.showroom-card:focus-visible {
  box-shadow:
    0 56px 124px rgba(17, 17, 17, 0.22),
    0 0 60px rgba(159, 47, 43, 0.1);
  filter: brightness(1.03);
  outline: 0;
}

.showroom-card:hover .project-page,
.showroom-card:focus-visible .project-page {
  transform: scale(1.015);
}

.showroom-shot {
  position: absolute;
  inset: 0 0 54px;
  overflow: hidden;
}

.showroom-shot .project-page {
  min-height: 100%;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.showroom-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  height: 54px;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.94);
  padding: 0 26px;
  text-align: left;
}

.showroom-meta span {
  color: var(--brick);
  font-size: 13px;
  font-weight: 950;
}

.showroom-meta strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.showroom-meta i {
  margin-left: auto;
  color: var(--brick);
  font-style: normal;
  font-size: 24px;
}

.project-preview {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(300px, 0.46fr) minmax(620px, 1fr);
  min-height: clamp(520px, 40vw, 680px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 74% 26%, rgba(159, 47, 43, 0.16), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #101010;
  background-size:
    auto,
    96px 96px,
    96px 96px,
    auto;
  color: #fff;
}

.preview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 78px);
}

.preview-copy span {
  color: var(--brick);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.preview-copy em {
  width: fit-content;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.preview-copy h3 {
  margin: 34px 0 0;
  font-size: clamp(32px, 4vw, 62px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1.08;
  word-break: keep-all;
}

.preview-copy p {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.86;
  word-break: keep-all;
}

.preview-copy ul {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 760;
}

.preview-copy li {
  position: relative;
  padding-left: 22px;
}

.preview-copy li::before {
  position: absolute;
  left: 0;
  top: 0.46em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brick);
  content: "";
}

.preview-copy a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 850;
}

.preview-copy a span {
  color: var(--brick);
  font-size: 22px;
  letter-spacing: 0;
}

.preview-device {
  display: flex;
  align-items: end;
  justify-content: center;
  padding: clamp(42px, 5vw, 76px) clamp(28px, 4vw, 64px) 0 0;
}

.preview-screen {
  width: min(100%, 820px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 14px solid #242424;
  border-bottom-width: 22px;
  border-radius: 24px 24px 0 0;
  background: #fff;
  box-shadow:
    0 48px 120px rgba(0, 0, 0, 0.46),
    0 1px 0 rgba(255, 255, 255, 0.24) inset;
}

.preview-page {
  min-height: 172%;
  color: var(--ink);
  animation: previewScroll 5200ms cubic-bezier(0.45, 0, 0.2, 1) infinite alternate;
}

.preview-page .project-page {
  min-height: 100%;
}

.project-preview.is-changing .preview-copy,
.project-preview.is-changing .preview-device {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(16px);
}

.preview-copy,
.preview-device {
  transition:
    opacity 320ms ease,
    filter 320ms ease,
    transform 320ms ease;
}

@keyframes previewScroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-32%);
  }
}

.featured-projects[data-selected-works] {
  min-height: auto;
  padding: clamp(76px, 6.4vw, 108px) clamp(22px, 5vw, 74px) clamp(30px, 3.4vw, 52px);
}

.featured-projects[data-selected-works]::before {
  left: auto;
  right: 7vw;
  top: 10%;
  width: min(36vw, 520px);
  height: min(36vw, 520px);
}

.selected-works-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(640px, 1fr);
  gap: clamp(40px, 5vw, 82px);
  width: min(1560px, 100%);
  margin: 0 auto;
  align-items: start;
}

.selected-copy {
  position: sticky;
  top: 118px;
  min-height: auto;
  display: flex;
  flex-direction: column;
}

.selected-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.selected-kicker i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f12b24;
  box-shadow: 0 0 0 7px rgba(241, 43, 36, 0.08);
}

.selected-copy h2 {
  margin: 0;
  font-size: clamp(32px, 3.45vw, 56px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.14;
  word-break: keep-all;
}

.selected-copy p {
  max-width: 330px;
  margin: clamp(22px, 2.4vw, 34px) 0 clamp(24px, 3vw, 42px);
  color: rgba(17, 17, 17, 0.58);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 520;
  line-height: 1.8;
  word-break: keep-all;
}

.work-list {
  display: grid;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding-top: clamp(18px, 2.2vw, 30px);
}

.work-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 7px 18px;
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 10px 0;
  background: transparent;
  color: rgba(17, 17, 17, 0.44);
  cursor: pointer;
  text-align: left;
  transition:
    color 320ms ease,
    transform 320ms ease,
    opacity 320ms ease;
}

.work-item::after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--brick);
  content: "";
  transform: translateY(-50%);
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-item span {
  grid-row: 1 / 3;
  color: currentColor;
  font-size: clamp(21px, 1.8vw, 30px);
  font-weight: 420;
  line-height: 1.1;
  transition: color 320ms ease;
}

.work-item strong {
  color: currentColor;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 760;
  line-height: 1.25;
}

.work-item em {
  color: rgba(17, 17, 17, 0.34);
  font-style: normal;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.work-item:hover,
.work-item:focus-visible {
  color: rgba(17, 17, 17, 0.78);
  outline: 0;
}

.work-item.is-active {
  color: var(--ink);
  transform: translateX(2px);
}

.work-item.is-active::after {
  width: clamp(70px, 8vw, 118px);
}

.work-item.is-active span {
  color: #f12b24;
  font-weight: 650;
}

.work-item.is-active strong {
  font-weight: 900;
}

.selected-more {
  margin-top: clamp(18px, 2.8vw, 36px);
}

.selected-more i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.25);
  border-radius: 50%;
  font-style: normal;
  font-size: 16px;
}

.selected-preview {
  position: sticky;
  top: 108px;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 360ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 360ms ease;
}

.selected-preview.is-changing {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(18px);
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 34px 88px rgba(17, 17, 17, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.browser-canvas {
  position: relative;
  aspect-ratio: 1920 / 910;
  min-height: 0;
  overflow: hidden;
  background: #eef2f6;
  perspective: 1400px;
}

.browser-canvas.has-image {
  min-height: 0;
}

.browser-canvas .project-page {
  min-height: 100%;
  padding: clamp(30px, 4vw, 70px);
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.browser-frame:hover .browser-canvas .project-page {
  transform: scale(1.02);
}

.work-screenshot {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  background: transparent;
  transform: translateY(0);
  transform-origin: top center;
  will-change: transform;
  transition:
    opacity 360ms ease,
    transform var(--work-scroll-duration, 4200ms) cubic-bezier(0.16, 1, 0.3, 1);
}

.browser-frame:hover .work-screenshot,
.browser-frame:focus-within .work-screenshot {
  transform: translateY(var(--work-scroll, 0px)) scale(1.018) rotateX(0.65deg) rotateZ(-0.16deg);
}

.browser-canvas .project-nav {
  max-width: none;
  color: rgba(17, 17, 17, 0.72);
}

.browser-canvas .project-nav span {
  border: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 950;
}

.browser-canvas .project-hero {
  max-width: min(48%, 560px);
  margin-top: clamp(74px, 9vw, 150px);
}

.browser-canvas .project-hero b {
  font-size: clamp(31px, 3.3vw, 58px);
  line-height: 1.18;
}

.browser-canvas .project-hero small {
  max-width: 360px;
  color: rgba(17, 17, 17, 0.56);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.8;
}

.browser-canvas .project-visual {
  right: -5%;
  bottom: -16%;
  width: 56%;
  height: 78%;
}

.browser-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 118px;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
  padding: clamp(22px, 2.5vw, 36px) clamp(28px, 4vw, 68px);
}

.browser-info dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: clamp(24px, 4vw, 80px);
  margin: 0;
}

.browser-info div {
  display: grid;
  gap: 8px;
}

.browser-info dt {
  color: rgba(17, 17, 17, 0.4);
  font-size: 12px;
  font-weight: 800;
}

.browser-info dd {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
  font-weight: 650;
  word-break: keep-all;
}

.browser-info a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: rgba(17, 17, 17, 0.78);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: color 300ms ease;
}

.browser-info a span {
  color: var(--brick);
  font-size: 22px;
  transition: transform 300ms ease;
}

.browser-info a:hover {
  color: var(--brick);
}

.browser-info a:hover span {
  transform: translateX(5px);
}

.what-we-do {
  position: relative;
  z-index: 14;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(96px, 9vw, 150px) clamp(22px, 5vw, 74px) clamp(78px, 7vw, 120px);
  background:
    radial-gradient(circle at 58% 44%, rgba(159, 47, 43, 0.12), transparent 18%),
    radial-gradient(circle at 16% 26%, rgba(255, 255, 255, 0.055), transparent 16%),
    #0d0d0d;
  color: #fff;
  isolation: isolate;
  --what-progress: 0;
  --what-mx: 0;
  --what-my: 0;
}

.what-grid {
  position: absolute;
  inset: -4%;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-position:
    calc(var(--what-mx) * 6px) calc(var(--what-my) * 6px),
    calc(var(--what-mx) * 6px) calc(var(--what-my) * 6px),
    0 72%;
  background-size:
    96px 96px,
    96px 96px,
    18px 18px;
  opacity: 0.55;
  transform: translate3d(calc(var(--what-mx) * 2px), calc(var(--what-my) * 2px), 0);
  transition: transform 180ms ease-out;
}

.what-we-do::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 36%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.42));
  content: "";
}

.what-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(720px, 1.52fr);
  gap: clamp(44px, 5vw, 86px);
  width: min(1540px, 100%);
  min-height: min(820px, calc(100vh - 150px));
  margin: 0 auto;
  align-items: center;
}

.what-copy {
  opacity: var(--what-progress);
  transform: translateY(calc((1 - var(--what-progress)) * 38px));
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.what-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(24px, 3vw, 42px);
  color: #ff4a3f;
}

.what-kicker i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff4a3f;
  box-shadow: 0 0 0 8px rgba(255, 74, 63, 0.09);
}

.what-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 1.15;
  word-break: keep-all;
}

.what-copy p {
  max-width: 430px;
  margin: clamp(30px, 3vw, 44px) 0 clamp(38px, 4vw, 66px);
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 520;
  line-height: 1.85;
  word-break: keep-all;
}

.what-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
}

.what-link span {
  width: 92px;
  height: 2px;
  background: var(--brick);
}

.what-link i {
  color: #ff4a3f;
  font-style: normal;
  font-size: 26px;
  transition: transform 300ms ease;
}

.what-link:hover i {
  transform: translateX(6px);
}

.what-stage {
  position: relative;
  min-height: clamp(860px, 64vw, 1020px);
}

.what-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(40vw, 520px);
  height: min(48vw, 660px);
  pointer-events: none;
  opacity: calc(0.28 + var(--what-progress) * 0.34);
  transform:
    translate(-50%, -50%)
    translate3d(calc(var(--what-mx) * -5px), calc(var(--what-my) * -6px), 0);
}

.what-orbit span {
  position: absolute;
  left: 50%;
  width: 82%;
  height: 18%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: translateX(-50%);
}

.what-orbit span:nth-child(1) {
  top: 10%;
}

.what-orbit span:nth-child(2) {
  bottom: 10%;
}

.what-orbit i {
  position: absolute;
  left: 50%;
  top: 8%;
  width: 1px;
  height: 84%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.2), transparent);
}

.what-words {
  position: absolute;
  left: 50%;
  top: 51%;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  opacity: var(--what-progress);
  transform:
    translate(-50%, -50%)
    scale(calc(0.95 + var(--what-progress) * 0.05))
    translateY(calc(var(--what-my) * -8px));
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.what-words em {
  margin-bottom: 14px;
  color: #ff6a60;
  font-style: normal;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.34em;
}

.what-words strong {
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 420;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.what-words p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.65;
}

.service-card {
  --stagger: 0;
  position: absolute;
  display: grid;
  width: clamp(220px, 17vw, 310px);
  min-height: clamp(220px, 16vw, 270px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: clamp(22px, 2vw, 34px);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(5px);
  opacity: var(--what-progress);
  transform:
    translateY(calc((1 - var(--what-progress)) * 34px))
    scale(calc(0.98 + var(--what-progress) * 0.02));
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    box-shadow 320ms ease,
    background 320ms ease;
  transition-delay: calc(var(--stagger) * 80ms);
  z-index: 1;
}

.service-card:hover {
  z-index: 5;
  border-color: rgba(255, 74, 63, 0.72);
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.36),
    0 0 54px rgba(159, 47, 43, 0.12);
  transform: translateY(-8px) scale(1.02);
}

.service-card span {
  color: #ff4a3f;
  font-size: 14px;
  font-weight: 950;
}

.service-card h3 {
  margin: 26px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 20px;
  font-size: clamp(20px, 1.45vw, 26px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.8;
  word-break: keep-all;
}

.service-card b {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: #ff4a3f;
  font-size: 28px;
  font-weight: 300;
  transition: transform 300ms ease;
}

.service-card:hover b {
  transform: translate(5px, -5px);
}

.service-icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin-top: 18px;
  color: #fff;
  transition: transform 300ms ease;
}

.service-card:hover .service-icon {
  transform: translateY(-2px) rotate(-4deg);
}

.service-icon::before,
.service-icon::after,
.service-icon i {
  position: absolute;
  content: "";
}

.target-icon::before {
  inset: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.target-icon::after {
  right: 3px;
  top: 16px;
  width: 16px;
  height: 2px;
  background: #ff4a3f;
  transform: rotate(-28deg);
}

.layout-icon::before {
  inset: 7px;
  border: 2px solid currentColor;
}

.layout-icon::after {
  right: 6px;
  bottom: 6px;
  width: 14px;
  height: 14px;
  border: 2px solid #ff4a3f;
}

.seo-icon::before {
  inset: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.seo-icon::after {
  right: 4px;
  bottom: 8px;
  width: 18px;
  height: 2px;
  background: #ff4a3f;
  transform: rotate(42deg);
}

.write-icon::before {
  inset: 8px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.write-icon::after {
  right: 5px;
  top: 8px;
  width: 20px;
  height: 4px;
  background: #ff4a3f;
  transform: rotate(-38deg);
}

.ad-icon::before {
  left: 8px;
  top: 14px;
  width: 24px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.ad-icon::after {
  right: 6px;
  top: 18px;
  border-left: 12px solid #ff4a3f;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.support-icon::before {
  left: 8px;
  top: 15px;
  width: 32px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 16px 16px 8px 8px;
}

.support-icon::after {
  right: 6px;
  bottom: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff4a3f;
}

.service-card-01 {
  left: 4%;
  top: 4%;
  --stagger: 1;
}

.service-card-02 {
  right: 6%;
  top: 4%;
  --stagger: 2;
}

.service-card-03 {
  left: 1%;
  top: 35%;
  --stagger: 3;
  z-index: 2;
}

.service-card-04 {
  right: 1%;
  top: 35%;
  --stagger: 4;
  z-index: 2;
}

.service-card-05 {
  left: 8%;
  bottom: 2%;
  --stagger: 5;
}

.service-card-06 {
  right: 7%;
  bottom: 2%;
  --stagger: 6;
}

#contact {
  min-height: 1px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .center-brand {
    width: min(84vw, 680px);
  }

  .next-inner {
    grid-template-columns: 1fr;
  }

  .method-copy {
    max-width: 620px;
  }

  .featured-inner {
    grid-template-columns: 1fr;
  }

  .featured-copy {
    position: relative;
    top: auto;
    max-width: 620px;
  }

  .featured-projects[data-showroom] .featured-inner {
    grid-template-columns: 1fr;
  }

  .showroom {
    min-height: 520px;
  }

  .showroom-deck {
    right: 64px;
  }

  .showroom-card {
    width: min(78vw, 620px);
  }

  .project-preview {
    grid-template-columns: 1fr;
  }

  .preview-device {
    padding-left: clamp(28px, 5vw, 70px);
  }

  .selected-works-inner {
    grid-template-columns: 1fr;
  }

  .selected-copy {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .selected-preview {
    position: relative;
    top: auto;
  }

  .selected-copy p {
    max-width: 620px;
  }

  .work-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 28px;
  }

  .browser-canvas {
    aspect-ratio: 1920 / 910;
    min-height: 0;
  }

  .what-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .what-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    min-height: auto;
  }

  .what-words,
  .what-orbit {
    grid-column: 1 / -1;
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    margin: 18px 0 28px;
    transform: none;
  }

  .what-orbit {
    display: none;
  }

  .service-card,
  .service-card-01,
  .service-card-02,
  .service-card-03,
  .service-card-04,
  .service-card-05,
  .service-card-06 {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    min-height: 250px;
  }

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

  .portfolio-slider .portfolio-card-large {
    flex-basis: min(78vw, 520px);
  }

  .process-stage {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
    padding: 16px 4px 34px;
    scroll-snap-type: x proximity;
  }

  .process-card {
    min-width: 180px;
    scroll-snap-align: center;
  }

  .insights-inner,
  .faq-inner,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .insights-copy p,
  .faq-copy p {
    max-width: 620px;
  }

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

  .final-cta-action {
    display: grid;
    justify-items: start;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 22px 18px;
  }

  .site-header nav {
    gap: 14px;
    margin-right: 4px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .menu-button {
    width: 54px;
  }

  .menu-panel-inner {
    width: min(430px, 92vw);
  }

  .menu-panel nav a {
    font-size: clamp(34px, 13vw, 54px);
  }

  .center-brand h1 {
    font-size: clamp(48px, 14vw, 86px);
  }

  .center-brand p {
    margin-top: 18px;
    font-size: 15px;
  }

  .flow-map {
    width: 88vw;
    opacity: 0.5;
  }

  .orbit-light {
    opacity: 0.52;
    animation-duration: 18s;
  }

  .orbit-light-inner {
    display: none;
  }

  .flow-map span {
    display: none;
  }

  .css3d-card:nth-child(n + 5) {
    display: none;
  }

  .css3d-card {
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
    pointer-events: none;
  }

  .contact-button {
    right: 18px;
    bottom: 22px;
    min-width: 168px;
    height: 52px;
    font-size: 17px;
  }

  .cursor-trace {
    display: none;
  }

  .hero-label {
    bottom: 92px;
    width: 220px;
  }

  .next-panel {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 64px;
  }

  .next-title {
    font-size: clamp(30px, 9.4vw, 48px);
  }

  .method-copy p {
    font-size: 14px;
  }

  .featured-projects {
    padding-top: 96px;
  }

  .featured-copy h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .showroom {
    min-height: 440px;
    transform: none;
  }

  .showroom-guide,
  .showroom-orbit {
    display: none;
  }

  .showroom-deck {
    inset: 58px 0 0;
  }

  .showroom-card {
    width: min(82vw, 420px);
  }

  .showroom-card {
    --slot-x: 0px !important;
    --slot-z: 0px !important;
    --slot-ry: 0deg !important;
  }

  .showroom-card:not(.is-active) {
    opacity: 0 !important;
    pointer-events: none;
  }

  .showroom-nav {
    width: 46px;
    height: 46px;
    right: 0;
  }

  .project-preview {
    min-height: auto;
  }

  .preview-copy {
    padding: 42px 22px;
  }

  .preview-device {
    padding: 0 18px;
  }

  .preview-screen {
    border-width: 9px;
    border-bottom-width: 16px;
    border-radius: 16px 16px 0 0;
  }

  .selected-works-inner {
    gap: 34px;
  }

  .selected-copy h2 {
    font-size: clamp(36px, 11vw, 54px);
  }

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

  .work-item::after {
    width: 0;
  }

  .work-item.is-active::after {
    width: 72px;
  }

  .browser-canvas {
    aspect-ratio: 1920 / 910;
    min-height: 0;
  }

  .browser-canvas .project-page {
    padding: 24px;
  }

  .browser-canvas .project-hero {
    max-width: 72%;
    margin-top: 54px;
  }

  .browser-info {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .browser-info dl {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .what-we-do {
    padding-top: 84px;
  }

  .what-copy h2 {
    font-size: clamp(30px, 9vw, 46px);
  }

  .what-stage {
    grid-template-columns: 1fr;
  }

  .what-words strong {
    font-size: clamp(30px, 9vw, 44px);
  }

  .service-card {
    min-height: 220px;
  }

  .latest-insights,
  .faq-section,
  .final-cta {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .insights-copy h2,
  .faq-copy h2 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .insight-list {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .insight-no {
    margin-bottom: 20px;
  }

  .faq-item button {
    grid-template-columns: 44px 1fr 28px;
  }

  .faq-answer p {
    margin-left: 44px;
    font-size: 15px;
  }

  .final-cta h2 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .final-cta-action a {
    width: 100%;
    justify-content: space-between;
    padding: 19px 24px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    display: grid;
  }

  .portfolio-small-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card,
  .portfolio-card-large {
    grid-column: auto;
    min-height: 308px;
  }

  .portfolio-card-large .project-shot,
  .project-shot {
    min-height: 208px;
  }

  .project-hero {
    max-width: 74%;
  }

  .process-stage {
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 0;
  }

  .process-card,
  .process-card:nth-child(2),
  .process-card:nth-child(3),
  .process-card:nth-child(4) {
    min-height: 260px;
    transform:
      translateY(calc(28px - var(--card-progress) * 28px))
      scale(calc(0.96 + var(--card-progress) * 0.04));
  }

  .card-graphic {
    margin: 20px auto 18px;
  }
}

@keyframes orbitPulse {
  from {
    transform: translateX(-80px);
  }
  to {
    transform: translateX(90px);
  }
}

@keyframes heroOrbitOuter {
  from {
    transform: rotate(0deg) translateX(min(29vw, 380px)) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(min(29vw, 380px)) rotate(-360deg);
  }
}

@keyframes heroOrbitInner {
  from {
    transform: rotate(190deg) translateX(min(20vw, 286px)) rotate(-190deg);
  }
  to {
    transform: rotate(550deg) translateX(min(20vw, 286px)) rotate(-550deg);
  }
}

@keyframes introName {
  from {
    transform: translateY(8px) scale(0.985);
  }
  to {
    transform: translateY(-8px) scale(1.01);
  }
}

/* Service page */
.service-page {
  background: #fbfbfa;
}

.service-page .site-header {
  color: #fff;
}

.service-page:not(.is-dark-section) .site-header {
  color: var(--ink);
}

.service-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 78%, rgba(255, 74, 63, 0.22), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #070707;
  background-size: auto, 92px 92px, 92px 92px, auto;
  color: #fff;
}

.service-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 52%, rgba(255, 74, 63, 0.18), transparent 16%),
    radial-gradient(circle at 86% 68%, rgba(255, 74, 63, 0.28), transparent 9%);
  opacity: 0.9;
}

.service-hero {
  min-height: 720px;
  padding: clamp(90px, 8.4vw, 128px) clamp(22px, 5vw, 74px) clamp(78px, 8vw, 118px);
}

.service-hero-inner,
.service-summary,
.service-plans,
.service-price,
.service-faq,
.service-process-inner,
.service-cta-inner {
  width: min(1580px, 100%);
  margin: 0 auto;
}

.service-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.05fr);
  gap: clamp(46px, 6.5vw, 112px);
  align-items: center;
}

.service-path {
  display: block;
  margin-bottom: clamp(28px, 3.6vw, 52px);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-path b,
.service-kicker {
  color: #ff4a3f;
}

.service-kicker {
  display: block;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.service-hero h1,
.service-section-head h2,
.detail-copy h2,
.service-process h2,
.service-faq h2,
.service-cta h2 {
  margin: 0;
  letter-spacing: -0.06em;
  word-break: keep-all;
}

.service-hero h1 {
  font-size: clamp(42px, 4.35vw, 74px);
  font-weight: 420;
  line-height: 1.16;
}

.service-hero p {
  max-width: 560px;
  margin: clamp(28px, 3vw, 44px) 0 clamp(34px, 4vw, 62px);
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.08vw, 19px);
  line-height: 1.9;
  word-break: keep-all;
}

.service-line-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
}

.service-line-link::after {
  width: 92px;
  height: 1px;
  background: #ff4a3f;
  content: "";
}

.service-line-link i,
.summary-service-card i,
.price-compare i,
.service-cta i {
  font-style: normal;
  transition: transform 280ms ease;
}

.service-line-link:hover i,
.summary-service-card:hover i,
.price-compare a:hover i,
.service-cta a:hover i {
  transform: translateX(6px);
}

.service-hero-stack {
  position: relative;
  min-height: clamp(430px, 35vw, 560px);
  perspective: 1200px;
}

.service-hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.06), rgba(10, 10, 10, 0.3)),
    radial-gradient(circle at 70% 80%, rgba(255, 74, 63, 0.12), transparent 24%),
    url("./assets/service-hero-showcase.png") center / cover no-repeat,
    linear-gradient(145deg, #191919, #070707 68%);
  box-shadow: 0 46px 120px rgba(0, 0, 0, 0.38);
  transform: rotateY(-5deg) rotateZ(0.6deg);
}

.service-hero-image::before {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  content: "";
}

.service-hero-image::after {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 74, 63, 0.65), transparent);
  content: "";
}

.service-hero-stack::before,
.service-hero-stack::after {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 49%;
  height: 42%;
  border: 1px solid rgba(255, 74, 63, 0.18);
  border-radius: 50%;
  content: "";
  transform: rotateX(70deg) rotateZ(-12deg);
}

.service-hero-stack::after {
  inset: 24% 2% auto;
  height: 54%;
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-service-card {
  position: absolute;
  z-index: 2;
  left: 19%;
  right: -1%;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 24px 28px;
  background: rgba(15, 15, 15, 0.66);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  transform: rotateY(-9deg) rotateZ(2deg);
  transition: transform 360ms ease, border-color 300ms ease, background 300ms ease;
}

.hero-service-card:hover {
  border-color: rgba(255, 74, 63, 0.62);
  background: rgba(18, 18, 18, 0.78);
  transform: translateY(-8px) rotateY(-6deg) rotateZ(1deg);
}

.hero-service-card-01 {
  top: 18%;
}

.hero-service-card-02 {
  top: 41%;
  left: 9%;
  right: 7%;
}

.hero-service-card-03 {
  top: 64%;
  left: 19%;
  right: -2%;
}

.hero-service-card i {
  position: relative;
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.hero-service-card i::before,
.hero-service-card i::after {
  position: absolute;
  content: "";
}

.hero-service-card i::before {
  left: 9px;
  top: 10px;
  width: 18px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 3px;
}

.hero-service-card i::after {
  right: 8px;
  bottom: 8px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: #ff4a3f;
}

.hero-service-card span {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.hero-service-card strong {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 620;
}

.service-summary,
.service-plans,
.service-price,
.service-faq {
  padding: clamp(100px, 9vw, 158px) clamp(22px, 5vw, 74px);
}

.service-section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 72px);
}

.service-section-head h2,
.detail-copy h2,
.service-faq h2 {
  font-size: clamp(38px, 4vw, 70px);
  font-weight: 900;
  line-height: 1.15;
}

.service-section-head a,
.service-section-head p {
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 15px;
  font-weight: 720;
}

.service-section-head a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.summary-card-grid,
.plan-grid,
.price-compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.summary-card-grid {
  gap: 18px;
}

.summary-service-card {
  min-height: 278px;
  border: 1px solid rgba(17, 17, 17, 0.11);
  border-radius: 8px;
  padding: clamp(28px, 3vw, 48px);
  background: rgba(255, 255, 255, 0.62);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.summary-service-card:hover {
  border-color: rgba(159, 47, 43, 0.4);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.08);
  transform: translateY(-8px);
}

.summary-service-card span,
.service-no {
  color: #ff4a3f;
  font-size: 14px;
  font-weight: 950;
}

.summary-service-card em {
  display: block;
  margin-top: 18px;
  color: rgba(17, 17, 17, 0.38);
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
}

.summary-service-card h3 {
  margin: 6px 0 0;
  font-size: clamp(22px, 1.65vw, 30px);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.summary-service-card p {
  margin: 22px 0 36px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 15px;
  line-height: 1.8;
}

.summary-service-card strong {
  display: inline-flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 900;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
  padding: clamp(72px, 7vw, 116px) clamp(22px, 5vw, 74px);
  background: #fbfbfa;
}

.service-detail-dark {
  background:
    radial-gradient(circle at 84% 52%, rgba(255, 74, 63, 0.13), transparent 20%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #080808;
  background-size: auto, 92px 92px, 92px 92px, auto;
  color: #fff;
}

.detail-copy {
  max-width: 690px;
}

.detail-copy p {
  margin: 24px 0 34px;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.85;
  word-break: keep-all;
}

.service-detail-dark .detail-copy p {
  color: rgba(255, 255, 255, 0.64);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 15px;
  font-weight: 700;
}

.service-detail-dark .feature-list li {
  color: rgba(255, 255, 255, 0.72);
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4a3f;
  content: "";
}

.detail-visual {
  display: grid;
  place-items: center;
  min-height: clamp(320px, 31vw, 520px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.detail-image-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.68)),
    radial-gradient(circle at 72% 78%, rgba(255, 74, 63, 0.22), transparent 22%),
    #111;
}

.detail-image-visual::before {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  opacity: 0.92;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1), opacity 500ms ease;
}

.detail-image-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
  content: "";
  pointer-events: none;
}

.detail-image-visual:hover::before {
  opacity: 1;
  transform: scale(1.035);
}

.detail-image-visual > span {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.service-website-image::before {
  background-image: url("./assets/service-website-detail.png");
}

.service-blog-image::before {
  background-image: url("./assets/service-blog-detail.png");
}

.service-package-image::before {
  background-image: url("./assets/service-package-detail.png");
}

.detail-visual-light {
  border-color: rgba(17, 17, 17, 0.1);
  background: linear-gradient(135deg, #f7f7f5, #e1e1df);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.08);
}

.mock-browser {
  position: relative;
  width: min(76%, 520px);
  aspect-ratio: 1.65 / 1;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px),
    #f3f3f1;
  background-size: 34px 34px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.mock-browser span {
  position: absolute;
  inset: 0 0 auto;
  height: 42px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.mock-browser div {
  position: absolute;
  left: 9%;
  top: 28%;
  width: 44%;
  height: 13%;
  background: #111;
  box-shadow: 0 42px 0 rgba(17, 17, 17, 0.18), 0 84px 0 rgba(159, 47, 43, 0.34);
}

.mock-browser i {
  position: absolute;
  right: 10%;
  bottom: 12%;
  width: 30%;
  height: 52%;
  background: #191919;
  transform: rotate(-7deg);
}

.paper-stack {
  position: relative;
  width: min(74%, 520px);
  aspect-ratio: 1.5 / 1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 25px 70px rgba(17, 17, 17, 0.12);
  transform: rotate(-4deg);
}

.paper-stack::before,
.paper-stack::after {
  position: absolute;
  inset: 10%;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.05);
  content: "";
  transform: translate(28px, -18px) rotate(9deg);
}

.paper-stack::after {
  inset: 18% 12%;
  background: rgba(159, 47, 43, 0.11);
  transform: translate(-28px, 28px) rotate(-8deg);
}

.paper-stack b {
  position: absolute;
  left: 18%;
  top: 34%;
  z-index: 1;
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.package-box {
  display: grid;
  place-items: center;
  width: min(72%, 470px);
  aspect-ratio: 1.4 / 1;
  border-radius: 10px;
  background: linear-gradient(135deg, #1d1d1d, #050505);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
  transform: rotate(-8deg);
}

.package-box span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.package-box strong {
  font-size: clamp(30px, 3.5vw, 58px);
  letter-spacing: -0.06em;
}

.compact-plans {
  padding-top: 0;
}

.plan-grid,
.price-compare {
  gap: 0;
  border: 1px solid rgba(17, 17, 17, 0.11);
  border-radius: 8px;
  overflow: hidden;
}

.plan-card,
.price-compare article {
  position: relative;
  min-height: 470px;
  padding: clamp(30px, 3vw, 54px);
  background: rgba(255, 255, 255, 0.58);
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.plan-card:last-child,
.price-compare article:last-child {
  border-right: 0;
}

.plan-card:hover,
.price-compare article:hover {
  z-index: 2;
  background: #fff;
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.1);
  transform: scale(1.02);
}

.plan-card.is-recommended {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 74, 63, 0.13), transparent 24%),
    #fff;
  box-shadow: inset 0 0 0 1px rgba(159, 47, 43, 0.28);
}

.plan-card em {
  position: absolute;
  right: 24px;
  top: 24px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 74, 63, 0.1);
  color: #ff4a3f;
  font-style: normal;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.plan-card span,
.price-compare span {
  color: rgba(17, 17, 17, 0.42);
  font-size: 14px;
  font-weight: 900;
}

.plan-card h3 {
  margin: 20px 0 34px;
  font-size: clamp(24px, 1.75vw, 32px);
  letter-spacing: -0.045em;
}

.plan-card strong,
.price-compare strong {
  display: block;
  color: #111;
  font-size: clamp(30px, 3vw, 54px);
  font-weight: 950;
  letter-spacing: -0.055em;
}

.plan-card p {
  margin: 26px 0 28px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 15px;
  line-height: 1.8;
}

.plan-features {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 24px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 15px;
  font-weight: 680;
  line-height: 1.55;
  word-break: keep-all;
}

.plan-features li::before {
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(159, 47, 43, 0.58);
  border-radius: 50%;
  content: "";
}

.plan-features li::after {
  position: absolute;
  left: 4px;
  top: calc(0.42em + 4px);
  width: 6px;
  height: 3px;
  border-left: 1px solid #9f2f2b;
  border-bottom: 1px solid #9f2f2b;
  content: "";
  transform: rotate(-45deg);
}

.plan-info {
  margin-top: 28px;
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(17, 17, 17, 0.045);
  color: rgba(17, 17, 17, 0.62);
  font-size: 14px;
  font-weight: 680;
  line-height: 1.65;
  word-break: keep-all;
}

.plan-card.is-recommended .plan-info {
  background: rgba(159, 47, 43, 0.08);
  color: rgba(159, 47, 43, 0.92);
}

.price-compare article {
  display: grid;
  min-height: 410px;
}

.price-compare ul {
  display: grid;
  gap: 13px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.price-compare li {
  position: relative;
  padding-left: 18px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 15px;
}

.price-compare li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff4a3f;
  content: "";
}

.price-compare a {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #111;
  font-size: 14px;
  font-weight: 900;
}

.price-note {
  margin: 24px 0 0;
  color: rgba(17, 17, 17, 0.48);
  font-size: 14px;
  line-height: 1.7;
}

.service-process {
  padding: clamp(82px, 8vw, 124px) clamp(22px, 5vw, 74px);
}

.service-process-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
}

.service-process h2 {
  font-size: clamp(34px, 3.4vw, 58px);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-timeline li {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 26px;
}

.process-timeline li::after {
  position: absolute;
  right: -13px;
  top: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4a3f;
  content: "";
}

.process-timeline span {
  color: #ff4a3f;
  font-size: 13px;
  font-weight: 950;
}

.process-timeline strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.process-timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.65;
}

.service-faq {
  display: grid;
  grid-template-columns: minmax(230px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(44px, 7vw, 110px);
}

.service-faq-copy p {
  color: rgba(17, 17, 17, 0.56);
  font-size: 16px;
  line-height: 1.8;
}

.service-faq-list {
  border-top: 1px solid rgba(17, 17, 17, 0.13);
}

.service-faq-list article {
  border-bottom: 1px solid rgba(17, 17, 17, 0.13);
}

.service-faq-list button {
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  width: 100%;
  border: 0;
  padding: 28px 0;
  background: transparent;
  color: #111;
  text-align: left;
  font-size: clamp(17px, 1.2vw, 22px);
  font-weight: 850;
  letter-spacing: -0.035em;
  cursor: pointer;
}

.service-faq-list i {
  position: relative;
  width: 22px;
  height: 22px;
  justify-self: end;
  transition: transform 300ms ease;
}

.service-faq-list i::before,
.service-faq-list i::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #111;
  content: "";
  transform: translate(-50%, -50%);
}

.service-faq-list i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-faq-list article.is-open i {
  transform: rotate(45deg);
}

.service-faq-list article > div {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-faq-list p {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 16px;
  line-height: 1.8;
}

.service-cta {
  padding: clamp(96px, 9vw, 150px) clamp(22px, 5vw, 74px);
}

.service-cta::before {
  position: absolute;
  right: -18%;
  bottom: -44%;
  width: min(72vw, 940px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 74, 63, 0.62), rgba(159, 47, 43, 0.18) 42%, transparent 70%);
  filter: blur(18px);
  content: "";
}

.service-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

.service-cta span {
  display: block;
  margin-bottom: 24px;
  color: #ff4a3f;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.service-cta h2 {
  font-size: clamp(44px, 5vw, 86px);
  font-weight: 420;
  line-height: 1.22;
}

.service-cta a {
  display: inline-flex;
  align-items: center;
  gap: 42px;
  border-radius: 999px;
  padding: 22px 34px;
  background: linear-gradient(135deg, #ff4a3f, #c71811);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 24px 60px rgba(241, 59, 48, 0.32);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.service-cta a:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 78px rgba(241, 59, 48, 0.45);
}

[data-service-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--service-delay, 0ms);
}

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

/* Contact page */
.contact-page {
  min-height: 100svh;
  background: #070707;
  color: #fff;
}

.contact-page .site-header {
  color: #fff;
}

.contact-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(100px, 8.8vw, 138px) clamp(22px, 5vw, 74px) clamp(70px, 7vw, 110px);
  background:
    radial-gradient(circle at 83% 76%, rgba(255, 74, 63, 0.22), transparent 24%),
    radial-gradient(circle at 42% 20%, rgba(255, 255, 255, 0.055), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #070707;
  background-size: auto, auto, 92px 92px, 92px 92px, auto;
}

.contact-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 74, 63, 0.12) 48.2%, transparent 52%),
    radial-gradient(circle at 72% 48%, rgba(255, 74, 63, 0.16), transparent 18%);
  opacity: 0.8;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 0.92fr);
  gap: clamp(48px, 7vw, 118px);
  align-items: start;
  width: min(1580px, 100%);
  margin: 0 auto;
}

.contact-copy {
  position: sticky;
  top: 120px;
  padding-top: clamp(10px, 2vw, 30px);
}

.contact-path {
  display: block;
  margin-bottom: clamp(42px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.contact-path b {
  color: #ff4a3f;
}

.contact-copy h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(44px, 4.5vw, 78px);
  font-weight: 520;
  line-height: 1.16;
  letter-spacing: -0.06em;
  word-break: keep-all;
}

.contact-copy p {
  max-width: 620px;
  margin: clamp(28px, 3vw, 44px) 0 clamp(40px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.9;
  word-break: keep-all;
}

.contact-info-list {
  display: grid;
  gap: 0;
  width: min(560px, 100%);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.contact-info-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-info-list span {
  color: #ff4a3f;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-info-list a {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 750;
}

.contact-form-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: clamp(26px, 3.4vw, 54px);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 74, 63, 0.16), transparent 24%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.contact-form-panel::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  opacity: 0.32;
  pointer-events: none;
}

.contact-form-head,
.contact-form-grid,
.contact-submit {
  position: relative;
  z-index: 1;
}

.contact-form-head {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(30px, 3vw, 46px);
}

.contact-form-head span {
  color: #ff4a3f;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form-head strong {
  color: #fff;
  font-size: clamp(28px, 2.2vw, 40px);
  letter-spacing: -0.045em;
}

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

.contact-field {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.contact-field-full,
.contact-agree {
  grid-column: 1 / -1;
}

.contact-field > span,
.contact-file > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 820;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  font: inherit;
  font-size: 15px;
  outline: 0;
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.contact-field textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.contact-field select option {
  color: #111;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(255, 74, 63, 0.56);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(255, 74, 63, 0.08);
}

.contact-checks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.contact-checks label {
  position: relative;
  cursor: pointer;
}

.contact-checks input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-checks span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 820;
  transition:
    border-color 260ms ease,
    background 260ms ease,
    color 260ms ease,
    transform 260ms ease;
}

.contact-checks input:checked + span,
.contact-checks label:hover span {
  border-color: rgba(255, 74, 63, 0.56);
  background: rgba(255, 74, 63, 0.1);
  color: #fff;
  transform: translateY(-2px);
}

.contact-file input[type="file"] {
  padding: 14px;
}

.contact-file small {
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  line-height: 1.6;
}

.contact-agree {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.7;
}

.contact-agree input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #ff4a3f;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  margin-top: 28px;
  border: 0;
  border-radius: 999px;
  padding: 20px 26px 20px 30px;
  background: #fff;
  color: #111;
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  font-weight: 900;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.contact-submit i {
  font-style: normal;
  transition: transform 260ms ease;
}

.contact-submit:hover {
  background: #ff4a3f;
  color: #fff;
  box-shadow: 0 22px 54px rgba(255, 74, 63, 0.28);
  transform: translateY(-3px);
}

.contact-submit:hover i {
  transform: translateX(6px);
}

.contact-submit:disabled {
  background: rgba(255, 255, 255, 0.78);
  color: rgba(17, 17, 17, 0.62);
  cursor: wait;
  box-shadow: none;
  transform: none;
}

.contact-submit:disabled i {
  transform: none;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

@media (max-width: 980px) {
  .service-hero-inner,
  .service-detail,
  .service-process-inner,
  .service-faq,
  .service-cta-inner {
    grid-template-columns: 1fr;
  }

  .service-hero-stack {
    min-height: 360px;
  }

  .summary-card-grid,
  .plan-grid,
  .price-compare {
    grid-template-columns: 1fr;
  }

  .plan-card,
  .price-compare article {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  }

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

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

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

  .contact-copy {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .service-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .service-hero h1,
  .service-cta h2 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .service-hero-stack {
    min-height: 340px;
  }

  .hero-service-card {
    left: 0;
    right: 0;
    padding: 20px;
    transform: none;
  }

  .hero-service-card:hover {
    transform: translateY(-6px);
  }

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

  .service-summary,
  .service-plans,
  .service-price,
  .service-faq,
  .service-detail,
  .service-process,
  .service-cta {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .service-section-head h2,
  .detail-copy h2,
  .service-faq h2 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .service-cta a {
    width: 100%;
    justify-content: space-between;
  }

  .contact-hero {
    padding-top: 112px;
  }

  .contact-copy h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .contact-info-list li,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form-panel {
    padding: 24px 18px;
    border-radius: 14px;
  }
}

/* Portfolio archive page */
.portfolio-page {
  background: #fbfbfa;
  color: var(--ink);
}

.portfolio-page .site-header {
  color: var(--ink);
}

.portfolio-page.is-dark-section .site-header {
  color: #fff;
}

.portfolio-archive-hero {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding: clamp(96px, 8vw, 132px) clamp(22px, 5vw, 74px) clamp(68px, 6vw, 98px);
  background:
    radial-gradient(circle at 84% 18%, rgba(159, 47, 43, 0.045), transparent 18%),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    #fbfbfa;
  background-size: auto, 92px 92px, 92px 92px, auto;
}

.portfolio-hero-inner,
.portfolio-archive,
.archive-featured-inner {
  width: min(1580px, 100%);
  margin: 0 auto;
}

.portfolio-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 0.92fr);
  gap: clamp(34px, 5.2vw, 82px);
  align-items: center;
}

.portfolio-path {
  display: block;
  margin-bottom: clamp(22px, 3vw, 42px);
  color: rgba(17, 17, 17, 0.56);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.portfolio-path b {
  color: #ff4a3f;
}

.portfolio-hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(38px, 4.2vw, 68px);
  font-weight: 900;
  letter-spacing: -0.058em;
  line-height: 1.16;
  word-break: keep-all;
}

.portfolio-hero-copy p {
  max-width: 520px;
  margin: clamp(28px, 3vw, 44px) 0 clamp(34px, 4vw, 58px);
  color: rgba(17, 17, 17, 0.6);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.86;
  word-break: keep-all;
}

.portfolio-line-link {
  color: var(--ink);
}

.portfolio-hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(42vw, 540px);
  overflow: hidden;
  border-radius: 10px 10px 10px 70px;
  background:
    radial-gradient(circle at 72% 26%, rgba(159, 47, 43, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(245,243,239,0.9)),
    #f5f3ef;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.04);
}

.portfolio-hero-mark::before {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(159, 47, 43, 0.12);
  border-radius: 50%;
  content: "";
}

.portfolio-hero-mark::after {
  position: absolute;
  right: 8%;
  bottom: 8%;
  color: rgba(17, 17, 17, 0.06);
  content: "WORKS";
  font-size: clamp(54px, 8vw, 130px);
  font-weight: 950;
  letter-spacing: -0.08em;
}

.portfolio-hero-mark img {
  position: relative;
  z-index: 1;
  width: 132%;
  height: 132%;
  object-fit: contain;
  filter: drop-shadow(0 30px 70px rgba(17, 17, 17, 0.14));
  transform: scale(1.08);
}

.portfolio-archive {
  padding: clamp(52px, 5vw, 82px) clamp(22px, 5vw, 74px) clamp(96px, 9vw, 150px);
}

.portfolio-filter-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin-bottom: clamp(36px, 5vw, 68px);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 48px);
}

.portfolio-filters button {
  position: relative;
  border: 0;
  padding: 0 0 12px;
  background: transparent;
  color: rgba(17, 17, 17, 0.82);
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
}

.portfolio-filters button::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ff4a3f;
  content: "";
  transition: width 260ms ease;
}

.portfolio-filters button.is-active {
  color: #ff4a3f;
}

.portfolio-filters button.is-active::after,
.portfolio-filters button:hover::after {
  width: 100%;
}

.portfolio-filter-bar > span {
  color: rgba(17, 17, 17, 0.46);
  font-size: 13px;
  font-weight: 760;
}

.archive-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3.2vw, 54px);
}

.archive-project-card {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.045);
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.archive-project-card.is-hidden {
  display: none;
}

.archive-project-card.is-filtering {
  opacity: 0;
  transform: translateY(18px);
}

.archive-project-card:hover {
  border-color: rgba(159, 47, 43, 0.32);
  box-shadow: 0 32px 90px rgba(17, 17, 17, 0.1);
  transform: translateY(-7px);
}

.archive-project-card a {
  display: grid;
}

.archive-browser,
.featured-browser {
  position: relative;
  overflow: hidden;
  min-height: clamp(270px, 25vw, 430px);
  margin: 16px 16px 0;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px 8px 4px 4px;
  background: #f0f0ee;
}

.browser-dots {
  position: absolute;
  left: 14px;
  top: 13px;
  z-index: 2;
  display: flex;
  gap: 6px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.22);
}

.browser-dots i:nth-child(1) {
  background: #ff5f57;
}

.browser-dots i:nth-child(2) {
  background: #ffbd2e;
}

.browser-dots i:nth-child(3) {
  background: #28c840;
}

.archive-shot {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: clamp(34px, 4vw, 70px);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.archive-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #f4f4f2;
}

.archive-image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
  transform-origin: top center;
  transition:
    filter 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.archive-project-card:hover .archive-image img,
.featured-browser:hover .archive-image img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.025);
}

.archive-project-card:hover .archive-shot,
.featured-browser:hover .archive-shot {
  transform: scale(1.02);
}

.archive-shot span {
  position: relative;
  z-index: 1;
  max-width: 58%;
  color: #fff;
  font-size: clamp(24px, 2.8vw, 48px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1.16;
  word-break: keep-all;
}

.archive-shot-house {
  background:
    linear-gradient(90deg, rgba(5, 12, 22, 0.92), rgba(5, 12, 22, 0.35)),
    radial-gradient(circle at 78% 64%, #d59b5b, transparent 16%),
    linear-gradient(135deg, #0d2a48, #09111d 58%, #1d2832);
}

.archive-shot-clinic {
  justify-items: start;
  background:
    radial-gradient(circle at 77% 50%, rgba(255,255,255,0.9), transparent 21%),
    linear-gradient(90deg, #fff, #ececea);
}

.archive-shot-clinic span {
  color: #111;
}

.archive-shot-law {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.28)),
    linear-gradient(135deg, #252525, #070707);
}

.archive-shot-interior {
  background:
    linear-gradient(90deg, rgba(74, 57, 44, 0.72), rgba(245, 236, 223, 0.2)),
    linear-gradient(135deg, #cbb9a3, #f1ede8);
}

.archive-shot-cafe {
  background:
    linear-gradient(90deg, rgba(37, 20, 12, 0.88), rgba(37, 20, 12, 0.25)),
    radial-gradient(circle at 74% 56%, #b98a5d, transparent 18%),
    linear-gradient(135deg, #20130d, #4a2c1a);
}

.archive-shot-corp {
  background:
    linear-gradient(90deg, rgba(0, 8, 20, 0.92), rgba(0, 8, 20, 0.3)),
    radial-gradient(circle at 72% 63%, #27496d, transparent 28%),
    #08111f;
}

.archive-shot-featured {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at 72% 54%, #9b7a67, transparent 19%),
    linear-gradient(135deg, #121212, #2a2523);
}

.archive-project-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  padding: clamp(24px, 2.6vw, 40px);
}

.archive-project-info div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.archive-project-info span {
  color: #ff4a3f;
  font-size: 13px;
  font-weight: 950;
}

.archive-project-info em {
  color: rgba(17, 17, 17, 0.38);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.archive-project-info h2 {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: clamp(24px, 1.9vw, 34px);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.archive-project-info p {
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 15px;
  line-height: 1.7;
  word-break: keep-all;
}

.archive-project-info strong {
  align-self: end;
  display: inline-flex;
  gap: 18px;
  color: #111;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.archive-project-info i {
  color: #ff4a3f;
  font-style: normal;
  transition: transform 260ms ease;
}

.archive-project-card:hover .archive-project-info i {
  transform: translateX(6px);
}

.archive-featured-case {
  position: relative;
  overflow: hidden;
  padding: clamp(94px, 8vw, 140px) clamp(22px, 5vw, 74px);
  background:
    radial-gradient(circle at 88% 86%, rgba(255, 74, 63, 0.18), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #070707;
  background-size: auto, 92px 92px, 92px 92px, auto;
  color: #fff;
}

.archive-featured-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.25fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}

.archive-featured-copy h2 {
  margin: 0;
  font-size: clamp(36px, 3.8vw, 66px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1.25;
  word-break: keep-all;
}

.archive-featured-copy p {
  margin: clamp(24px, 3vw, 40px) 0 clamp(28px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.85;
  word-break: keep-all;
}

.featured-browser {
  min-height: clamp(330px, 32vw, 560px);
  margin: 0;
  border-color: rgba(255, 255, 255, 0.16);
  background: #111;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.38);
}

.portfolio-cta {
  border-radius: 0;
}

[data-portfolio-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--portfolio-delay, 0ms);
}

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

@media (max-width: 980px) {
  .portfolio-hero-inner,
  .archive-featured-inner {
    grid-template-columns: 1fr;
  }

  .portfolio-hero-mark {
    min-height: 360px;
  }

  .archive-project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .portfolio-archive-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .portfolio-hero-copy h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .portfolio-filter-bar {
    grid-template-columns: 1fr;
  }

  .portfolio-filters {
    gap: 16px 24px;
  }

  .archive-browser {
    min-height: 245px;
    margin: 10px 10px 0;
  }

  .archive-shot span {
    max-width: 76%;
    font-size: clamp(23px, 8vw, 36px);
  }

  .archive-project-info {
    grid-template-columns: 1fr;
  }

  .archive-project-info strong {
    justify-self: start;
    margin-top: 10px;
  }

  .archive-featured-copy h2 {
    font-size: clamp(34px, 10vw, 50px);
  }
}

@keyframes introWord {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.98);
  }
  18% {
    opacity: 1;
  }
  44% {
    opacity: 0;
    transform: translateY(-76px) scale(1.02);
  }
  100% {
    opacity: 0;
    transform: translateY(-76px) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-light,
  .center-brand h1 span::after {
    animation: none;
  }
}

.insight-page {
  background:
    linear-gradient(rgba(8, 8, 8, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.035) 1px, transparent 1px),
    #fbfaf8;
  background-size: 96px 96px;
  color: #101010;
}

.insight-page .site-header {
  color: #111;
}

.insight-page .site-header nav {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 0, 0, 0.08);
}

.insight-hero {
  display: grid;
  min-height: 58vh;
  align-items: end;
  padding: 150px clamp(28px, 5vw, 78px) 70px;
}

.insight-hero-copy {
  max-width: 820px;
}

.insight-hero h1 {
  margin: 28px 0 24px;
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: 0;
}

.insight-hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(20, 20, 20, 0.62);
  font-size: 18px;
  line-height: 1.85;
}

.insight-archive {
  padding: 30px clamp(28px, 5vw, 78px) 120px;
}

.insight-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 28px;
}

.archive-card {
  min-height: 460px;
  opacity: 1;
  transform: none;
}

.insight-final {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .insight-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .insight-hero {
    min-height: auto;
    padding-top: 118px;
  }

  .insight-archive-grid {
    grid-template-columns: 1fr;
  }
}
