@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Medium.otf") format("opentype");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Bold.otf") format("opentype");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Black.otf") format("opentype");
  font-weight: 950;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-BoldItalic.otf") format("opentype");
  font-weight: 800 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta-SemiBold.otf") format("opentype");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta-Bold.otf") format("opentype");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta-Black.otf") format("opentype");
  font-weight: 950;
  font-style: normal;
  font-display: swap;
}

:root {
  --warm: #f2ece2;
  --black: #0a0a0a;
  --red: #ff381f;
  --purple: #7a5cff;
  --white: #fffaf0;
  --ink: #0a0a0a;
  --paper: #f2ece2;
  --line: rgba(10, 10, 10, 0.86);
  --muted: rgba(10, 10, 10, 0.68);
  --surface: #fff7e8;
  --inverse: #0a0a0a;
  --inverse-text: #fffaf0;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
  --font-primary: "Satoshi", "Helvetica Neue", Arial, sans-serif;
  --font-secondary: "Recoleta", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-primary);
  letter-spacing: 0;
  transition: background 240ms ease, color 240ms ease;
}

body.is-transitioning {
  overflow: hidden;
}

body.theme-dark {
  --paper: #050505;
  --ink: #fffaf0;
  --line: rgba(255, 250, 240, 0.76);
  --muted: rgba(255, 250, 240, 0.7);
  --surface: #101010;
  --inverse: #f2ece2;
  --inverse-text: #0a0a0a;
  --shadow: 0 24px 80px rgba(255, 56, 31, 0.08);
}

body.theme-light {
  --paper: #f2ece2;
  --ink: #0a0a0a;
  --line: rgba(10, 10, 10, 0.86);
  --muted: rgba(10, 10, 10, 0.68);
  --surface: #fff7e8;
  --inverse: #0a0a0a;
  --inverse-text: #fffaf0;
}

.brand-transition {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  pointer-events: none;
  transform: translateY(0);
}

