:root {
  --yellow: #ffc300;
  --blue: #003566;
  --blue-dark: #00264a;
  --ink: #000814;
  --paper: #f4f7fa;
  --white: #ffffff;
  --muted: #5a6c82;
  --line: rgba(0, 8, 20, 0.15);
  --max-width: 1200px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Space Grotesk", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--ink);
  background: var(--yellow);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page-container {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 15px;
  left: 15px;
  padding: 11px 16px;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-180%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(244, 247, 250, 0.93);
  backdrop-filter: blur(14px);
  transition: border-color var(--transition);
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.header-container {
  display: flex;
  align-items: center;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  color: var(--ink);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 0.95;
}

.brand-name span {
  color: var(--blue);
}

.brand-name small {
  color: var(--blue);
  font-size: 0.51rem;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.site-nav {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}

.site-nav a {
  position: relative;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
  color: #8794a6;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
}

.language-button {
  padding: 4px 2px;
  border: 0;
  color: #718095;
  cursor: pointer;
  background: transparent;
}

.language-button.is-active,
.language-button:hover,
.language-button:focus-visible {
  color: var(--ink);
  box-shadow: inset 0 -3px var(--yellow);
}

.menu-toggle {
  display: none;
  width: 35px;
  padding: 8px 0;
  border: 0;
  cursor: pointer;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform var(--transition);
}

.menu-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* =========================================================
   COMMON COMPONENTS
========================================================= */

.section-label {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--blue);
  font-family: "DM Mono", monospace;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.label-square {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--yellow);
}

.section-label-light {
  color: var(--white);
}

.section-label-light .label-square {
  background: var(--yellow);
}

/* =========================================================
   HERO
========================================================= */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 92px;
  background: var(--paper);
}

.hero-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 12%;
  height: 100%;
  content: "";
  background: var(--yellow);
}

.hero-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12%;
  height: 34%;
  content: "";
  background: var(--blue);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(52px, 8vw, 130px);
  align-items: center;
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.hero-copy h1 {
  max-width: 690px;
  margin: 25px 0 0;
  color: var(--ink);
  font-size: clamp(3.5rem, 6.3vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.085em;
  line-height: 0.88;
}

.hero-copy h1 span {
  color: var(--blue);
}

.hero-description {
  max-width: 500px;
  margin: 31px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--yellow);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--blue);
  transform: translate(-2px, -2px);
}

.button-text {
  padding: 0;
  color: var(--blue);
  background: transparent;
}

.button-text::after {
  width: 30px;
  height: 2px;
  content: "";
  background: var(--yellow);
  transition: width var(--transition);
}

.button-text:hover::after,
.button-text:focus-visible::after {
  width: 48px;
}

.hero-status {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 68px;
  color: #6b7a8e;
  font-family: "DM Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.03em;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--blue);
}

/* =========================================================
   HERO VISUAL / LOGO FRAME
========================================================= */

.hero-stage {
  position: relative;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 13px 13px 0 var(--blue);
}

.stage-topbar,
.stage-footer {
  display: flex;
  justify-content: space-between;
  padding: 13px 15px;
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  background: var(--white);
}

.stage-topbar {
  border-bottom: 2px solid var(--ink);
}

.stage-footer {
  border-top: 2px solid var(--ink);
}

.stage-center {
  position: relative;
  height: clamp(315px, 36vw, 437px);
  overflow: hidden;
  background: var(--ink);
}

.stage-yellow-block {
  position: absolute;
  top: 0;
  right: 0;
  width: 49%;
  height: 62%;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%, 25% 52%, 0 52%);
}

.stage-blue-block {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 59%;
  height: 57%;
  background: var(--blue);
  clip-path: polygon(0 0, 66% 0, 100% 28%, 100% 100%, 0 100%);
}

.stage-logo-frame {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 42%;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 7px solid var(--white);
  background: var(--white);
  transform: translate(-50%, -50%);
}

.stage-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
}

.stage-coordinate {
  position: absolute;
  z-index: 3;
  font-family: "DM Mono", monospace;
  font-size: 0.61rem;
  letter-spacing: 0.1em;
}

