@import url("https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #141414;
  --paper: #f7f6f2;
  --white: #ffffff;
  --line: rgba(20, 20, 20, 0.17);
  --muted: #686963;
  --blue: #5b6cff;
  --cyan: #a9e9e0;
  --berry: #6f315c;
  --amber: #ffb649;
  --container: min(1180px, calc(100vw - 48px));
  --radius: 6px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}
img {
  display: block;
  max-width: 100%;
}
.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;
}
a {
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
.shell {
  width: var(--container);
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 30;
}
.skip-link:focus {
  left: 8px;
  background: var(--white);
  padding: 10px 14px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 242, 0.94);
  backdrop-filter: blur(16px);
}
.nav-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
}
.studio-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.studio-brand img {
  width: 38px;
  height: 38px;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.nav-links a,
.language-switch button {
  font:
    700 13px/1 "Manrope",
    Arial,
    sans-serif;
  text-decoration: none;
  border: 0;
  background: none;
  padding: 10px 0;
  cursor: pointer;
}
.nav-links a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.language-switch {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}
.language-switch button {
  min-width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
}
.language-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background: var(--ink);
  color: var(--white);
}
.button.light {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}
.button.white {
  background: white;
  color: #111;
  border-color: white;
}
.text-link {
  font-weight: 800;
  text-underline-offset: 5px;
}

.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  padding-block: 68px 76px;
}
.hero > * {
  min-width: 0;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 6.1vw, 86px);
  line-height: 0.89;
  letter-spacing: 0;
}
.hero-copy p {
  max-width: 610px;
  margin: 28px 0 30px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.42;
  color: #454641;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #101010;
}
.hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-stage > img {
  position: absolute;
  inset: 0;
  opacity: 0.82;
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 16, 16, 0.1),
    rgba(16, 16, 16, 0) 50%,
    rgba(16, 16, 16, 0.45)
  );
  pointer-events: none;
}
.hero-product-tabs {
  position: absolute;
  inset: auto 22px 22px 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(8, 8, 8, 0.74);
  backdrop-filter: blur(14px);
}
.hero-product-tabs a {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-product-tabs a:last-child {
  border-right: 0;
}
.hero-product-tabs a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.portfolio-intro {
  border-top: 1px solid var(--line);
  padding: 72px 0 38px;
}
.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: start;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 5.8vw, 78px);
  line-height: 0.98;
}
.section-heading p {
  max-width: 650px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.project-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.project-layout {
  min-height: 650px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(40px, 7vw, 94px);
  align-items: center;
  padding-block: 72px;
}
.project-layout.reverse {
  grid-template-columns: 1.22fr 0.78fr;
}
.project-layout.reverse .project-copy {
  order: 2;
}
.project-layout.reverse .project-media {
  order: 1;
}
.project-number {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.project-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.94;
  overflow-wrap: anywhere;
}
.project-copy .project-wordmark {
  width: min(100%, 420px);
  max-height: 80px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 28px;
}
.project-copy p {
  max-width: 570px;
  margin: 0 0 26px;
  font-size: 18px;
  color: #4e4f4a;
}
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.project-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
}
.project-media > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.project-media.contain > img {
  object-fit: contain;
  padding: 26px;
}
.project-media .device-shot {
  position: absolute;
  right: 5%;
  bottom: -6%;
  width: 38%;
  height: auto;
  min-height: 0;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.32));
}

