:root {
  --black: #050505;
  --ink: #0d0d0d;
  --white: #f5f5f2;
  --soft: #bdbdb8;
  --muted: #777772;
  --line: rgba(245, 245, 242, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 5.5vw;
  color: var(--white);
  mix-blend-mode: difference;
}

.site-header.solid {
  position: sticky;
  background: rgba(5, 5, 5, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  mix-blend-mode: normal;
}

.site-header.home-header {
  position: fixed;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  mix-blend-mode: difference;
  transition: background .45s ease, border-color .45s ease, backdrop-filter .45s ease, padding .45s ease;
}

.site-header.home-header.is-scrolled {
  padding-top: 22px;
  padding-bottom: 22px;
  background: rgba(5, 5, 5, .86);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
  mix-blend-mode: normal;
}

.wordmark {
  display: inline-flex;
  width: clamp(120px, 10vw, 188px);
  color: var(--white);
}

.wordmark img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .35s ease, filter .35s ease, opacity .35s ease;
}

.wordmark:hover img {
  transform: translateY(-1px) scale(1.035);
  opacity: .92;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

nav a {
  color: rgba(245, 245, 242, .78);
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--white);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(245, 245, 242, .18);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), opacity .25s ease, top .35s cubic-bezier(.22, 1, .36, 1);
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 27px;
}

.menu-toggle::after {
  content: none;
}

.menu-toggle:hover {
  background: transparent;
  color: var(--white);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

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

.home-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.home-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroImageIn 1.6s cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 47% 54%, rgba(255,255,255,.16), transparent 18%),
    linear-gradient(90deg, rgba(0,0,0,.90), rgba(0,0,0,.48) 42%, rgba(0,0,0,.04) 100%),
    linear-gradient(0deg, rgba(0,0,0,.62), transparent 42%);
}

.identity-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: .86;
  mix-blend-mode: screen;
}

.home-hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, 82vw);
  padding: 32vh 5.5vw 12vh;
  opacity: 0;
  transform: translateY(18px);
  animation: heroCopyIn 1.05s cubic-bezier(.22, 1, .36, 1) .28s forwards;
}

.home-hero h1 {
  margin: 130px 0 36px;
  color: var(--white);
  font-size: clamp(18px, 1.35vw, 28px);
  font-weight: 400;
  letter-spacing: .36em;
  line-height: 1.85;
  text-transform: uppercase;
}

.hairline {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--white);
  transform-origin: left center;
  animation: hairlineIn .9s cubic-bezier(.22, 1, .36, 1) .9s both;
}

@keyframes heroImageIn {
  to {
    transform: scale(1);
  }
}

@keyframes heroCopyIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hairlineIn {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes pulseDot {
  0%, 100% {
    opacity: .35;
    transform: scale(.85);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes chatMessageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page {
  min-height: calc(100vh - 100px);
}

.home-intro,
.preview-grid,
.page-title,
.split-page,
.about-layout,
.brand-wall-page,
.contact-layout {
  border-top: 1px solid var(--line);
}

.home-intro,
.page-title {
  padding: 110px 5.5vw;
}

.eyebrow {
  margin: 0 0 34px;
  color: var(--soft);
  font-size: 12px;
  letter-spacing: .36em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 0;
  max-width: 980px;
  font-size: clamp(48px, 7vw, 122px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: .92;
}

.home-intro h2 {
  max-width: 1180px;
}

.intro-note {
  max-width: 760px;
  margin: 40px 0 0;
  color: var(--soft);
  font-size: clamp(19px, 1.55vw, 26px);
  font-weight: 300;
  line-height: 1.55;
}

.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 360px;
  margin-top: 54px;
  border: 1px solid var(--line);
  padding: 22px 28px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.outline-link:hover {
  background: var(--white);
  color: var(--black);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.preview-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5.5vw;
  border-right: 1px solid var(--line);
}

.preview-card span {
  color: var(--soft);
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.preview-card strong {
  max-width: 720px;
  font-size: clamp(38px, 5vw, 86px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: .94;
}

.image-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
  transition: transform .8s ease;
}

.image-card span {
  position: relative;
  z-index: 1;
}

.image-card:hover img {
  transform: scale(1.04);
}

.home-services-band,
.visual-feature,
.website-section,
.ai-home-showcase,
.featured-work,
.home-process,
.home-clients,
.home-cta {
  border-top: 1px solid var(--line);
}

.home-services-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 7vw;
  padding: 110px 5.5vw;
}

.home-services-copy h2 {
  font-size: clamp(42px, 5.4vw, 92px);
}

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

.mini-service-list a {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 26px;
  align-items: center;
  min-height: 96px;
  border-bottom: 1px solid var(--line);
}

.mini-service-list span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .2em;
}

.mini-service-list strong {
  font-size: clamp(28px, 3vw, 54px);
  font-weight: 300;
  letter-spacing: -0.055em;
}

.mini-service-list a:hover {
  background: var(--white);
  color: var(--black);
}

.visual-feature {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
}

.visual-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .88;
}

.visual-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.38) 52%, rgba(0,0,0,.16));
}