.brand-transition img {
  width: min(58vw, 420px);
  max-height: 42vh;
  object-fit: contain;
  animation: brandPulse 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand-transition.is-intro {
  animation: curtainOut 760ms 620ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.brand-transition.is-exit {
  transform: translateY(100%);
  animation: curtainIn 520ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.brand-transition.is-exit img {
  animation: brandExitPulse 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes curtainOut {
  to {
    transform: translateY(-100%);
  }
}

@keyframes curtainIn {
  to {
    transform: translateY(0);
  }
}

@keyframes brandPulse {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
  }

  45% {
    opacity: 1;
    transform: translateY(0) scale(1.03);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes brandExitPulse {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-transition,
  .brand-transition img {
    animation-duration: 1ms;
    animation-delay: 0ms;
  }
}

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

button {
  font: inherit;
}

.page-shell {
  width: min(1680px, 100%);
  margin: 0 auto;
  padding: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 10px 0;
  border-bottom: 2px solid var(--line);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  width: 210px;
  height: 56px;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.logo-light,
.theme-light .logo-dark {
  display: none;
}

.theme-light .logo-light {
  display: block;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 46px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding-block: 8px;
}

.nav-links a:hover {
  color: var(--red);
  border-color: var(--red);
}

.nav-links a.is-active {
  color: var(--red);
  border-color: var(--red);
}

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

.control-button {
  display: grid;
  place-items: center;
  min-width: 46px;
  height: 42px;
  border: 2px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  overflow: hidden;
}

.theme-toggle {
  min-width: 72px;
  color: var(--red);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.7fr) minmax(220px, 0.5fr);
  grid-auto-rows: minmax(210px, auto);
  gap: 0;
  padding: 28px 0 0;
}

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

.page-hero {
  border-top: 0;
}

.panel {
  position: relative;
  min-height: 240px;
  border: 2px solid var(--line);
  padding: clamp(20px, 3vw, 42px);
  overflow: hidden;
  background: var(--surface);
}

.panel + .panel,
.identity-board {
  margin-left: -2px;
}

.panel-warm {
  background:
    radial-gradient(circle at 90% 15%, rgba(122, 92, 255, 0.16), transparent 18rem),
    var(--warm);
  color: var(--black);
  grid-row: span 2;
}

.kicker,
.section-index {
  margin: 0 0 24px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(50px, 6.8vw, 108px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 950;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 span + span {
  margin-top: 0.12em;
}

.strange,
.red {
  color: var(--red);
}

.hero-text {
  max-width: 660px;
  margin: 30px 0;
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.05;
  font-weight: 800;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--purple);
  font-weight: 900;
  text-transform: uppercase;
}

.arrow-link span:first-child {
  font-size: 42px;
  line-height: 1;
}

.panel-black {
  display: grid;
  place-items: center;
  background: var(--black);
}

.panel-black img {
  width: min(86%, 420px);
  aspect-ratio: 1;
  object-fit: contain;
}

.panel-purple {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  background: linear-gradient(135deg, #3f35ff, var(--purple));
  color: white;
}

.panel-purple p {
  max-width: 250px;
  margin: 0;
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1;
  font-weight: 900;
}

.panel-purple span {
  align-self: flex-end;
  font-size: 74px;
  line-height: 0.75;
}

.identity-board {
  grid-column: span 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    linear-gradient(90deg, transparent 0 calc(100% - 2px), var(--line) calc(100% - 2px)),
    var(--surface);
}

.board-head,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.roundel {
  width: 24px;
  height: 24px;
  border: 5px solid var(--purple);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--surface);
}

.board-title {
  align-self: center;
  font-size: clamp(48px, 7vw, 118px);
  line-height: 0.88;
  font-weight: 900;
}

.board-title span {
  display: block;
}

.board-systems {
  display: grid;
  grid-template-columns: 70px 32px 32px 1fr;
  align-items: end;
  gap: 14px;
  margin-top: clamp(22px, 3vw, 42px);
}

.bar {
  display: block;
  height: 96px;
}

.bar.black {
  background: var(--ink);
}

.bar.red {
  height: 58px;
  background: var(--red);
}

.bar.purple {
  height: 96px;
  background: var(--purple);
}

.dots,
.dot-field {
  background-image: radial-gradient(currentColor 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}

.dots {
  height: 90px;
  color: var(--ink);
}

.section-rule {
  border-top: 2px solid var(--line);
}

.page-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: clamp(34px, 5vw, 70px) 0;
}

.page-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: -2px;
  padding: 22px;
  border: 2px solid var(--line);
  background: var(--surface);
}

.page-card:first-child {
  margin-left: 0;
}

.page-card:hover {
  background: var(--purple);
  color: white;
}

.page-card span,
.page-card small {
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-card small,
.hero-text,
.section-body p,
.service-list p,
.contact-panel p,
.founder-about-copy p {
  font-family: var(--font-secondary);
}

.page-card:hover span,
.page-card:hover small {
  color: white;
}

.page-card strong {
  display: block;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 0.95;
}

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 6vw, 90px);
  padding: clamp(52px, 8vw, 110px) 0;
}

.split-section h2,
.split-section h1,
.section-heading h2,
.section-heading h1,
.contact-section h2,
.contact-section h1 {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: clamp(40px, 6vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.page-hero h1,
.section-heading h1,
.contact-section h1 {
  font-family: var(--font-primary);
  font-weight: 950;
}

.page-hero h1 {
  line-height: 1.08;
  max-width: 9.5ch;
}

.contact-section h1 {
  max-width: 100%;
  font-size: clamp(44px, 5.2vw, 82px);
  line-height: 1.02;
}

:lang(en) .contact-section h1 {
  max-width: 100%;
}

:lang(tr) .contact-section h1 {
  max-width: 100%;
}

.contact-section h1 span {
  display: block;
  white-space: nowrap;
}

.section-body p,
.contact-panel p {
  margin: 0;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.06;
  font-weight: 850;
}

.founder-about {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(28px, 6vw, 96px);
  padding: clamp(52px, 8vw, 110px) 0;
}

.founder-portrait {
  width: min(100%, 430px);
  aspect-ratio: 1;
  border: 2px solid var(--line);
  border-radius: 50%;
  overflow: hidden;
  background: var(--red);
  box-shadow: 18px 18px 0 var(--purple);
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 24%;
}

.founder-about-copy h2 {
  margin: 0;
  color: var(--red);
  font-size: clamp(52px, 8vw, 132px);
  line-height: 0.86;
  font-weight: 950;
}

.founder-about-copy p {
  max-width: 860px;
  margin: 24px 0 0;
  font-size: clamp(22px, 2.8vw, 42px);
  line-height: 1.08;
  font-weight: 700;
}

.founder-about-copy p[data-i18n="founderRole"] {
  color: var(--purple);
  font-family: var(--font-primary);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 950;
  text-transform: uppercase;
}

.mini-systems {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.mini-systems span {
  display: block;
  width: 58px;
  height: 58px;
  background: var(--red);
}

.mini-systems span:nth-child(1) {
  border-radius: 50%;
}

.mini-systems span:nth-child(2) {
  border-radius: 50% 50% 0 0;
}

.mini-systems span:nth-child(3) {
  background: var(--purple);
}

.mini-systems span:nth-child(4) {
  width: 160px;
  height: 16px;
  background: var(--ink);
}

.services-section,
.works-section {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(24px, 5vw, 74px);
  padding: clamp(52px, 8vw, 110px) 0;
}

.partners-section {
  display: block;
  padding: clamp(52px, 8vw, 110px) 0;
}

.partners-section .section-heading {
  position: static;
  margin-bottom: clamp(22px, 4vw, 46px);
}

.section-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

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

.service-list article {
  display: grid;
  grid-template-columns: 70px minmax(180px, 0.7fr) minmax(240px, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-bottom: 2px solid var(--line);
}

.service-list span {
  color: var(--purple);
  font-weight: 900;
}

.service-list h2,
.service-list h3,
.work-card h2,
.work-card h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 46px);
  line-height: 1;
}

.service-list p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
}

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

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 18px);
}

.partner-card {
  min-height: clamp(150px, 15vw, 220px);
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 38px);
  border: 2px solid var(--line);
  background: var(--black);
  overflow: hidden;
}

.partner-card img {
  width: min(100%, 260px);
  height: clamp(88px, 10vw, 138px);
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.08));
}