.coordinate-top {
  top: 26px;
  left: 24px;
  color: var(--white);
}

.coordinate-bottom {
  right: 25px;
  bottom: 22px;
  color: var(--ink);
}

/* =========================================================
   TICKER
========================================================= */

.ticker-section {
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  background: var(--yellow);
}

.ticker-track {
  display: flex;
  gap: 24px;
  align-items: center;
  width: max-content;
  min-height: 28px;
  font-family: "DM Mono", monospace;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  animation: ticker 28s linear infinite;
}

.ticker-track i {
  width: 8px;
  height: 8px;
  background: var(--blue);
  transform: rotate(45deg);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-40%);
  }
}

/* =========================================================
   ABOUT
========================================================= */

.about-section {
  padding: 130px 0;
  background: var(--white);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.section-marker {
  color: #8796a8;
  font-family: "DM Mono", monospace;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 50px;
  margin-top: 68px;
}

.about-number {
  color: var(--yellow);
  font-size: clamp(7rem, 14vw, 14rem);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 0.7;
  text-shadow: 5px 5px 0 var(--blue);
}

.about-content h2,
.services-heading h2,
.portfolio-title-row h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.93;
}

.about-content h2 span,
.services-heading h2 span,
.portfolio-title-row h2 span,
.contact-copy h2 span {
  color: var(--blue);
}

.about-text {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 920px;
  margin-top: 49px;
}

.about-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.about-text p:first-child {
  color: var(--ink);
  font-weight: 500;
}

.studio-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 90px;
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--line);
}

.principle {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition:
    color var(--transition),
    background var(--transition);
}

.principle:hover {
  color: var(--white);
  background: var(--blue);
}

.principle-id {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  font-family: "DM Mono", monospace;
  font-size: 0.73rem;
  font-weight: 500;
}

.principle h3 {
  margin: 43px 0 11px;
  color: var(--ink);
  font-size: 1.17rem;
  letter-spacing: -0.04em;
}

.principle p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.68;
}

.principle:hover h3,
.principle:hover p {
  color: var(--white);
}

/* =========================================================
   SERVICES
========================================================= */

.services-section {
  padding: 130px 0;
  background: var(--paper);
}

.services-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 70px;
  align-items: end;
}

.services-heading h2 {
  margin-top: 25px;
}

.services-intro {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.service-list {
  margin-top: 71px;
  border-top: 2px solid var(--ink);
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr auto 50px;
  gap: 30px;
  align-items: center;
  min-height: 205px;
  padding: 29px 30px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition:
    color var(--transition),
    background var(--transition);
}

.service-item:hover {
  background: var(--yellow);
}

.service-item-blue {
  color: var(--white);
  background: var(--blue);
}

.service-item-blue:hover {
  background: var(--blue-dark);
}

.service-number {
  color: var(--blue);
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  font-weight: 500;
}

.service-item-blue .service-number {
  color: var(--yellow);
}

.service-main h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  letter-spacing: -0.055em;
}

.service-main p {
  max-width: 535px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.service-item-blue .service-main h3 {
  color: var(--white);
}

.service-item-blue .service-main p {
  color: #d2dfec;
}

.service-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  max-width: 190px;
}

.service-platforms span {
  padding: 5px 6px;
  border: 1px solid rgba(0, 8, 20, 0.24);
  color: var(--blue);
  font-family: "DM Mono", monospace;
  font-size: 0.57rem;
  letter-spacing: 0.08em;
}

.service-item-blue .service-platforms span {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.service-arrow {
  color: var(--blue);
  font-size: 2rem;
  transition: transform var(--transition);
}

.service-item:hover .service-arrow {
  transform: translate(4px, -4px);
}

.service-item-blue .service-arrow {
  color: var(--yellow);
}

/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio-section {
  padding: 130px 0;
  color: var(--white);
  background: var(--ink);
}

.portfolio-top {
  padding-bottom: 67px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.portfolio-title-row {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 80px;
  align-items: end;
  margin-top: 29px;
}

.portfolio-title-row h2 {
  color: var(--white);
}

.portfolio-title-row h2 span {
  color: var(--yellow);
}

.portfolio-title-row p {
  max-width: 380px;
  margin: 0;
  color: #b6c5d4;
  font-size: 0.96rem;
  line-height: 1.7;
}

.project-card {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  margin-top: 42px;
  border: 2px solid var(--white);
  background: var(--white);
}

.project-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--blue);
}