.visual-feature > div {
  position: relative;
  z-index: 1;
  width: min(980px, 86vw);
  padding: 14vh 5.5vw;
}

.website-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 7vw;
  align-items: start;
  padding: 120px 5.5vw;
  background:
    linear-gradient(180deg, rgba(245,245,242,.035), transparent 42%),
    #050505;
}

.website-copy {
  position: sticky;
  top: 126px;
}

.website-copy h2 {
  max-width: 780px;
  font-size: clamp(48px, 6.6vw, 118px);
}

.website-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgba(245,245,242,.7);
  font-size: clamp(19px, 1.45vw, 25px);
  font-weight: 300;
  line-height: 1.55;
}

.website-system {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.website-system article {
  min-height: 320px;
  padding: 32px;
  background: #080808;
  transition: background .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
}

.website-system article:hover {
  background: #f5f5f2;
  color: #050505;
  transform: translateY(-4px);
}

.website-system span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.website-system h3 {
  margin: 86px 0 22px;
  font-size: clamp(30px, 3.2vw, 58px);
}

.website-system p {
  color: rgba(245,245,242,.68);
  font-size: 18px;
  line-height: 1.52;
}

.website-system article:hover p,
.website-system article:hover span {
  color: rgba(5,5,5,.62);
}

.website-page {
  background: #050505;
}

.website-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 7vw;
  align-items: center;
  min-height: calc(100vh - 112px);
  padding: 120px 5.5vw;
  border-top: 1px solid var(--line);
}

.website-hero h1 {
  max-width: 1120px;
}

.website-hero > div > p:not(.eyebrow) {
  max-width: 760px;
  margin: 42px 0 0;
  color: rgba(245,245,242,.72);
  font-size: clamp(20px, 1.55vw, 28px);
  font-weight: 300;
  line-height: 1.55;
}

.website-browser {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 560px;
  padding: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(245,245,242,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(245,245,242,.06) 1px, transparent 1px),
    #080808;
  background-size: 42px 42px;
  overflow: hidden;
}

.website-browser::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(245,245,242,.18);
  pointer-events: none;
}

.website-browser span {
  width: 86px;
  height: 10px;
  background: var(--white);
}

.website-browser div {
  width: min(420px, 88%);
  height: 220px;
  justify-self: end;
  border: 1px solid rgba(245,245,242,.24);
  background:
    linear-gradient(180deg, rgba(245,245,242,.16), transparent 38%),
    rgba(245,245,242,.035);
}

.website-browser i {
  display: block;
  width: 44%;
  height: 1px;
  background: var(--white);
}

.website-browser strong {
  justify-self: end;
  color: rgba(245,245,242,.58);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.website-deliverables {
  padding: 0 5.5vw 120px;
}

.website-deliverables > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.website-deliverables article {
  min-height: 420px;
  padding: 30px;
  background: #080808;
}

.website-deliverables span,
.website-build-list span,
.website-stack-grid span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.website-deliverables h2 {
  margin: 92px 0 26px;
  font-size: clamp(30px, 3.3vw, 58px);
}

.website-deliverables p,
.website-build-list p,
.website-stack-grid p {
  color: rgba(245,245,242,.7);
  font-size: 18px;
  line-height: 1.52;
}

.website-build {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7vw;
  padding: 120px 5.5vw;
  border-top: 1px solid var(--line);
}

.website-build h2 {
  max-width: 760px;
  font-size: clamp(44px, 6vw, 106px);
}

.website-build-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.website-build-list article {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  padding: 30px;
  background: #080808;
}

.website-stack {
  padding: 120px 5.5vw;
  border-top: 1px solid var(--line);
}

.website-stack-copy h2 {
  max-width: 900px;
  font-size: clamp(48px, 7vw, 128px);
}

.website-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
}