.nextly-band {
  background: #101124;
  color: #f9f8ff;
}
.nextly-band .project-copy p,
.nextly-band .project-number,
.nextly-band .project-meta {
  color: #bcbdd2;
}
.nextly-band .project-copy h2 {
  font-size: clamp(52px, 5vw, 72px);
  white-space: nowrap;
}
.nextly-band .project-media {
  background: #16182e;
}
.entryo-band {
  background: #e5f7f1;
}
.entryo-band .project-media {
  background: #1d433e;
}
.whatyouneed-band {
  background: white;
  font-family: "Geist", Arial, sans-serif;
}
.whatyouneed-band .project-media {
  min-height: 560px;
  background: #f4f4f4;
  border: 1px solid #e7e7e7;
}
.whatyouneed-band .project-media > img {
  min-height: 560px;
  object-fit: contain;
  object-position: center;
}
.hatne-band {
  background: #f7f0e6;
}
.hatne-band .project-copy h2 {
  color: #6f315c;
}
.hatne-band .project-media {
  background: #6f315c;
}
.games-section {
  background: #0d0d0d;
  color: white;
}
.games-heading {
  padding-block: 82px 36px;
}
.games-heading p {
  color: #aaa;
}
.k41-band {
  border-color: rgba(255, 255, 255, 0.18);
}
.k41-band .project-layout {
  min-height: 720px;
}
.k41-band .project-copy p,
.k41-band .project-number,
.k41-band .project-meta {
  color: #bdbdbd;
}
.k41-band .project-copy h2 {
  font-size: clamp(72px, 10vw, 142px);
}
.k41-media {
  background: #e8e8e8;
}
.k41-media > img:first-child {
  object-position: 50% 58%;
  filter: grayscale(1) contrast(1.08);
}
.k41-media .k41-logo {
  position: absolute;
  left: 7%;
  top: 7%;
  width: 58%;
  height: auto;
  min-height: 0;
  filter: invert(1);
  mix-blend-mode: difference;
}
.k41-media .k41-object {
  position: absolute;
  width: 52%;
  height: auto;
  min-height: 0;
  right: -7%;
  bottom: -2%;
  filter: grayscale(1) drop-shadow(0 24px 20px rgba(0, 0, 0, 0.4));
}
.craftosis-band {
  background: #292218;
  border-color: rgba(255, 255, 255, 0.18);
}
.craftosis-band .project-copy p,
.craftosis-band .project-number,
.craftosis-band .project-meta {
  color: #d7cbb7;
}
.craftosis-band .project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.studio-section {
  background: #f0d46d;
  border-top: 1px solid #171717;
}
.studio-layout {
  min-height: 460px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  padding-block: 70px;
}
.studio-layout h2 {
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
}
.studio-layout p {
  max-width: 590px;
  font-size: 19px;
}
.studio-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}
.studio-points li {
  padding: 16px 10px 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  font-weight: 700;
}

.site-footer {
  background: #111;
  color: white;
}
.footer-inner {
  min-height: 250px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding-block: 54px;
}
.footer-inner h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.95;
}
.footer-meta {
  text-align: right;
  color: #aaa;
}
.footer-meta a {
  color: white;
}