.work-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 2px solid var(--line);
}

.work-card p {
  margin: auto 0 18px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: clamp(44px, 6vw, 84px) 0;
}

.statement-panel {
  min-height: 320px;
  margin-left: -2px;
  padding: clamp(22px, 3vw, 42px);
  border: 2px solid var(--line);
}

.statement-panel:first-child {
  margin-left: 0;
}

.statement-panel span {
  display: block;
  margin-bottom: 36px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.statement-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 64px);
  line-height: 0.98;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr) minmax(220px, 0.5fr);
  padding-top: 28px;
}

.founder-card h1 {
  margin: 0;
  color: var(--red);
  font-size: clamp(72px, 12vw, 180px);
  line-height: 0.85;
  font-weight: 950;
}

.founder-card p:last-child {
  margin: 28px 0 0;
  color: var(--black);
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 900;
}

.founder-copy {
  align-content: center;
}

.founder-copy h2 {
  margin: 0 0 28px;
  color: var(--red);
  font-size: clamp(38px, 5vw, 84px);
  line-height: 0.92;
}

.founder-copy p {
  margin: 0;
  max-width: 680px;
  color: var(--white);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.15;
  font-weight: 800;
}

.black-card {
  background: var(--black);
  color: var(--white);
}

.warm-card {
  background: var(--warm);
  color: var(--black);
}

.purple-card {
  background: var(--purple);
  color: white;
}

.work-visual {
  position: relative;
  min-height: 230px;
}

.shape {
  position: absolute;
  display: block;
}

.shape.circle {
  width: clamp(116px, 14vw, 156px);
  height: clamp(58px, 7vw, 78px);
  border-radius: 999px 999px 0 0;
  background: var(--red);
  left: 12%;
  top: calc(45% - clamp(58px, 7vw, 78px) + clamp(9px, 1vw, 12px));
}

.shape.line {
  width: 76%;
  height: clamp(18px, 2vw, 24px);
  background: var(--white);
  left: 12%;
  top: 45%;
  z-index: 2;
}