.website-stack-grid div {
  min-height: 250px;
  padding: 28px;
  background: #080808;
}

.website-stack-grid p {
  margin-top: 72px;
}

.website-cta {
  padding: 120px 5.5vw;
  border-top: 1px solid var(--line);
}

.website-cta h2 {
  max-width: 1180px;
  font-size: clamp(42px, 6vw, 112px);
}

.ai-home-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 6vw;
  align-items: center;
  min-height: 760px;
  overflow: hidden;
  padding: 110px 5.5vw;
  background:
    radial-gradient(circle at 72% 38%, rgba(140, 96, 255, .28), transparent 28%),
    radial-gradient(circle at 20% 68%, rgba(0, 229, 255, .13), transparent 26%),
    #050509;
}

.ai-home-showcase > div {
  position: relative;
  z-index: 2;
}

.ai-home-showcase h2 {
  max-width: 980px;
  color: var(--white);
}

.ai-home-showcase > div:not(.ai-reel) > p:not(.eyebrow) {
  max-width: 680px;
  margin: 36px 0 0;
  color: rgba(245,245,242,.72);
  font-size: clamp(19px, 1.45vw, 25px);
  font-weight: 300;
  line-height: 1.55;
}

.ai-link {
  border-color: rgba(149,240,255,.35);
}

.ai-reel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  border: 1px solid rgba(149,240,255,.22);
  padding: 34px;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(14px);
}

.ai-reel span {
  color: #95f0ff;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.chatbot-log {
  display: grid;
  gap: 16px;
  max-height: 430px;
  overflow: auto;
  padding-right: 6px;
  scroll-behavior: smooth;
}

.chatbot-message,
.chatbot-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(245,245,242,.14);
  background: rgba(245,245,242,.075);
  animation: chatMessageIn .38s cubic-bezier(.22, 1, .36, 1) both;
}

.chatbot-message.assistant,
.chatbot-card.muted {
  margin-left: 34px;
  border-color: rgba(149,240,255,.22);
  background: rgba(149,240,255,.075);
}

.chatbot-message.user {
  margin-right: 34px;
}

.chatbot-message p,
.chatbot-card p {
  margin: 0;
  color: rgba(245,245,242,.58);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.chatbot-message strong,
.chatbot-card strong {
  color: var(--white);
  font-size: clamp(20px, 2.3vw, 34px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.chatbot-message.is-loading strong {
  color: rgba(245,245,242,.62);
}

.chatbot-message.is-error {
  border-color: rgba(255, 120, 120, .34);
  background: rgba(255, 120, 120, .08);
}

.chatbot-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(245,245,242,.14);
  color: rgba(245,245,242,.68);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.chatbot-input input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  letter-spacing: .04em;
  text-transform: none;
}

.chatbot-input input:disabled {
  opacity: .45;
}

.chatbot-input input::placeholder {
  color: rgba(245,245,242,.48);
  text-transform: uppercase;
  letter-spacing: .14em;
}

.chatbot-input button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.chatbot-input button:disabled {
  cursor: wait;
  opacity: .45;
}

.chatbot-input button i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #95f0ff;
  animation: pulseDot 1.8s ease-in-out infinite;
}

.ai-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: .9;
  pointer-events: none;
}

.ai-page {
  background: #050509;
}

.ai-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 6vw;
  align-items: end;
  min-height: calc(100vh - 112px);
  overflow: hidden;
  padding: 120px 5.5vw;
  border-top: 1px solid rgba(149,240,255,.2);
  background:
    radial-gradient(circle at 74% 42%, rgba(140,96,255,.32), transparent 30%),
    radial-gradient(circle at 28% 72%, rgba(0,229,255,.16), transparent 28%),
    #050509;
}

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

.ai-hero h1 {
  max-width: 1120px;
  color: var(--white);
}