.visual-sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 39px 39px;
}

.visual-sun {
  position: absolute;
  top: 16%;
  right: 20%;
  width: 78px;
  height: 78px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.visual-platform {
  position: absolute;
  height: 22px;
  background: var(--yellow);
}

.platform-one {
  top: 37%;
  right: 11%;
  width: 31%;
}

.platform-two {
  top: 59%;
  left: 17%;
  width: 24%;
}

.platform-three {
  top: 48%;
  left: 48%;
  width: 18%;
}

.visual-player {
  position: absolute;
  z-index: 2;
  bottom: 29%;
  left: 48%;
  width: 24px;
  height: 45px;
  background: var(--yellow);
}

.visual-player::before {
  position: absolute;
  top: -19px;
  left: 2px;
  width: 20px;
  height: 20px;
  content: "";
  background: var(--white);
  border-radius: 50%;
}

.visual-ground {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 28%;
  background: var(--ink);
  clip-path: polygon(0 31%, 31% 0, 57% 41%, 80% 12%, 100% 37%, 100% 100%, 0 100%);
}

.visual-tag,
.visual-ui {
  position: absolute;
  z-index: 3;
  font-family: "DM Mono", monospace;
  font-size: 0.59rem;
  letter-spacing: 0.07em;
}

.visual-tag {
  top: 15px;
  left: 15px;
  padding: 7px 9px;
  color: var(--ink);
  background: var(--yellow);
}

.visual-ui {
  color: var(--white);
}

.visual-ui-top {
  top: 18px;
  right: 17px;
}

.visual-ui-bottom {
  right: 17px;
  bottom: 17px;
}

.project-info {
  display: flex;
  flex-direction: column;
  padding: clamp(29px, 4vw, 52px);
  color: var(--ink);
  background: var(--white);
}

.project-info-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: #65758a;
  font-family: "DM Mono", monospace;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
}

.project-status {
  padding: 6px 8px;
  color: var(--ink);
  background: var(--yellow);
}