.shape.half {
  width: clamp(116px, 14vw, 156px);
  height: clamp(58px, 7vw, 78px);
  border-radius: 0 0 999px 999px;
  background: var(--red);
  right: 12%;
  top: calc(45% + clamp(18px, 2vw, 24px) - clamp(9px, 1vw, 12px));
}

.dot-field {
  color: var(--black);
}

.arrow-visual {
  display: grid;
  place-items: center;
  min-height: 250px;
  font-size: 170px;
  line-height: 0.7;
}

.contact-panel {
  container-type: inline-size;
  display: grid;
  gap: 8px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--inverse);
  color: var(--inverse-text);
  box-shadow: var(--shadow);
}

.contact-panel a {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  font-size: clamp(26px, 3.2vw, 48px);
  line-height: 1.04;
  font-weight: 900;
  padding-bottom: 0.08em;
  border-bottom: 0;
  background-image: linear-gradient(var(--red), var(--red));
  background-repeat: no-repeat;
  background-position: left calc(100% - 0.11em);
  background-size: 100% 0.075em;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-email {
  white-space: nowrap;
}

.contact-panel a::after {
  content: none;
}

.contact-email span {
  display: inline-block;
  white-space: nowrap;
}

@container (max-width: 620px) {
  .contact-email {
    font-size: clamp(21px, 8cqw, 40px);
  }
}

@container (max-width: 420px) {
  .contact-panel a {
    font-size: clamp(20px, 7.5cqw, 30px);
  }

  .contact-email {
    font-size: clamp(18px, 7.2cqw, 27px);
  }
}

.linkedin-mark {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-top: 28px;
  border: 2px solid var(--line);
  background: var(--purple);
  color: var(--white);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.linkedin-mark svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.linkedin-mark:hover {
  transform: translateY(-3px);
  background: var(--red);
}

.site-footer {
  min-height: 78px;
  border-top: 2px solid var(--line);
  color: var(--muted);
}

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

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
  }

  .hero-grid,
  .split-section,
  .services-section,
  .works-section,
  .contact-section,
  .founder-about,
  .founder-grid,
  .statement-grid,
  .page-cards {
    grid-template-columns: 1fr;
  }

  .identity-board {
    grid-column: auto;
    margin-left: 0;
  }

  .panel + .panel {
    margin-left: 0;
    margin-top: -2px;
  }

  .section-heading {
    position: static;
  }

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

  .page-card,
  .statement-panel {
    margin-left: 0;
    margin-top: -2px;
  }

  .page-card:first-child,
  .statement-panel:first-child {
    margin-top: 0;
  }

  .founder-portrait {
    width: min(78vw, 380px);
  }

  .service-list article {
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 12px;
  }

  .site-header {
    min-height: 68px;
    gap: 10px;
  }

  .brand-lockup {
    width: 164px;
    height: 46px;
  }

  .control-button {
    min-width: 40px;
    height: 38px;
  }

  .hero-grid {
    padding-top: 18px;
  }

  .panel {
    min-height: 210px;
    padding: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 17vw, 76px);
  }

  .hero-text {
    font-size: 22px;
  }

  .board-systems {
    grid-template-columns: 48px 24px 24px 1fr;
    margin-top: 30px;
  }

  .bar {
    height: 78px;
  }

  .bar.red {
    height: 48px;
  }

  .bar.purple {
    height: 84px;
  }

  .split-section,
  .services-section,
  .works-section,
  .partners-section,
  .contact-section {
    padding: 48px 0;
  }

  .contact-panel a {
    font-size: clamp(20px, 6.4vw, 30px);
    line-height: 1.08;
  }

  .contact-panel .contact-email {
    font-size: clamp(18px, 6vw, 27px);
  }

  .contact-section h1 {
    max-width: 100%;
    font-size: clamp(42px, 13vw, 64px);
    line-height: 1.02;
  }

  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .partner-card {
    min-height: 118px;
    padding: 10px;
  }

  .partner-card img {
    width: 100%;
    height: 76px;
  }

  .work-card {
    min-height: 360px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 18px 0;
  }
}