.ai-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 42px 0 0;
  color: rgba(245,245,242,.72);
  font-size: clamp(20px, 1.55vw, 28px);
  font-weight: 300;
  line-height: 1.55;
}

.ai-terminal {
  display: grid;
  gap: 28px;
  align-self: center;
  min-height: 520px;
  border: 1px solid rgba(149,240,255,.24);
  padding: 34px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(18px);
}

.ai-terminal span {
  color: #95f0ff;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.ai-terminal > p {
  color: rgba(245,245,242,.72);
  font-size: 20px;
}

.ai-terminal > i {
  display: block;
  height: 140px;
  border: 1px solid rgba(149,240,255,.18);
  background:
    linear-gradient(90deg, rgba(149,240,255,.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(149,240,255,.12) 1px, transparent 1px);
  background-size: 28px 28px;
}

.ai-terminal-note,
.ai-terminal > strong {
  align-self: end;
  font-size: clamp(34px, 4vw, 72px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: .95;
}

.ai-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 5.5vw 110px;
  background: rgba(149,240,255,.18);
}

.ai-capabilities article {
  min-height: 440px;
  padding: 34px;
  background: #050509;
}

.ai-capabilities span,
.ai-flow-grid span {
  color: #95f0ff;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.ai-capabilities h2 {
  margin: 100px 0 28px;
  font-size: clamp(34px, 4vw, 72px);
}

.ai-capabilities p,
.ai-flow-grid p {
  color: rgba(245,245,242,.72);
  font-size: 19px;
  line-height: 1.5;
}

.ai-flow {
  padding: 110px 5.5vw;
  border-top: 1px solid rgba(149,240,255,.18);
}

.ai-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(149,240,255,.18);
}

.ai-flow-grid div {
  min-height: 260px;
  padding: 28px;
  background: #07070c;
}

.ai-flow-grid p {
  margin: 76px 0 0;
}

.ai-command-center {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7vw;
  padding: 120px 5.5vw;
  border-top: 1px solid rgba(149,240,255,.18);
}

.ai-command-center h2 {
  max-width: 720px;
  font-size: clamp(44px, 6vw, 106px);
}

.ai-command-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  align-self: start;
  background: rgba(149,240,255,.18);
}

.ai-command-grid article {
  min-height: 260px;
  padding: 28px;
  background: #07070c;
}

.ai-command-grid span,
.ai-output-wall span {
  color: #95f0ff;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.ai-command-grid p {
  margin: 82px 0 0;
  color: rgba(245,245,242,.72);
  font-size: 18px;
  line-height: 1.52;
}

.ai-output-wall {
  padding: 0 5.5vw 120px;
}

.ai-output-wall > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(149,240,255,.18);
}

.ai-output-wall article {
  min-height: 360px;
  padding: 30px;
  background: #050509;
}

.ai-output-wall h2 {
  margin: 78px 0 24px;
  font-size: clamp(28px, 3vw, 52px);
}

.ai-output-wall p {
  color: rgba(245,245,242,.72);
  font-size: 18px;
  line-height: 1.5;
}

.ai-closing {
  padding: 120px 5.5vw;
  border-top: 1px solid rgba(149,240,255,.18);
}

.ai-closing h2 {
  max-width: 1180px;
  font-size: clamp(42px, 6vw, 112px);
}

.featured-work {
  padding: 110px 5.5vw;
}

.section-label {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}

.section-label a {
  color: var(--soft);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.featured-grid a {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  background: var(--black);
}

.featured-grid span,
.featured-grid em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.featured-grid strong {
  font-size: clamp(34px, 4vw, 72px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: .94;
}

.featured-grid a:hover {
  background: var(--white);
  color: var(--black);
}

.home-process {
  padding: 110px 5.5vw;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.process-grid article {
  min-height: 300px;
  padding: 34px;
  background: #080808;
}

.process-grid span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .2em;
}

.process-grid h3 {
  margin: 82px 0 20px;
  font-size: clamp(30px, 3vw, 56px);
  font-weight: 300;
  letter-spacing: -0.05em;
}

.process-grid p {
  max-width: 340px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: 18px;
}

.home-clients {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 680px;
}

.home-clients > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw 5.5vw;
}

.home-clients h2 {
  font-size: clamp(38px, 5vw, 86px);
}

.home-clients img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-cta {
  padding: 120px 5.5vw;
}

.split-page {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: start;
  min-height: calc(100vh - 112px);
}

.page-media {
  position: sticky;
  top: 96px;
  height: calc(100vh - 96px);
  align-self: start;
}

.page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw;
}