/* Project pages */
.project-page {
  min-height: 100vh;
}
.project-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: center;
  padding-block: 72px;
}
.project-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(70px, 10vw, 150px);
  line-height: 0.88;
  overflow-wrap: anywhere;
}
.project-hero h1.project-wordmark-title {
  margin: 0 0 34px;
  font-size: 0;
  line-height: 0;
}
.project-hero .project-wordmark {
  width: min(100%, 560px);
  max-height: 92px;
  object-fit: contain;
  object-position: left center;
  margin: 0;
}
.project-hero p {
  max-width: 590px;
  font-size: 20px;
  color: var(--muted);
}
.status-line {
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
}
.project-hero-visual {
  min-height: 570px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.project-hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
}
.detail-section {
  padding-block: 90px;
  border-top: 1px solid var(--line);
}
.detail-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}
.detail-grid h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
}
.detail-grid p {
  margin-top: 0;
  font-size: 18px;
  color: var(--muted);
}
.feature-lines {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.feature-lines li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.gallery figure {
  margin: 0;
}
.gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.gallery figure.wide {
  grid-column: 1 / -1;
}
.gallery figcaption {
  margin-top: 9px;
  font-size: 13px;
  color: var(--muted);
}
.page-cta {
  padding-block: 90px;
  background: #111;
  color: white;
}
.page-cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}
.page-cta h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.whatyouneed-page {
  background: white;
  font-family: "Geist", Arial, sans-serif;
}
.whatyouneed-page .project-hero-visual {
  background: #f3f3f3;
  border: 1px solid #e7e7e7;
}
.whatyouneed-page .project-hero-visual img {
  object-fit: contain;
  object-position: center;
}
.hatne-page {
  background: #f7f0e6;
}
.hatne-page .project-hero h1 {
  color: #6f315c;
}
.hatne-page .project-hero-visual {
  background: #6f315c;
}
.hatne-page .page-cta {
  background: #6f315c;
}
.k41-page {
  background: #0d0d0d;
  color: #f3f3f3;
}
.k41-page .site-nav {
  background: rgba(13, 13, 13, 0.94);
  border-color: rgba(255, 255, 255, 0.18);
}
.k41-page .language-switch button {
  color: #aaa;
  border-color: rgba(255, 255, 255, 0.2);
}
.k41-page .language-switch button[aria-pressed="true"] {
  background: #fff;
  color: #111;
}
.k41-page .project-hero p,
.k41-page .status-line,
.k41-page .detail-grid p,
.k41-page .gallery figcaption {
  color: #aaa;
}
.k41-page .project-hero-visual {
  background: #ddd;
}
.k41-page .project-hero-visual > img {
  filter: grayscale(1) contrast(1.08);
}
.k41-page .detail-section,
.k41-page .feature-lines,
.k41-page .feature-lines li {
  border-color: rgba(255, 255, 255, 0.18);
}
.k41-page .page-cta {
  background: #e7e7e7;
  color: #111;
}
.k41-dot-heading { display:grid; gap:24px; align-content:start; }
.k41-dot-heading > img { width:min(230px,70%); padding:18px 22px; border:1px solid rgba(0,0,0,.2); background:#fff; }
.k41-dot-heading h2 { margin:0; }

@media (max-width: 960px) {
  :root {
    --container: min(100% - 32px, 760px);
  }
  .nav-inner {
    grid-template-columns: 1fr auto;
    padding-block: 12px;
  }
  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    border-top: 1px solid var(--line);
    padding-top: 2px;
  }
  .language-switch {
    grid-column: 2;
    grid-row: 1;
  }
  .hero,
  .project-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 54px;
  }
  .hero-stage {
    min-height: 480px;
  }
  .project-layout,
  .project-layout.reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .project-layout.reverse .project-copy,
  .project-layout.reverse .project-media {
    order: initial;
  }
  .project-media,
  .project-media > img {
    min-height: 470px;
  }
  .section-heading,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .studio-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 24px);
  }
  .nav-inner {
    gap: 10px;
  }
  .studio-brand span {
    display: none;
  }
  .nav-links {
    justify-content: space-between;
    gap: 12px;
  }
  .nav-links a {
    font-size: 12px;
  }
  .language-switch button {
    min-width: 34px;
    height: 34px;
  }
  .hero {
    gap: 34px;
    padding-top: 42px;
  }
  .hero h1 {
    font-size: clamp(46px, 13vw, 54px);
  }
  .hero-stage {
    min-height: 400px;
  }
  .hero-product-tabs {
    inset: auto 10px 10px;
    grid-template-columns: 1fr;
  }
  .hero-product-tabs a {
    min-height: 44px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .hero-product-tabs a:last-child {
    border-bottom: 0;
  }
  .portfolio-intro {
    padding-top: 54px;
  }
  .project-layout {
    padding-block: 54px;
    gap: 32px;
  }
  .project-copy h2 {
    font-size: clamp(44px, 15vw, 66px);
  }
  .project-copy .project-wordmark {
    max-height: 50px;
  }
  .project-media,
  .project-media > img {
    min-height: 380px;
  }
  .whatyouneed-band .project-media,
  .whatyouneed-band .project-media > img {
    min-height: 350px;
  }
  .k41-band .project-layout {
    min-height: auto;
  }
  .k41-band .project-copy h2 {
    font-size: 82px;
  }
  .studio-points {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-meta {
    text-align: left;
  }
  .project-hero {
    gap: 30px;
  }
  .project-hero h1 {
    font-size: clamp(64px, 21vw, 100px);
  }
  .project-hero .project-wordmark {
    max-height: 58px;
  }
  .project-hero h1.project-wordmark-title {
    margin-bottom: 24px;
  }
  .project-hero-visual,
  .project-hero-visual > img {
    min-height: 410px;
  }
  .detail-section {
    padding-block: 62px;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery figure.wide {
    grid-column: auto;
  }
  .page-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

/* OGGI portfolio identity recovery */
body:not(.project-page) {
  --bg: #070a12;
  --panel: rgba(17, 22, 37, 0.78);
  --panel-strong: rgba(18, 24, 42, 0.94);
  --dark-line: rgba(255, 255, 255, 0.12);
  --light-text: #f8fafc;
  --light-muted: #b8c2d8;
  --mint: #57e6c3;
  --violet: #8d7cff;
  --cyan-bright: #62d8ff;
  color: var(--light-text);
  background:
    radial-gradient(circle at 10% 8%, rgba(87,230,195,.12), transparent 31rem),
    radial-gradient(circle at 91% 18%, rgba(141,124,255,.13), transparent 34rem),
    radial-gradient(circle at 70% 92%, rgba(98,216,255,.08), transparent 30rem),
    var(--bg);
}
body:not(.project-page)::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}
body:not(.project-page) .site-nav {
  position: sticky;
  top: 14px;
  width: min(1180px, calc(100vw - 40px));
  margin: 14px auto 0;
  border: 1px solid var(--dark-line);
  border-radius: 20px;
  background: rgba(8, 11, 20, .78);
  box-shadow: 0 18px 60px rgba(0,0,0,.2);
}
body:not(.project-page) .nav-inner { width: auto; min-height: 66px; padding: 0 14px 0 18px; }
body:not(.project-page) .studio-brand { color: var(--light-text); }
body:not(.project-page) .studio-brand img { width: 38px; height: 38px; }
body:not(.project-page) .nav-links a { color: var(--light-muted); }
body:not(.project-page) .language-switch button { color: var(--light-muted); border-color: var(--dark-line); border-radius: 10px; }
body:not(.project-page) .language-switch button[aria-pressed="true"] { background: var(--light-text); color: #090c14; border-color: var(--light-text); }
body:not(.project-page) .button { border-color: rgba(255,255,255,.24); border-radius: 13px; color: var(--light-text); background: rgba(255,255,255,.04); }
body:not(.project-page) .button.primary { background: var(--mint); border-color: var(--mint); color: #07110f; }
body:not(.project-page) .eyebrow { margin: 0 0 16px; color: var(--mint); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0; }
body:not(.project-page) .hero { min-height: calc(100vh - 96px); grid-template-columns: minmax(0,.86fr) minmax(520px,1.14fr); gap: clamp(34px,5vw,74px); padding-block: 52px 68px; }
body:not(.project-page) .hero h1 { color: var(--light-text); font-size: clamp(48px,5vw,72px); line-height: .98; }
body:not(.project-page) .hero-copy > p:not(.eyebrow) { margin: 24px 0 28px; color: var(--light-muted); font-size: clamp(17px,1.5vw,20px); }
.studio-board { min-width: 0; height: min(570px,66vh); display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(2,1fr); gap: 12px; }
.world-card { position: relative; min-width: 0; min-height: 0; overflow: hidden; border: 1px solid var(--dark-line); border-radius: 24px; background: var(--panel); color: white; text-decoration: none; box-shadow: 0 24px 70px rgba(0,0,0,.25); transition: transform 180ms ease,border-color 180ms ease; }
.world-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.3); }
.world-card > img { width:100%; height:100%; object-fit:cover; opacity:.8; transition: transform 300ms ease,opacity 180ms ease; }
.world-card:hover > img { transform: scale(1.025); opacity:.92; }
.world-card::after { content:""; position:absolute; inset:0; background:linear-gradient(to top,rgba(4,6,12,.94),rgba(4,6,12,.08) 66%); }
.world-card span { position:absolute; z-index:2; inset:auto 16px 15px; display:flex; flex-direction:column; gap:2px; min-width:0; }
.world-card b { font-size:18px; overflow-wrap:anywhere; }
.world-card small { color:#c9d2e5; font-size:11px; line-height:1.3; }
.world-entryo > img { object-fit:contain; padding:18px 10px 46px; background:linear-gradient(135deg,#112e2f,#111827); }
.world-wyn > img { object-position:center; }
.world-hatne > img { object-position:center; }
.world-k41 > img { filter:saturate(.75) contrast(1.05); }
.projects-section { position:relative; padding:104px 0 116px; border-top:1px solid var(--dark-line); }
body:not(.project-page) .section-heading { grid-template-columns:1.05fr .95fr; margin-bottom:42px; }
body:not(.project-page) .section-heading h2 { max-width:720px; color:var(--light-text); font-size:clamp(38px,5vw,66px); line-height:1; }
body:not(.project-page) .section-heading > p { align-self:end; color:var(--light-muted); font-size:17px; }
.project-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.project-card { min-width:0; overflow:hidden; display:grid; grid-template-columns:minmax(0,.96fr) minmax(0,1.04fr); min-height:360px; border:1px solid var(--dark-line); border-radius:28px; background:var(--panel); box-shadow:0 24px 70px rgba(0,0,0,.2); }
.card-media { position:relative; min-height:260px; overflow:hidden; background:#111827; }
.card-media > img:first-child { width:100%; height:100%; object-fit:cover; }
.card-media.contain > img:first-child { object-fit:contain; padding:24px 12px; background:linear-gradient(140deg,#0d2424,#101626); }
.entryo-card .card-media.contain > img:first-child { object-fit:cover; object-position:72% center; padding:0; transform:scale(1.08); }
.card-media .phone { position:absolute; right:8%; bottom:-18%; width:38%; height:auto; max-height:108%; object-fit:contain; filter:drop-shadow(0 18px 26px rgba(0,0,0,.5)); }
.card-body { min-width:0; display:flex; flex-direction:column; align-items:flex-start; justify-content:center; padding:28px; }
.card-body .status { margin:0 0 14px; color:var(--mint); font-size:11px; font-weight:800; text-transform:uppercase; }
.card-body h3 { margin:0 0 14px; color:var(--light-text); font-size:clamp(30px,3vw,46px); line-height:1; overflow-wrap:anywhere; }
.card-body > p:not(.status) { margin:0 0 24px; color:var(--light-muted); font-size:15px; }
.card-body .text-link { margin-top:auto; color:var(--light-text); text-decoration-color:var(--mint); }
.card-wordmark { width:min(100%,220px); max-height:45px; margin:0 0 18px; filter:invert(1); }
.wyn-card { background:#f4f6f8; border-color:rgba(255,255,255,.25); }
.wyn-card .card-media > img:first-child { object-position:24% center; }
.wyn-card .card-body h3,.wyn-card .card-body .text-link { color:#111; }
.wyn-card .card-body > p:not(.status) { color:#424750; }
.wyn-card .card-body .status { color:#3f5df5; }
.wyn-card .card-wordmark { filter:none; }
.hatne-card { background:#203e38; }
.hatne-card .card-media { background:#f2e8d3; }
.hatne-card .card-media > img:first-child { object-fit:contain; padding:14px; }
.k41-card { background:#f1f2ed; }
.k41-card .card-body h3,.k41-card .card-body .text-link { color:#0a0a0a; }
.k41-card .card-body > p:not(.status) { color:#454545; }
.k41-card .card-body .status { color:#474747; }
.k41-mark { position:absolute; left:18px; top:18px; width:96px; padding:10px 12px; border-radius:10px; background:#fff; box-shadow:0 8px 30px rgba(0,0,0,.25); }
.k41-mark img { width:100%; height:auto; }
.craftosis-card { background:#1b130d; }
.studio-section { padding:100px 0; border-top:1px solid var(--dark-line); background:rgba(13,17,29,.66); }
body:not(.project-page) .studio-layout { grid-template-columns:1fr 1fr; gap:80px; }
body:not(.project-page) .studio-layout h2 { color:var(--light-text); font-size:clamp(38px,5vw,64px); line-height:1; }
body:not(.project-page) .studio-points p { color:var(--light-muted); font-size:18px; }
body:not(.project-page) .studio-points ul { margin:28px 0 0; padding:0; list-style:none; display:grid; gap:10px; }
body:not(.project-page) .studio-points li { padding:15px 0; border-bottom:1px solid var(--dark-line); color:var(--light-text); font-weight:700; }
.contact-section { padding:92px 0; background:#f3d35c; color:#121212; }
.contact-inner { display:grid; grid-template-columns:1.15fr .85fr; align-items:end; gap:50px; }
.contact-section .eyebrow { color:#5b4b0d !important; }
.contact-section h2 { max-width:760px; margin:0; font-size:clamp(38px,5.5vw,72px); line-height:1; }
.contact-mail { justify-self:end; color:#121212; font-size:clamp(20px,2.4vw,32px); font-weight:800; text-underline-offset:7px; }
body:not(.project-page) .site-footer { border-top:1px solid rgba(0,0,0,.2); background:#f3d35c; color:#121212; padding:0 0 34px; }
body:not(.project-page) .site-footer .shell { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:20px; padding-top:30px; border-top:1px solid rgba(0,0,0,.2); }
.footer-brand { display:flex; align-items:center; gap:10px; font-weight:800; }
.footer-brand img { width:32px; height:32px; filter:brightness(0); }
.site-footer p { margin:0; font-size:12px; }
.footer-links { justify-self:end; display:flex; gap:18px; font-size:12px; font-weight:700; }

@media (max-width: 1000px) {
  body:not(.project-page) .hero { grid-template-columns:1fr; min-height:auto; padding-top:70px; }
  .studio-board { height:520px; }
  .project-card { grid-template-columns:1fr; }
  .card-media { height:230px; }
  .card-body { min-height:270px; }
}
@media (max-width: 720px) {
  body:not(.project-page) .site-nav { top:8px; width:calc(100vw - 16px); margin-top:8px; border-radius:18px; }
  body:not(.project-page) .nav-inner { grid-template-columns:1fr auto; gap:10px; padding:9px 10px; }
  body:not(.project-page) .studio-brand span { font-size:14px; }
  body:not(.project-page) .nav-links { grid-column:1/-1; grid-row:2; justify-content:center; gap:24px; padding-top:3px; border-top:1px solid var(--dark-line); }
  body:not(.project-page) .language-switch { grid-column:2; grid-row:1; }
  body:not(.project-page) .language-switch button { min-width:32px; height:32px; font-size:11px; }
  body:not(.project-page) .hero { padding-block:58px 68px; }
  body:not(.project-page) .hero h1 { font-size:clamp(42px,12vw,60px); }
  .studio-board { height:auto; grid-template-columns:repeat(2,1fr); grid-template-rows:repeat(3,170px); }
  .world-card { border-radius:20px; }
  .projects-section { padding:78px 0 88px; }
  body:not(.project-page) .section-heading,.project-grid,body:not(.project-page) .studio-layout,.contact-inner { grid-template-columns:1fr; }
  .project-grid { gap:14px; }
  .project-card { min-height:0; grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr); border-radius:22px; }
  .card-media { height:auto; min-height:230px; }
  .card-body { min-height:0; padding:22px; }
  .card-body h3 { font-size:30px; }
  .card-body > p:not(.status) { font-size:14px; }
  .contact-mail { justify-self:start; }
  body:not(.project-page) .site-footer .shell { grid-template-columns:1fr auto; }
  body:not(.project-page) .site-footer p { display:none; }
}
@media (max-width: 520px) {
  .shell { width:min(100% - 28px,1180px); }
  body:not(.project-page) .studio-brand img { width:32px; height:32px; }
  .studio-board { grid-template-rows:repeat(3,145px); gap:8px; }
  .world-card span { inset:auto 11px 10px; }
  .world-card b { font-size:15px; }
  .world-card small { font-size:10px; }
  .project-card { grid-template-columns:1fr; }
  .card-media { min-height:210px; height:210px; }
  .card-body { padding:24px; }
  .footer-links { gap:12px; }
}