.project-info h3 {
  margin: 88px 0 14px;
  color: var(--ink);
  font-size: clamp(1.95rem, 3vw, 2.85rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.project-info > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  padding-top: 28px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.project-footer div {
  display: grid;
  gap: 7px;
}

.project-footer div span {
  color: #6a7a8e;
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.project-footer strong {
  color: var(--blue);
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
}

.project-coming-soon {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  padding: 130px 0;
  background: var(--paper);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 70px;
  padding: clamp(35px, 6vw, 75px);
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 14px 14px 0 var(--yellow);
}

.contact-copy h2 {
  margin-top: 25px;
}

.contact-copy h2 span {
  color: var(--blue);
}

.contact-copy p {
  max-width: 520px;
  margin: 29px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.73;
}

.contact-links {
  align-self: center;
}

.email-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 24px 55px 24px 24px;
  color: var(--white);
  background: var(--blue);
  transition:
    background var(--transition),
    color var(--transition);
}

.email-card:hover,
.email-card:focus-visible {
  color: var(--ink);
  background: var(--yellow);
}

.email-card-label,
.social-list > p {
  margin: 0;
  color: var(--yellow);
  font-family: "DM Mono", monospace;
  font-size: 0.61rem;
  letter-spacing: 0.1em;
}

.email-card:hover .email-card-label,
.email-card:focus-visible .email-card-label {
  color: var(--blue);
}

.email-card strong {
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.email-card > span:last-child {
  position: absolute;
  top: 50%;
  right: 23px;
  font-size: 1.5rem;
  transform: translateY(-50%);
}

.social-list {
  margin-top: 29px;
}

.social-list > p {
  margin-bottom: 11px;
  color: var(--blue);
}

.social-list a {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 9px;
  align-items: center;
  min-height: 45px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.87rem;
  font-weight: 500;
  transition:
    padding var(--transition),
    color var(--transition),
    background var(--transition);
}

.social-list a:hover,
.social-list a:focus-visible {
  padding: 0 10px;
  color: var(--white);
  background: var(--ink);
}

.social-list a span:first-child {
  color: var(--blue);
  font-size: 0.94rem;
  font-weight: 700;
}

.social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.social-list a:hover .social-icon,
.social-list a:focus-visible .social-icon {
  filter: brightness(0) invert(1);
}

.social-list a:hover span:first-child,
.social-list a:focus-visible span:first-child {
  color: var(--yellow);
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-content {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.footer-brand {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--white);
  font-family: "DM Mono", monospace;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
}

.footer-brand img {
  width: 30px;
  height: 30px;
  padding: 2px;
  object-fit: contain;
  background: var(--white);
}

.site-footer p {
  margin: 0;
  color: #9cafc1;
  font-size: 0.69rem;
}

.back-top {
  display: flex;
  gap: 9px;
  color: var(--yellow);
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================================================
   SCROLL ANIMATION
========================================================= */

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .hero-container,
  .services-heading,
  .portfolio-title-row,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero-container {
    gap: 62px;
  }

  .hero-stage {
    max-width: 650px;
  }

  .about-text {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .about-text p {
    max-width: 600px;
  }

  .services-heading,
  .portfolio-title-row,
  .contact-box {
    gap: 38px;
  }

  .contact-links {
    max-width: 600px;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-info h3 {
    margin-top: 48px;
  }

  .project-footer {
    margin-top: 48px;
  }
}

@media (max-width: 700px) {
  .page-container,
  .header-container,
  .hero-container {
    width: min(calc(100% - 34px), var(--max-width));
  }
  .header-container{
justify-content: space-between;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 9px 18px;
    border: 2px solid var(--ink);
    background: var(--white);
    box-shadow: 7px 7px 0 var(--yellow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions {
    gap: 15px;
  }

  .hero-section {
    padding: 66px 0 75px;
  }

  .hero-section::before {
    width: 18%;
  }

  .hero-section::after {
    width: 18%;
    background: transparent;
  }

  .about-section,
  .services-section,
  .portfolio-section,
  .contact-section {
    padding: 85px 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 52px;
  }

  .about-number {
    font-size: 7rem;
  }

  .studio-principles {
    grid-template-columns: 1fr;
    margin-top: 65px;
  }

  .principle {
    min-height: 190px;
  }

  .principle h3 {
    margin-top: 26px;
  }

  .service-item {
    grid-template-columns: 45px 1fr 35px;
    gap: 18px;
    align-items: start;
  }

  .service-platforms {
    grid-column: 2 / 4;
    justify-content: flex-start;
    max-width: none;
  }

  .service-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .service-item-blue .service-main {
    grid-column: 2;
  }

  .project-visual {
    min-height: 330px;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 13px;
  }
}

@media (max-width: 460px) {
  .page-container,
  .header-container,
  .hero-container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .brand-name {
    font-size: 0.61rem;
  }

  .brand-logo {
    width: 35px;
    height: 35px;
  }

  .hero-copy h1,
  .about-content h2,
  .services-heading h2,
  .portfolio-title-row h2,
  .contact-copy h2 {
    font-size: clamp(2.75rem, 13vw, 3.8rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 21px;
  }

  .hero-status {
    margin-top: 47px;
    font-size: 0.59rem;
  }

  .stage-center {
    height: 290px;
  }

  .stage-topbar,
  .stage-footer {
    font-size: 0.5rem;
  }

  .stage-logo-frame {
    border-width: 5px;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .section-marker {
    font-size: 0.55rem;
  }

  .service-item {
    padding: 25px 20px;
  }

  .service-main h3 {
    font-size: 1.5rem;
  }

  .project-visual {
    min-height: 275px;
  }

  .project-info {
    padding: 27px 23px;
  }

  .project-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-box {
    gap: 35px;
    padding: 27px 22px;
    box-shadow: 8px 8px 0 var(--yellow);
  }

  .email-card {
    padding: 22px 46px 22px 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}