.service-list {
  display: grid;
  gap: 0;
  margin: 74px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-list strong {
  color: var(--white);
  font-size: clamp(22px, 2.2vw, 38px);
  font-weight: 300;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-list span {
  align-self: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.service-accordion {
  margin-top: 74px;
  border-top: 1px solid var(--line);
}

.service-accordion details {
  border-bottom: 1px solid var(--line);
}

.service-accordion summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px 34px;
  gap: 30px;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
}

.service-accordion summary::-webkit-details-marker {
  display: none;
}

.service-accordion summary::after {
  content: "+";
  justify-self: end;
  color: var(--soft);
  font-size: 28px;
  font-weight: 300;
}

.service-accordion details[open] summary::after {
  content: "−";
}

.service-accordion summary::after {
  transition: transform .35s ease, color .35s ease;
}

.service-accordion details[open] summary::after {
  transform: rotate(180deg);
  color: var(--white);
}

.service-accordion strong {
  color: var(--white);
  font-size: clamp(22px, 2.2vw, 38px);
  font-weight: 300;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-accordion span {
  align-self: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.service-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .58s cubic-bezier(.22, 1, .36, 1);
}

.service-accordion p {
  max-width: 740px;
  margin: 0 0 34px;
  color: var(--soft);
  font-size: 19px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .38s ease .08s, transform .38s ease .08s;
}

.service-accordion details[open] p {
  opacity: 1;
  transform: translateY(0);
}

.work-list {
  padding: 0 5.5vw 110px;
}

.work-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 220px;
  gap: 30px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
  color: var(--white);
}

.work-list .work-row:first-child {
  border-top: 1px solid var(--line);
}

.work-row span,
.work-row em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.work-row strong {
  font-size: clamp(28px, 4vw, 68px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1;
}

.work-row:hover {
  background: var(--white);
  color: var(--black);
}

.work-row:hover span,
.work-row:hover em {
  color: rgba(5,5,5,.58);
}

.project-hero {
  padding: 110px 5.5vw 72px;
  border-top: 1px solid var(--line);
}

.project-hero h1 {
  max-width: 1180px;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
}

.project-meta div {
  min-height: 220px;
  padding: 28px;
  background: var(--black);
}

.project-meta span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.project-meta p {
  margin: 54px 0 0;
  color: var(--soft);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.45;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  padding: 0 5.5vw 110px;
}

.project-gallery figure {
  position: relative;
  margin: 0;
  min-height: 340px;
  overflow: hidden;
  background: #101010;
}

.project-gallery figure:nth-child(6n + 1) {
  grid-column: span 7;
  min-height: 520px;
}

.project-gallery figure:nth-child(6n + 2) {
  grid-column: span 5;
  min-height: 520px;
}

.project-gallery figure:nth-child(6n + 3),
.project-gallery figure:nth-child(6n + 4),
.project-gallery figure:nth-child(6n + 5) {
  grid-column: span 4;
}

.project-gallery figure:nth-child(6n) {
  grid-column: span 12;
  min-height: 460px;
}

.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s ease, filter .75s ease;
}

.project-gallery figure:hover img {
  transform: scale(1.035);
  filter: contrast(1.08);
}

.empty-gallery {
  grid-column: 1 / -1;
  max-width: 760px;
  border: 1px solid var(--line);
  padding: 42px;
  color: var(--soft);
  font-size: 20px;
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 7vw;
  padding: 110px 5.5vw;
}

.about-copy {
  max-width: 860px;
  color: var(--soft);
  font-size: clamp(18px, 1.55vw, 26px);
  font-weight: 300;
  line-height: 1.55;
}

.about-copy p {
  margin-bottom: 30px;
}

.brand-wall-page {
  display: grid;
  grid-template-columns: minmax(320px, .75fr) 1fr;
  align-items: stretch;
  min-height: 620px;
}

.brand-wall-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-wall-page > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw;
}

.brand-wall-page p:last-child {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 86px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1;
}

.about-principles,
.about-method {
  border-top: 1px solid var(--line);
  padding: 110px 5.5vw;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.principles-grid article {
  min-height: 420px;
  padding: 34px;
  background: var(--black);
}

.principles-grid span,
.method-list span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.principles-grid h2 {
  margin: 86px 0 26px;
  font-size: clamp(32px, 4vw, 68px);
}

.principles-grid p,
.method-list p {
  color: var(--soft);
  font-size: 19px;
  line-height: 1.55;
}

.about-method {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 7vw;
}

.method-list {
  border-top: 1px solid var(--line);
}

.method-list div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.method-list p {
  margin: 0;
  max-width: 720px;
}

.contact-panel {
  display: grid;
  gap: 58px;
}

.project-types {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 54px;
}

.project-types span {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  color: var(--soft);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.contact-links {
  display: grid;
  gap: 18px;
  color: var(--soft);
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 300;
  letter-spacing: -0.035em;
}

.contact-links a:hover {
  color: var(--white);
}

.socials {
  display: flex;
  gap: 26px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

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

label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.full {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 15px 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--white);
}

select option {
  background: var(--black);
  color: var(--white);
}

button {
  grid-column: 1 / -1;
  justify-self: start;
  min-width: 310px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 22px 34px;
  background: transparent;
  color: var(--white);
  font: inherit;
  letter-spacing: .26em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

button::after {
  content: "→";
  float: right;
}

button:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.footer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 8vw;
  padding: 82px 5.5vw 34px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245,245,242,.035), transparent 42%),
    #050505;
  color: var(--muted);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(245,245,242,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(245,245,242,.035) 1px, transparent 1px);
  background-size: 9vw 9vw;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 70%);
  opacity: .32;
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: inline-flex;
  width: clamp(118px, 10vw, 168px);
  max-width: 100%;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1), opacity .35s ease;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-logo:hover {
  transform: translateX(4px);
  opacity: .86;
}

.footer-mark p {
  max-width: 520px;
  margin: 34px 0 0;
  color: rgba(245,245,242,.66);
  font-size: clamp(20px, 1.8vw, 32px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.footer-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-self: start;
}

.footer-map div {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 0;
  padding: 0;
  background: transparent;
}

.footer-map span {
  margin-bottom: 34px;
  color: rgba(245,245,242,.42);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.footer-map a,
.footer-bottom a {
  color: rgba(245,245,242,.76);
  transition: color .28s ease, transform .28s ease;
}

.footer-map a:hover,
.footer-bottom a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  color: rgba(245,245,242,.46);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  transition: opacity .85s cubic-bezier(.22, 1, .36, 1), transform .85s cubic-bezier(.22, 1, .36, 1), filter .85s cubic-bezier(.22, 1, .36, 1);
}

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

.home-intro.is-visible h2,
.home-services-band.is-visible h2,
.visual-feature.is-visible h2,
.website-section.is-visible h2,
.website-hero.is-visible h1,
.website-build.is-visible h2,
.website-stack.is-visible h2,
.website-cta.is-visible h2,
.ai-home-showcase.is-visible h2,
.featured-work.is-visible .section-label,
.home-process.is-visible .eyebrow,
.home-clients.is-visible h2,
.home-cta.is-visible h2 {
  animation: textLiftIn .9s cubic-bezier(.22, 1, .36, 1) both;
}

.home-services-band.is-visible .mini-service-list a,
.website-section.is-visible .website-system article,
.website-deliverables.is-visible article,
.website-build.is-visible .website-build-list article,
.website-stack.is-visible .website-stack-grid div,
.featured-work.is-visible .featured-grid a,
.home-process.is-visible .process-grid article {
  animation: cardLiftIn .75s cubic-bezier(.22, 1, .36, 1) both;
}

.home-services-band.is-visible .mini-service-list a:nth-child(2),
.website-section.is-visible .website-system article:nth-child(2),
.website-deliverables.is-visible article:nth-child(2),
.website-build.is-visible .website-build-list article:nth-child(2),
.website-stack.is-visible .website-stack-grid div:nth-child(2),
.featured-work.is-visible .featured-grid a:nth-child(2),
.home-process.is-visible .process-grid article:nth-child(2) {
  animation-delay: .08s;
}

.home-services-band.is-visible .mini-service-list a:nth-child(3),
.website-section.is-visible .website-system article:nth-child(3),
.website-deliverables.is-visible article:nth-child(3),
.website-build.is-visible .website-build-list article:nth-child(3),
.website-stack.is-visible .website-stack-grid div:nth-child(3),
.featured-work.is-visible .featured-grid a:nth-child(3),
.home-process.is-visible .process-grid article:nth-child(3) {
  animation-delay: .16s;
}

.home-services-band.is-visible .mini-service-list a:nth-child(4),
.website-section.is-visible .website-system article:nth-child(4),
.website-deliverables.is-visible article:nth-child(4),
.website-build.is-visible .website-build-list article:nth-child(4),
.website-stack.is-visible .website-stack-grid div:nth-child(4) {
  animation-delay: .24s;
}

.website-stack.is-visible .website-stack-grid div:nth-child(5) {
  animation-delay: .32s;
}

.website-stack.is-visible .website-stack-grid div:nth-child(6) {
  animation-delay: .4s;
}

.home-services-band.is-visible .mini-service-list a:nth-child(5) {
  animation-delay: .32s;
}

.mini-service-list a,
.website-system article,
.website-deliverables article,
.website-build-list article,
.website-stack-grid div,
.featured-grid a,
.process-grid article {
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), background .35s ease, color .35s ease, border-color .35s ease;
}

.mini-service-list a:hover,
.website-system article:hover,
.website-deliverables article:hover,
.website-stack-grid div:hover,
.featured-grid a:hover,
.process-grid article:hover {
  transform: translateY(-4px);
}

.home-clients img,
.visual-feature img {
  transition: transform 1.2s cubic-bezier(.22, 1, .36, 1), filter 1.2s cubic-bezier(.22, 1, .36, 1);
}

.home-clients.is-visible img,
.visual-feature.is-visible img {
  transform: scale(1.025);
  filter: contrast(1.05);
}

@keyframes textLiftIn {
  from {
    opacity: .25;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardLiftIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    padding: 24px;
    mix-blend-mode: normal;
    background: rgba(5,5,5,.82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }

  .site-header.home-header {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    mix-blend-mode: difference;
  }

  .site-header.home-header.is-scrolled {
    background: rgba(5,5,5,.82);
    border-bottom-color: var(--line);
    backdrop-filter: blur(16px);
    mix-blend-mode: normal;
  }

  .site-header.menu-open,
  .site-header.home-header.menu-open {
    background: rgba(5,5,5,.94);
    border-bottom-color: var(--line);
    backdrop-filter: blur(18px);
    mix-blend-mode: normal;
  }

  .wordmark {
    width: 118px;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    max-width: none;
    padding: 14px 24px 24px;
    background: rgba(5,5,5,.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .34s ease, transform .34s cubic-bezier(.22, 1, .36, 1);
    font-size: 12px;
  }

  nav a {
    display: flex;
    align-items: center;
    min-height: 54px;
    border-top: 1px solid rgba(245,245,242,.1);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s ease, transform .3s cubic-bezier(.22, 1, .36, 1), color .25s ease;
  }

  .site-header.menu-open nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.menu-open nav a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.menu-open nav a:nth-child(1) {
    transition-delay: .04s;
  }

  .site-header.menu-open nav a:nth-child(2) {
    transition-delay: .08s;
  }

  .site-header.menu-open nav a:nth-child(3) {
    transition-delay: .12s;
  }

  .site-header.menu-open nav a:nth-child(4) {
    transition-delay: .16s;
  }

  .site-header.menu-open nav a:nth-child(5) {
    transition-delay: .2s;
  }

  .site-header.menu-open nav a:nth-child(6) {
    transition-delay: .24s;
  }

  .home-hero-content {
    padding: 26vh 24px 10vh;
  }

  .home-hero h1 {
    margin-top: 110px;
    letter-spacing: .26em;
  }

  .home-intro,
  .page-title,
  .page-copy,
  .about-layout,
  .contact-layout,
  .brand-wall-page > div {
    padding: 72px 24px;
  }

  .preview-grid,
  .home-services-band,
  .website-section,
  .website-system,
  .website-hero,
  .website-deliverables > div,
  .website-build,
  .website-stack-grid,
  .ai-home-showcase,
  .featured-grid,
  .process-grid,
  .principles-grid,
  .home-clients,
  .ai-hero,
  .ai-capabilities,
  .ai-flow-grid,
  .ai-command-center,
  .ai-command-grid,
  .ai-output-wall > div,
  .split-page,
  .about-layout,
  .about-method,
  .brand-wall-page,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-media img {
    min-height: 78vh;
  }

  .page-media {
    position: relative;
    top: auto;
    height: auto;
  }

  .page-media img {
    min-height: 78vh;
  }

  .home-services-band,
  .website-section,
  .website-hero,
  .website-deliverables,
  .website-build,
  .website-stack,
  .website-cta,
  .ai-home-showcase,
  .featured-work,
  .home-process,
  .about-principles,
  .about-method,
  .home-cta {
    padding: 72px 24px;
  }

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

  .website-system article {
    min-height: 0;
  }

  .website-browser {
    min-height: 420px;
  }

  .website-build-list article {
    grid-template-columns: 1fr;
  }

  .website-deliverables article,
  .website-stack-grid div {
    min-height: 0;
  }

  .visual-feature > div {
    padding: 90px 24px;
  }

  .featured-grid a,
  .process-grid article {
    min-height: 300px;
  }

  .home-clients > div {
    padding: 72px 24px;
  }

  .home-clients img {
    min-height: 440px;
  }

  .ai-hero,
  .ai-flow,
  .ai-command-center,
  .ai-output-wall,
  .ai-closing {
    padding: 72px 24px;
  }

  .ai-terminal,
  .ai-capabilities article,
  .ai-flow-grid div,
  .ai-command-grid article,
  .ai-output-wall article {
    min-height: 0;
  }

  .chatbot-message.assistant {
    margin-left: 12px;
  }

  .chatbot-message.user {
    margin-right: 12px;
  }

  .work-list {
    padding: 0 24px 72px;
  }

  .work-row {
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 26px 0;
  }

  .work-row em {
    grid-column: 2;
  }

  .project-hero {
    padding: 72px 24px 48px;
  }

  .project-gallery {
    grid-template-columns: 1fr;
    padding: 0 24px 72px;
  }

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

  .project-meta div {
    min-height: 0;
  }

  .project-meta p {
    margin-top: 28px;
  }

  .project-gallery figure,
  .project-gallery figure:nth-child(6n + 1),
  .project-gallery figure:nth-child(6n + 2),
  .project-gallery figure:nth-child(6n + 3),
  .project-gallery figure:nth-child(6n + 4),
  .project-gallery figure:nth-child(6n + 5),
  .project-gallery figure:nth-child(6n) {
    grid-column: auto;
    min-height: 360px;
  }

  .service-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-accordion summary {
    grid-template-columns: 1fr 34px;
    gap: 12px;
  }

  .service-accordion summary span {
    grid-column: 1;
  }

  .brand-wall-page img {
    min-height: 430px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 72px 24px 30px;
  }

  .footer-map {
    grid-template-columns: 1fr;
  }

  .footer-map div {
    min-height: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .chatbot-input {
    align-items: stretch;
    flex-direction: column;
    padding: 16px;
  }

  .chatbot-input button {
    justify-content: space-between;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid rgba(245,245,242,.12);
  }

  .home-hero h1 {
    font-size: 15px;
    line-height: 1.75;
  }

  h1,
  h2 {
    font-size: 46px;
  }

  .outline-link {
    min-width: 0;
    width: 100%;
  }

  .preview-card {
    min-height: 360px;
    padding: 40px 24px;
  }

  .preview-card strong {
    font-size: 38px;
  }

  .website-system {
    grid-template-columns: 1fr;
  }

  .website-browser {
    min-height: 330px;
    padding: 20px;
  }

  .work-row strong {
    font-size: 34px;
  }

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

  button {
    min-width: 0;
    width: 100%;
  }

  .menu-toggle {
    width: 44px;
    min-width: 44px;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-map span {
    margin-bottom: 18px;
  }
}
