:root {
  --paper: #f6f3ed;
  --paper-deep: #e8e2d8;
  --ink: #181a22;
  --muted: #6f6d73;
  --line: rgba(24, 26, 34, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --accent: #3657c9;
  --accent-soft: #9fb0ec;
  --white: #fffdf8;
  --dark: #151824;
  --portfolio-process-bg: #1f2e50;
  --shell: min(1280px, calc(100vw - 64px));
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 24px 70px rgba(24, 26, 34, 0.14);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open,
body.assistant-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: 144px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 16px;
  left: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 760;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 64px;
}

.section-heading-compact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading h2,
.about h2,
.process h2,
.contact h2,
.award h2 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 620;
  letter-spacing: -.06em;
  line-height: .98;
}

.section-heading-compact h2 {
  font-size: clamp(2rem, 3vw, 3.7rem);
}

.section-note {
  margin: 0;
  max-width: 430px;
  color: var(--muted);
  font-size: 1.03rem;
}

/* İkonlar SVG. Ok ve oynat işaretlerini metin karakteriyle yazınca
   iOS bunları mavi emoji olarak çiziyordu. */
.icon {
  display: block;
  flex: 0 0 auto;
  width: 1.15em;
  height: 1.15em;
}

.icon-play {
  width: 1.35em;
  height: 1.35em;
  /* Üçgenin görsel ağırlığı sola kaçık; optik olarak ortalar. */
  margin-left: .08em;
}

.button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 720;
  line-height: 1;
  transition: transform .25s var(--ease), background-color .25s ease, color .25s ease;
}

.button {
  padding: 0 24px;
}

.button:hover,
.text-button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--accent);
}

.button-light {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  border-color: var(--ink);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  font-weight: 680;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 18px 0 auto;
  pointer-events: none;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 70px;
  padding: 0 10px 0 24px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 24px;
  background: rgba(247, 244, 237, .88);
  box-shadow: 0 14px 50px rgba(23, 23, 21, .1), inset 0 1px rgba(255, 255, 255, .75);
  backdrop-filter: blur(22px) saturate(1.2);
  pointer-events: auto;
  transition: min-height .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 62px;
  background: rgba(247, 244, 237, .96);
  box-shadow: 0 16px 50px rgba(23, 23, 21, .15);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  min-height: 44px;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: -.035em;
}

.brand-mark {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(182, 83, 50, .09);
}

.brand-name {
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 670;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -9px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--ink);
}

.main-nav a.is-active::after {
  transform: scaleX(1);
}

.mobile-nav-foot {
  display: none;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
}

.text-button {
  min-height: 44px;
  padding: 0 20px;
  background: var(--ink);
  color: var(--white);
  font-size: .82rem;
}

.menu-button {
  display: none;
  width: 48px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .25s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  align-items: end;
  gap: clamp(56px, 8vw, 130px);
  min-height: 100svh;
  padding-top: 150px;
  padding-bottom: 72px;
}

/* left:50% + translateX(-50%) tek başına yetmiyor: kutu tüm genişliğe
   yayılıp yazıyı sola kaçırıyordu. width:max-content kutuyu yazıya
   daraltıyor, ancak o zaman gerçekten ortalanıyor. */
.scroll-cue {
  position: absolute;
  right: auto;
  left: 50%;
  bottom: 28px;
  width: max-content;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: .67rem;
  font-weight: 720;
  letter-spacing: .13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 42px;
  margin-top: 12px;
  background: linear-gradient(var(--accent), transparent);
  animation: cuePulse 1.8s ease-in-out infinite;
}

@keyframes cuePulse {
  50% { transform: scaleY(.55); transform-origin: top; opacity: .45; }
}

.hero-copy {
  padding-bottom: 20px;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  margin: 0;
  max-width: 820px;
  font-size: clamp(4.4rem, 7.5vw, 8.4rem);
  font-weight: 650;
  letter-spacing: -.075em;
  line-height: .82;
}

.hero h1 em {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 650px;
  margin: 44px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 48px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 650;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-meta span::before {
  content: "";
  width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
}

.hero-portrait {
  margin: 0;
}

.portrait-frame {
  overflow: hidden;
  aspect-ratio: .74;
  border-radius: var(--radius-lg);
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(.85) contrast(1.02);
}

.hero-portrait figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px 0;
}

.hero-portrait strong {
  font-size: .94rem;
}

.hero-portrait span {
  color: var(--muted);
  font-size: .78rem;
}

/* Showreel */
.showreel {
  padding-top: 40px;
}

.showreel-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
}

.showreel-heading h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3rem, 5.8vw, 6.4rem);
  font-weight: 620;
  letter-spacing: -.065em;
  line-height: .92;
}

.showreel-heading > p {
  max-width: 390px;
  margin: 0 0 6px;
  color: var(--muted);
}

.showreel-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background: #111;
  box-shadow: 0 34px 100px rgba(23, 23, 21, .18);
}

.showreel-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showreel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), transparent 42%, rgba(0, 0, 0, .55));
  pointer-events: none;
}

.showreel-duration {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(16, 16, 14, .38);
  color: var(--white);
  font-size: .68rem;
  font-weight: 720;
  letter-spacing: .08em;
  backdrop-filter: blur(12px);
}

.showreel-toggle {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 56px;
  padding: 6px 22px 6px 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 248, .95);
  color: var(--ink);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 760;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
  transition: transform .3s var(--ease), background-color .25s ease;
}

.showreel-toggle:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.showreel-toggle-icon {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: .72rem;
}

/* Brands */
.brand-strip {
  padding-block: 88px;
  border-block: 1px solid var(--line);
  background: var(--paper-deep);
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .2);
}

.brand-item {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 28px;
}

.brand-item + .brand-item {
  border-left: 1px solid var(--line);
}

.brand-item img {
  width: auto;
  max-width: 190px;
  max-height: 68px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform .3s var(--ease), opacity .25s ease;
}

.brand-item:hover img {
  transform: scale(1.055);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10vw;
}

.about-intro h2 {
  font-size: clamp(3rem, 5vw, 5.6rem);
}

.about-copy {
  align-self: end;
}

.about-copy p {
  color: var(--muted);
}

.about-copy .about-lead {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 560;
  letter-spacing: -.035em;
  line-height: 1.25;
}

.journey-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(100%, 420px);
  margin-top: 32px;
  padding: 18px 18px 18px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .35);
  color: var(--ink);
  text-decoration: none;
  transition: transform .3s var(--ease), border-color .25s ease, background-color .25s ease;
}

.journey-link:hover {
  border-color: rgba(182, 83, 50, .35);
  background: rgba(255, 255, 255, .65);
  transform: translateY(-4px);
}

.journey-link-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.journey-link-copy small {
  color: var(--accent);
  font-size: .66rem;
  font-weight: 780;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.journey-link-copy strong {
  font-size: .96rem;
  letter-spacing: -.025em;
}

.journey-link-arrow {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  transition: transform .3s var(--ease), background-color .25s ease;
}

.journey-link:hover .journey-link-arrow {
  background: var(--accent);
  transform: rotate(-8deg);
}

/* Work */
.work {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.work::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -12%;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 210, 115, .12), transparent 67%);
  pointer-events: none;
}

.work > .shell {
  position: relative;
}

.work .eyebrow {
  color: var(--accent-soft);
}

.work .section-note {
  color: rgba(255, 253, 248, .58);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
}

.filter-button {
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  color: rgba(255, 253, 248, .68);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
  transition: transform .25s var(--ease), background-color .25s ease, color .25s ease, border-color .25s ease;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.filter-button:hover {
  transform: translateY(-2px);
}

.portfolio-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  padding: 10px 15px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
}

.portfolio-note::before {
  content: "";
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-soft);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.project-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
  background: rgba(255, 255, 255, .035);
  color: inherit;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .13);
  transition: transform .45s var(--ease), border-color .3s ease, background-color .3s ease;
}

.project-card:hover {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .055);
  transform: translateY(-6px);
}

.project-card:first-child {
  grid-column: span 12;
}

.project-card:first-child,
.project-card.is-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  height: clamp(520px, 45vw, 620px);
}

.project-card:nth-child(2):last-child {
  grid-column: span 12;
}

.project-card:nth-child(2):nth-last-child(2),
.project-card:nth-child(3):last-child {
  grid-column: span 6;
}

.project-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #333;
}

.project-card.is-horizontal .project-media {
  aspect-ratio: 16 / 10;
}

.project-card.is-featured .project-media {
  min-height: 0;
  height: 100%;
  aspect-ratio: auto;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  backface-visibility: hidden;
  transition: transform .7s var(--ease), filter .3s ease;
}

.project-card:hover .project-media img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.project-play {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 253, 248, .92);
  color: var(--ink);
  font-size: .72rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
  transition: transform .35s var(--ease), background-color .25s ease;
}

.project-card:hover .project-play {
  transform: scale(1.08) rotate(-5deg);
  background: var(--accent-soft);
}

.project-index {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(18, 18, 16, .45);
  color: var(--white);
  font-size: .68rem;
  font-weight: 780;
  letter-spacing: .08em;
  backdrop-filter: blur(12px);
}

.project-body {
  display: flex;
  flex-direction: column;
  padding: 26px 26px 30px;
}

.project-card.is-featured .project-body {
  justify-content: center;
  padding: clamp(32px, 4vw, 58px);
}

.project-kicker {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: rgba(255, 253, 248, .5);
  font-size: .72rem;
  font-weight: 680;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.project-body h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  letter-spacing: -.045em;
  line-height: 1.08;
}

.project-body p {
  margin: 14px 0 0;
  color: rgba(255, 253, 248, .6);
  font-size: .92rem;
  line-height: 1.65;
}

.project-open {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 28px;
  color: rgba(255, 253, 248, .78);
  font-size: .75rem;
  font-weight: 720;
}

.project-open span {
  display: grid;
  place-items: center;
  width: 36px;
  aspect-ratio: 1;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  transition: background-color .25s ease, color .25s ease, transform .3s var(--ease);
}

.project-card:hover .project-open span {
  background: var(--white);
  color: var(--ink);
  transform: rotate(8deg);
}

.empty-state {
  margin: 0;
  padding: 32px;
  border: 1px dashed var(--line-light);
  border-radius: var(--radius-sm);
  color: rgba(255, 253, 248, .6);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.service-card {
  min-height: 330px;
  padding: 36px 34px;
  border-bottom: 1px solid var(--line);
}

.service-card + .service-card {
  border-left: 1px solid var(--line);
}

.service-number {
  display: block;
  margin-bottom: 90px;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 760;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  letter-spacing: -.045em;
  line-height: 1.08;
}

.service-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

/* Outcomes */
.outcomes {
  padding-top: 18px;
}

.outcomes .section-heading h2 {
  max-width: 980px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.outcome-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .25);
  transition: transform .35s var(--ease), border-color .25s ease;
}

.outcome-card:hover {
  border-color: rgba(182, 83, 50, .34);
  transform: translateY(-6px);
}

.outcome-card > span {
  color: var(--accent);
  font-size: .7rem;
  font-weight: 780;
  letter-spacing: .1em;
}

.outcome-card h3 {
  margin: auto 0 0;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  letter-spacing: -.055em;
  line-height: 1;
}

.outcome-card p {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: .9rem;
}

.outcome-card small {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 720;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.outcome-card:nth-child(2) {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

.outcome-card:nth-child(2) p,
.outcome-card:nth-child(2) small {
  color: rgba(255, 253, 248, .58);
}

.outcome-card:nth-child(2) small {
  border-color: var(--line-light);
}

/* Process */
.process {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: var(--white);
}

.process::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 520px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .025), 0 0 0 140px rgba(255, 255, 255, .018);
  pointer-events: none;
}

.process > .shell {
  position: relative;
  z-index: 1;
}

.process .eyebrow {
  color: rgba(255, 255, 255, .68);
}

.process-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  margin-bottom: 54px;
}

.process-note {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .66);
}

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

.process-list li {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: rgba(255, 255, 255, .055);
  transition: transform .35s var(--ease), background-color .35s ease;
}

.process-list li + li {
  padding-left: 28px;
}

.process-list li::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-soft), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.process-list li:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, .09);
}

.process-list li:hover::before {
  transform: scaleX(1);
}

.process-list span {
  display: block;
  margin-bottom: 74px;
  font-size: .74rem;
  font-weight: 750;
}

.process-list strong {
  display: block;
  font-size: 1.18rem;
}

.process-list p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: .88rem;
}

/* Journey */
.timeline {
  position: relative;
  z-index: 0;
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 34px;
  bottom: 34px;
  left: 34px;
  width: 1px;
  background: linear-gradient(var(--accent), rgba(30, 32, 27, .08));
}

.timeline-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .7s var(--ease);
  transition-delay: calc(var(--step, 0) * 35ms);
}

.timeline-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-rail {
  display: grid;
  place-items: start center;
  padding-top: 27px;
}

.timeline-rail span {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(112, 131, 64, .3);
  border-radius: 50%;
  background: var(--paper);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 780;
  box-shadow: 0 8px 24px rgba(30, 32, 27, .08);
}

.timeline-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 38px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .28);
  transition: border-color .3s ease, transform .35s var(--ease), background-color .3s ease;
}

.timeline-card:hover {
  border-color: rgba(112, 131, 64, .35);
  background: rgba(255, 255, 255, .5);
  transform: translateX(5px);
}

.timeline-meta {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.timeline-year,
.timeline-category {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 690;
}

.timeline-content h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.45rem);
  letter-spacing: -.05em;
  line-height: 1.08;
}

.timeline-story {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
  color: var(--muted);
  font-size: .91rem;
}

.timeline-story p {
  margin: 0;
}

/* Award */
.award {
  padding-top: 0;
}

.award-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  overflow: hidden;
  min-height: 560px;
  border-radius: var(--radius-lg);
  background: var(--dark);
  color: var(--white);
}

.award-copy {
  align-self: center;
  padding: 64px;
}

.award-copy .eyebrow {
  color: var(--accent-soft);
}

.award-copy h2 {
  font-size: clamp(2.7rem, 4vw, 4.8rem);
}

.award-copy p:not(.eyebrow) {
  margin: 28px 0 32px;
  color: rgba(255, 253, 248, .62);
}

.award-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: -12px 0 30px;
  color: rgba(255, 253, 248, .54);
  font-size: .76rem;
}

.award-meta strong {
  color: var(--white);
  font-size: .82rem;
}

.award-media {
  position: relative;
  overflow: hidden;
}

.award-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 27, 25, .35), transparent 45%);
}

.award-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75);
  transition: transform .7s var(--ease), filter .3s ease;
}

.award-media:hover img {
  transform: scale(1.03);
  filter: saturate(1);
}

.play-button {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 72px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  transform: translate(-50%, -50%);
}

/* Tools */
.tool-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
}

.tool-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .24);
}

.tool-label {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.tool-summary {
  min-height: 44px;
  margin: -12px 0 26px;
  color: var(--muted);
  font-size: .9rem;
}

.tool-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tool-card li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.tool-card img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
}

.tool-card span {
  display: flex;
  flex-direction: column;
}

.tool-card strong {
  letter-spacing: -.02em;
}

.tool-card small {
  margin-top: 3px;
  color: var(--muted);
}

/* Brief builder */
.brief-builder {
  position: relative;
  overflow: hidden;
  background: #151513;
  color: var(--white);
}

.brief-builder::before {
  content: "";
  position: absolute;
  top: -280px;
  right: -180px;
  width: 640px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 83, 50, .2), transparent 66%);
  pointer-events: none;
}

.brief-shell {
  position: relative;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(50px, 8vw, 120px);
}

.brief-heading {
  align-self: start;
  position: sticky;
  top: 120px;
}

.brief-heading .eyebrow {
  color: var(--accent-soft);
}

.brief-heading h2 {
  margin: 0;
  max-width: 600px;
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 620;
  letter-spacing: -.065em;
  line-height: .93;
}

.brief-heading > p:not(.eyebrow) {
  max-width: 460px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, .58);
}

.brief-form {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 30px;
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(12px);
}

.brief-steps {
  padding: 8px 30px 0;
}

.brief-step {
  margin: 0;
  padding: 30px 0 32px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.brief-step legend {
  width: 100%;
  padding: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.brief-step legend span {
  display: inline-block;
  min-width: 36px;
  color: var(--accent-soft);
  font-size: .68rem;
  letter-spacing: .1em;
}

.brief-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.brief-options label {
  position: relative;
  cursor: pointer;
}

.brief-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.brief-options label span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: rgba(255, 253, 248, .66);
  font-size: .76rem;
  font-weight: 680;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .25s var(--ease);
}

.brief-options label:hover span {
  border-color: rgba(255, 255, 255, .34);
  color: var(--white);
  transform: translateY(-2px);
}

.brief-options input:focus-visible + span {
  outline: 3px solid var(--accent-soft);
  outline-offset: 3px;
}

.brief-options input:checked + span {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.brief-finish {
  padding: 30px;
  background: rgba(0, 0, 0, .13);
}

.brief-finish > label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  font-size: .76rem;
  font-weight: 700;
}

.brief-finish > label span {
  color: rgba(255, 253, 248, .4);
  font-weight: 500;
}

.brief-finish textarea {
  display: block;
  width: 100%;
  min-height: 110px;
  resize: vertical;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  outline: none;
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  font-size: .88rem;
}

.brief-finish textarea::placeholder {
  color: rgba(255, 253, 248, .34);
}

.brief-finish textarea:focus {
  border-color: var(--accent-soft);
}

.brief-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
}

.brief-summary > span {
  max-width: 440px;
  color: rgba(255, 253, 248, .55);
  font-size: .76rem;
}

.brief-summary .button {
  flex: 0 0 auto;
  background: var(--accent);
}

.brief-summary .button:hover {
  background: var(--accent-soft);
}

.brief-summary .button:disabled {
  cursor: not-allowed;
  opacity: .38;
  transform: none;
}

/* Contact */
.contact {
  background: var(--dark);
  color: var(--white);
}

.contact-inner {
  max-width: 1050px;
  text-align: center;
}

.contact .eyebrow {
  color: var(--accent-soft);
}

.contact h2 {
  margin-inline: auto;
  font-size: clamp(3.3rem, 7vw, 7.6rem);
}

.contact-inner > p:not(.eyebrow) {
  max-width: 600px;
  margin: 32px auto 0;
  color: rgba(255, 253, 248, .6);
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 42px;
}

.mail-link {
  border-bottom: 1px solid currentColor;
  color: rgba(255, 253, 248, .7);
  font-weight: 650;
}

/* Footer */
.site-footer {
  padding-block: 34px;
  background: var(--dark);
  color: var(--white);
  border-top: 1px solid var(--line-light);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 253, 248, .48);
  font-size: .78rem;
}

.footer-inner .inline-link {
  font-size: .8rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}

/* Parmakla isabet ettirmek için en az 44px yükseklik. Görünen yazı
   boyutu aynı kalıyor, sadece tıklama alanı büyüyor. */
.footer-links a,
.footer-links button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 253, 248, .64);
  cursor: pointer;
  font: inherit;
  font-size: .78rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--white);
}

/* Project modal */
.project-modal {
  width: min(1100px, calc(100vw - 40px));
  max-height: calc(100svh - 40px);
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 120px rgba(0, 0, 0, .35);
  overflow: auto;
}

.project-modal::backdrop {
  background: rgba(17, 17, 15, .75);
  backdrop-filter: blur(8px);
}

.modal-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 600px;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
}

.modal-media {
  display: grid;
  place-items: center;
  min-height: 600px;
  padding: 28px;
  background: #111;
}

.modal-media video {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100svh - 96px);
  border-radius: var(--radius-sm);
  background: #000;
  object-fit: contain;
}

.modal-content {
  align-self: center;
  padding: 70px 50px;
}

.modal-content h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  letter-spacing: -.06em;
  line-height: .95;
}

.modal-content > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--muted);
}

.modal-content dl {
  margin: 36px 0 0;
}

.modal-content dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.modal-content dt {
  color: var(--muted);
  font-size: .75rem;
}

.modal-content dd {
  margin: 0;
  font-size: .86rem;
  font-weight: 650;
}

/* Assistant */
.assistant-root {
  position: fixed;
  z-index: 220;
  right: 24px;
  bottom: 24px;
}

.assistant-launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 16px 50px rgba(68, 27, 14, .25);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 760;
}

.assistant-dot {
  width: 8px;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 64px;
  display: flex;
  flex-direction: column;
  width: min(390px, calc(100vw - 32px));
  height: min(610px, calc(100svh - 120px));
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 30px 100px rgba(23, 23, 21, .25);
  overflow: hidden;
}

.assistant-panel[hidden] {
  display: none;
}

.assistant-head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.assistant-ident {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.assistant-ident strong {
  font-size: .86rem;
}

.assistant-ident span {
  color: var(--muted);
  font-size: .7rem;
}

.assistant-icon-button {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.2rem;
}

.assistant-log {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
}

.assistant-message {
  display: flex;
  margin-bottom: 12px;
}

.assistant-message.is-user {
  justify-content: flex-end;
}

.assistant-bubble {
  max-width: 82%;
  padding: 11px 14px;
  border-radius: 16px 16px 16px 4px;
  background: var(--paper-deep);
  font-size: .84rem;
  white-space: pre-wrap;
}

.is-user .assistant-bubble {
  border-radius: 16px 16px 4px;
  background: var(--ink);
  color: var(--white);
}

.assistant-typing .assistant-bubble {
  color: var(--muted);
}

.assistant-form {
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.assistant-form textarea {
  flex: 1;
  min-height: 44px;
  max-height: 130px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  color: var(--ink);
  outline: 0;
  resize: none;
  font-size: .84rem;
}

.assistant-send {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
}

.assistant-form.is-busy .assistant-send {
  opacity: .45;
  pointer-events: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.toast {
  position: fixed;
  z-index: 300;
  left: 50%;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: .82rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 40px, 980px);
  }

  .section {
    padding-block: 112px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    background: rgba(247, 244, 237, .97);
    backdrop-filter: none;
  }

  .main-nav {
    position: fixed;
    z-index: -1;
    inset: -18px 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100vw;
    min-height: calc(100svh + 18px);
    padding: 124px max(28px, calc((100vw - min(100% - 40px, 980px)) / 2)) 34px;
    background:
      radial-gradient(circle at 90% 14%, rgba(182, 83, 50, .12), transparent 32%),
      var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity .25s ease, transform .25s ease;
    counter-reset: mobile-nav;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: clamp(1.6rem, 5vw, 3rem);
    letter-spacing: -.045em;
    counter-increment: mobile-nav;
  }

  .main-nav > a::before {
    content: "0" counter(mobile-nav);
    min-width: 28px;
    color: var(--accent);
    font-size: .66rem;
    font-weight: 780;
    letter-spacing: .1em;
  }

  .main-nav > a::after,
  .desktop-contact {
    display: none;
  }

  .mobile-nav-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-top: auto;
    padding-top: 38px;
    color: var(--muted);
    font-size: .72rem;
  }

  .mobile-nav-foot a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    border-bottom: 1px solid currentColor;
  }

  .menu-button {
    display: block;
  }

  .hero {
    grid-template-columns: 1.15fr .85fr;
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(4rem, 8vw, 6.8rem);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .showreel-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .showreel-heading > p {
    max-width: 560px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:nth-child(3) {
    border-left: 0;
  }

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

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

  .timeline-card {
    grid-template-columns: 160px 1fr;
  }

  .timeline-story {
    grid-template-columns: 1fr;
  }

  .award-card {
    grid-template-columns: 1fr;
  }

  .award-media {
    min-height: 430px;
  }

  .outcome-grid {
    grid-template-columns: 1fr 1fr;
  }

  .outcome-card:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .brief-shell {
    grid-template-columns: 1fr;
  }

  .brief-heading {
    position: static;
  }

  .project-card.is-featured {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-md: 20px;
    --radius-lg: 28px;
  }

  html {
    scroll-padding-top: 88px;
  }

  .section {
    padding-block: 76px;
  }

  .site-header {
    inset: max(8px, env(safe-area-inset-top)) 0 auto;
  }

  .header-inner {
    min-height: 60px;
    padding: 6px 7px 6px 17px;
    border-radius: 21px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 56px;
  }

  .brand {
    gap: 9px;
    font-size: .82rem;
  }

  .brand-mark {
    width: 7px;
  }

  .menu-button {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .main-nav {
    inset: calc(-1 * max(8px, env(safe-area-inset-top))) 0 auto;
    padding: 106px 20px max(26px, env(safe-area-inset-bottom));
  }

  .main-nav > a {
    min-height: 68px;
    padding: 12px 2px;
    font-size: clamp(1.8rem, 9vw, 2.75rem);
  }

  .mobile-nav-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 64px;
  }

  .scroll-cue {
    display: none;
  }

  .hero-copy {
    display: contents;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 14vw, 5.4rem);
    line-height: .86;
  }

  .hero h1 > * {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-height: 54px;
    min-width: 0;
    padding-inline: 12px;
    font-size: .76rem;
    white-space: nowrap;
  }

  .hero-meta {
    order: 4;
    gap: 10px 18px;
    margin-top: 28px;
  }

  .hero-portrait {
    order: 3;
    margin-top: 8px;
  }

  .portrait-frame {
    aspect-ratio: .82;
  }

  .section-heading,
  .section-heading-compact {
    display: block;
    margin-bottom: 36px;
  }

  .section-heading h2,
  .about h2,
  .process h2,
  .contact h2,
  .award h2 {
    font-size: clamp(2.45rem, 11.5vw, 4rem);
  }

  .section-note {
    margin-top: 24px;
  }

  .showreel {
    padding-top: 20px;
  }

  .showreel-heading {
    display: block;
    margin-bottom: 30px;
  }

  .showreel-heading h2 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }

  .showreel-heading > p {
    margin-top: 22px;
  }

  .showreel-stage {
    aspect-ratio: 4 / 5;
    border-radius: 24px;
  }

  .showreel-stage video {
    object-fit: cover;
  }

  .showreel-duration {
    top: 14px;
    right: 14px;
  }

  .showreel-toggle {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: flex-start;
    min-height: 58px;
  }

  .brand-strip {
    overflow: hidden;
    padding-block: 62px;
  }

  .brand-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .brand-list::-webkit-scrollbar {
    display: none;
  }

  .brand-item {
    flex: 0 0 78%;
    min-height: 130px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, .28);
    scroll-snap-align: start;
  }

  .brand-item + .brand-item {
    border: 1px solid var(--line);
  }

  .brand-item img {
    max-width: 175px;
    max-height: 62px;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-copy {
    margin-top: 36px;
  }

  .journey-link {
    width: 100%;
    margin-top: 28px;
  }

  .work .section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
  }

  .work .section-heading > div {
    min-width: 0;
  }

  .portfolio-note {
    flex: 0 0 auto;
    margin: 0 0 4px;
    padding: 8px 12px;
    font-size: .7rem;
  }

  .filters {
    position: sticky;
    z-index: 4;
    top: 78px;
    flex-wrap: nowrap;
    gap: 7px;
    width: calc(100% + 28px);
    margin: 0 -14px 28px;
    padding: 9px 14px;
    overflow-x: auto;
    background: rgba(27, 27, 25, .9);
    backdrop-filter: blur(14px);
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
    min-height: 44px;
    padding-inline: 16px;
  }

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

  .project-card,
  .project-card:first-child,
  .project-card:nth-child(2):last-child,
  .project-card:nth-child(2):nth-last-child(2),
  .project-card:nth-child(3):last-child {
    display: block;
    grid-column: 1;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
    border-radius: 24px;
  }

  .project-card.is-vertical .project-media {
    min-height: 0;
    aspect-ratio: 9 / 16;
  }

  .project-card.is-horizontal .project-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .project-body,
  .project-card.is-featured .project-body {
    justify-content: flex-start;
    padding: 22px 20px 24px;
  }

  .project-body h3 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .project-body p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .project-open {
    padding-top: 22px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 270px;
    padding-inline: 0;
  }

  .service-card + .service-card {
    border-left: 0;
  }

  .service-number {
    margin-bottom: 65px;
  }

  .outcomes {
    padding-top: 0;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .outcome-card,
  .outcome-card:nth-child(3) {
    grid-column: auto;
    min-height: 290px;
    padding: 26px;
  }

  .outcome-card h3 {
    margin-top: 72px;
  }

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

  .process-list li,
  .process-list li + li {
    min-height: auto;
    padding: 26px;
  }

  .process-list span {
    margin-bottom: 32px;
  }

  .timeline-item {
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }

  .timeline::before {
    left: 24px;
  }

  .timeline-rail {
    padding-top: 22px;
  }

  .timeline-rail span {
    width: 36px;
  }

  .timeline-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .timeline-meta {
    flex-direction: row;
    justify-content: space-between;
  }

  .timeline-category {
    text-align: right;
  }

  .award-copy {
    padding: 48px 26px;
  }

  .award-media {
    min-height: 330px;
  }

  .tool-grid {
    grid-template-columns: 1fr;
  }

  .tool-card {
    padding: 26px 20px;
  }

  .brief-shell {
    display: block;
  }

  .brief-heading {
    margin-bottom: 40px;
  }

  .brief-heading h2 {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  .brief-form {
    border-radius: 24px;
  }

  .brief-steps {
    padding: 2px 20px 0;
  }

  .brief-step {
    padding: 25px 0 27px;
  }

  .brief-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brief-options label span {
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 0 10px;
    text-align: center;
  }

  .brief-finish {
    padding: 24px 20px;
  }

  .brief-summary {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .brief-summary .button {
    width: 100%;
  }

  .contact h2 {
    font-size: clamp(3.3rem, 15vw, 5.7rem);
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .modal-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .project-modal {
    width: calc(100vw - 16px);
    max-height: calc(100svh - 16px);
    border-radius: 22px;
  }

  .modal-media {
    min-height: 0;
    padding: 10px;
  }

  .modal-media video {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 68svh;
    border-radius: 14px;
  }

  .modal-content {
    padding: 36px 22px 42px;
  }

  .assistant-root {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .assistant-launcher {
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .assistant-launcher-label {
    display: none;
  }

  .assistant-panel {
    position: fixed;
    inset: max(8px, env(safe-area-inset-top)) 8px max(8px, env(safe-area-inset-bottom));
    width: auto;
    height: auto;
    border-radius: 22px;
  }
}

/* v115 — süreç ve portfolyo aynı lacivert */
.process {
  background: var(--dark);
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: clamp(3.05rem, 13.5vw, 3.55rem);
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button {
    padding-inline: 10px;
    font-size: .72rem;
  }

  .journey-link {
    padding: 16px;
  }

  .journey-link-arrow {
    width: 44px;
  }
}

/* v109 — sinematik mavi palet ve tam hero video zemini */
.header-inner,
.site-header.is-scrolled .header-inner {
  background: rgba(246, 243, 237, .94);
  box-shadow: 0 12px 38px rgba(24, 26, 34, .1);
}

.hero {
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  z-index: -2;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  overflow: hidden;
  background: var(--paper-deep);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-backdrop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .72;
  filter: saturate(.82) contrast(.92) brightness(.9);
}

.hero-backdrop-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 243, 237, .96) 0%, rgba(246, 243, 237, .84) 39%, rgba(246, 243, 237, .56) 72%, rgba(246, 243, 237, .5) 100%),
    linear-gradient(to bottom, rgba(246, 243, 237, .52), transparent 42%, rgba(246, 243, 237, .72));
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -7%;
  bottom: 8%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 87, 201, .46));
}

.hero-copy,
.hero-portrait {
  position: relative;
  z-index: 1;
}

/* Buraya position:relative yazılınca kaydırma ipucu grid hücresine
   düşüp sola kaçıyordu. Absolute kalmalı, sadece üstte dursun. */
.scroll-cue {
  z-index: 1;
}

.portrait-frame {
  border: 1px solid rgba(255, 253, 248, .72);
  border-radius: 28px;
  background: rgba(255, 253, 248, .2);
  box-shadow: 0 28px 76px rgba(24, 26, 34, .2);
}

.portrait-frame img {
  filter: saturate(.96) contrast(1.02);
}

.assistant-launcher,
.button-dark,
.text-button {
  background: var(--dark);
}

.process {
  background: var(--accent);
}

.work {
  background: var(--dark);
}

@media (max-width: 1080px) {
  .main-nav {
    background: var(--paper);
  }
}

@media (max-width: 760px) {
  .header-inner,
  .site-header.is-scrolled .header-inner {
    background: rgba(246, 243, 237, .97);
    box-shadow: 0 8px 26px rgba(24, 26, 34, .11);
  }

  .hero {
    padding-top: 104px;
    padding-bottom: 54px;
  }

  .hero-backdrop {
    top: 0;
    bottom: 0;
  }

  .hero-backdrop video {
    object-position: 58% center;
    opacity: .68;
  }

  .hero-backdrop-shade {
    background:
      linear-gradient(to bottom, rgba(246, 243, 237, .94) 0%, rgba(246, 243, 237, .79) 36%, rgba(246, 243, 237, .56) 66%, rgba(246, 243, 237, .78) 100%),
      linear-gradient(90deg, rgba(246, 243, 237, .78), rgba(246, 243, 237, .42));
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    padding: 0 2px;
  }

  .hero-lead {
    color: #4f5058;
  }

  .hero-meta {
    color: #55565e;
  }

  .hero-portrait {
    width: min(82%, 350px);
    margin: 2px 0 0 auto;
  }

  .portrait-frame {
    aspect-ratio: .78;
    border-radius: 19px;
    box-shadow: 0 22px 54px rgba(24, 26, 34, .22);
  }
}

@media (max-width: 390px) {
  .hero-portrait {
    width: 86%;
  }
}

/* v110 — son koyu lacivert tasarım sistemi */
:root {
  --paper: #f4f2ed;
  --paper-deep: #e8e6e1;
  --ink: #111522;
  --muted: #666b76;
  --line: rgba(17, 21, 34, .14);
  --accent: #4568e8;
  --accent-soft: #a8b8ff;
  --white: #fffefa;
  --dark: #0c1020;
  --shadow: 0 24px 70px rgba(7, 11, 25, .18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

.button,
.text-button,
.filter-button {
  border-radius: 10px;
}

.site-header {
  inset: 14px 0 auto;
}

.header-inner,
.site-header.is-scrolled .header-inner {
  border-color: rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(12, 16, 32, .88);
  color: var(--white);
  box-shadow: 0 16px 48px rgba(5, 8, 20, .24);
  backdrop-filter: blur(18px) saturate(1.15);
}

.site-header.is-scrolled .header-inner {
  background: rgba(12, 16, 32, .96);
}

.main-nav a {
  color: rgba(255, 254, 250, .64);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a::after {
  background: var(--accent-soft);
}

.text-button {
  background: var(--accent);
  color: var(--white);
}

.text-button:hover {
  background: #5a79ed;
}

.hero {
  color: var(--white);
}

.hero-backdrop {
  background: var(--dark);
}

.hero-backdrop video {
  opacity: .78;
  filter: saturate(.82) contrast(1.02) brightness(.66);
}

.hero-backdrop-shade {
  background:
    linear-gradient(90deg, rgba(7, 11, 25, .97) 0%, rgba(7, 11, 25, .9) 38%, rgba(7, 11, 25, .56) 72%, rgba(7, 11, 25, .5) 100%),
    linear-gradient(to bottom, rgba(7, 11, 25, .4), transparent 46%, rgba(7, 11, 25, .78));
}

.hero::after {
  background: linear-gradient(90deg, transparent, rgba(168, 184, 255, .52));
}

.hero .eyebrow {
  color: var(--accent-soft);
}

.hero h1 em {
  color: var(--accent-soft);
}

.hero-lead,
.hero-meta,
.scroll-cue {
  color: rgba(255, 254, 250, .68);
}

.hero .button-dark {
  background: var(--white);
  color: var(--dark);
}

.hero .button-dark:hover {
  background: var(--accent-soft);
}

.hero .button-light {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.hero .button-light:hover {
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .14);
}

.portrait-frame {
  border-color: rgba(255, 255, 255, .3);
  border-radius: 22px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 30px 90px rgba(3, 6, 18, .42);
}

.brand-strip {
  background: #ebe9e4;
}

.brand-list {
  gap: 10px;
  border: 0;
  background: transparent;
}

.brand-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .58);
}

.brand-item + .brand-item {
  border-left: 1px solid var(--line);
}

.about,
.services,
.journey,
.toolkit {
  position: relative;
}

.about-lead {
  text-wrap: balance;
}

.journey-link {
  border-radius: 12px;
  background: rgba(255, 255, 255, .56);
}

.journey-link:hover {
  border-color: rgba(69, 104, 232, .34);
  background: var(--white);
}

.journey-link-arrow {
  border-radius: 9px;
  background: var(--dark);
}

.work {
  background: #090d1b;
}

.work .section-heading h2 {
  text-wrap: balance;
}

.filters {
  gap: 9px;
}

.filter-button {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .035);
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: var(--accent-soft);
  background: var(--accent);
  color: var(--white);
}

.project-card,
.project-card:first-child,
.project-card:nth-child(2):last-child,
.project-card:nth-child(2):nth-last-child(2),
.project-card:nth-child(3):last-child,
.project-card.is-featured {
  border-color: rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
}

.project-card:hover {
  border-color: rgba(168, 184, 255, .42);
  background: rgba(255, 255, 255, .065);
}

.project-play {
  border-radius: 10px;
  background: rgba(255, 254, 250, .92);
}

.project-card:hover .project-play {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.project-kicker {
  color: rgba(255, 254, 250, .5);
}

.services-grid {
  gap: 12px;
  border-top: 0;
}

.service-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .44);
  transition: border-color .25s ease, transform .3s var(--ease), background-color .25s ease;
}

.service-card + .service-card {
  border-left: 1px solid var(--line);
}

.service-card:hover {
  border-color: rgba(69, 104, 232, .34);
  background: rgba(255, 255, 255, .72);
  transform: translateY(-4px);
}

.service-number {
  margin-bottom: 74px;
}

.process {
  background: #182554;
}

.process-list li {
  min-height: 235px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .045);
}

.process-list li:hover {
  background: rgba(255, 255, 255, .08);
}

.timeline::before {
  background: linear-gradient(var(--accent), rgba(17, 21, 34, .08));
}

.timeline-rail span {
  border-color: rgba(69, 104, 232, .32);
  border-radius: 9px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(17, 21, 34, .08);
}

.timeline-card {
  border-radius: 14px;
  background: rgba(255, 255, 255, .42);
}

.timeline-card:hover {
  border-color: rgba(69, 104, 232, .34);
  background: rgba(255, 255, 255, .68);
}

.award-card {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  background: #0c1020;
  box-shadow: 0 28px 80px rgba(7, 11, 25, .2);
}

.award-media::after {
  background: linear-gradient(90deg, rgba(12, 16, 32, .44), transparent 52%);
}

.play-button {
  border-radius: 12px;
  background: var(--white);
}

.tool-grid {
  gap: 14px;
}

.tool-card {
  border-radius: 14px;
  background: rgba(255, 255, 255, .48);
}

.tool-card img {
  border-radius: 8px;
}

.site-footer {
  background: #090d1b;
}

.assistant-launcher {
  border-radius: 10px;
  background: var(--accent);
  box-shadow: 0 14px 38px rgba(7, 11, 25, .32);
}

.assistant-launcher:hover {
  background: #5a79ed;
}

.assistant-panel {
  border-color: rgba(17, 21, 34, .16);
  border-radius: 14px;
  box-shadow: 0 32px 100px rgba(7, 11, 25, .32);
}

.assistant-head {
  border-color: rgba(255, 255, 255, .1);
  background: var(--dark);
  color: var(--white);
}

.assistant-ident span {
  color: rgba(255, 255, 255, .58);
}

.assistant-icon-button {
  border-radius: 8px;
  color: var(--white);
}

.assistant-form textarea {
  border-radius: 10px;
}

.assistant-send {
  border-radius: 10px;
  background: var(--accent);
}

@media (max-width: 1080px) {
  .main-nav {
    background: #0c1020;
    color: var(--white);
  }

  .main-nav > a {
    border-color: rgba(255, 255, 255, .12);
    color: var(--white);
  }

  .mobile-nav-foot {
    color: rgba(255, 255, 255, .56);
  }
}

@media (max-width: 760px) {
  .header-inner,
  .site-header.is-scrolled .header-inner {
    border-radius: 12px;
    background: rgba(12, 16, 32, .94);
    box-shadow: 0 12px 34px rgba(5, 8, 20, .26);
  }

  .menu-button {
    border-radius: 9px;
    background: var(--accent);
  }

  .hero {
    gap: 28px;
    padding-top: 102px;
    padding-bottom: 52px;
  }

  .hero-backdrop video {
    object-position: 60% center;
    opacity: .72;
    filter: saturate(.8) contrast(1.03) brightness(.62);
  }

  .hero-backdrop-shade {
    background:
      linear-gradient(to bottom, rgba(7, 11, 25, .94) 0%, rgba(7, 11, 25, .82) 36%, rgba(7, 11, 25, .54) 68%, rgba(7, 11, 25, .84) 100%),
      linear-gradient(90deg, rgba(7, 11, 25, .72), rgba(7, 11, 25, .32));
  }

  .hero-lead,
  .hero-meta {
    color: rgba(255, 254, 250, .7);
  }

  .hero-portrait {
    width: min(78%, 330px);
  }

  .portrait-frame {
    border-radius: 16px;
  }

  .brand-item {
    border-radius: 12px;
  }

  .service-card {
    min-height: 205px;
    padding: 24px;
  }

  .service-number {
    margin-bottom: 38px;
  }

  .process-list {
    gap: 10px;
  }

  .process-list li,
  .process-list li + li {
    min-height: 190px;
    padding: 22px;
    border-radius: 12px;
  }

  .timeline-card {
    border-radius: 12px;
  }

  .award-card {
    border-radius: 16px;
  }

  .award-media {
    min-height: 280px;
  }

  .tool-card {
    border-radius: 12px;
  }

  .assistant-panel {
    border-radius: 12px;
  }
}

/* v111 — sade, açık ve zamansız son düzen */
:root {
  --paper: #f5f3ee;
  --paper-deep: #e8e5de;
  --ink: #171a22;
  --muted: #6d7078;
  --line: rgba(23, 26, 34, .14);
  --accent: #344a79;
  --accent-soft: #aab5cc;
  --white: #fffefa;
  --dark: #111725;
  --shadow: 0 18px 50px rgba(17, 23, 37, .1);
  --radius-sm: 9px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

.header-inner,
.site-header.is-scrolled .header-inner {
  border-color: rgba(23, 26, 34, .1);
  border-radius: 12px;
  background: rgba(245, 243, 238, .94);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(17, 23, 37, .08);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .header-inner {
  background: rgba(245, 243, 238, .98);
}

.main-nav a {
  color: var(--muted);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--ink);
}

.main-nav a::after {
  background: var(--accent);
}

.text-button {
  background: var(--ink);
  color: var(--white);
}

.text-button:hover {
  background: var(--accent);
}

.hero {
  color: var(--ink);
}

.hero-backdrop {
  background: var(--paper-deep);
}

.hero-backdrop video {
  opacity: .56;
  filter: saturate(.72) contrast(.94) brightness(.88);
}

.hero-backdrop-shade {
  background:
    linear-gradient(90deg, rgba(245, 243, 238, .97) 0%, rgba(245, 243, 238, .9) 42%, rgba(245, 243, 238, .69) 74%, rgba(245, 243, 238, .62) 100%),
    linear-gradient(to bottom, rgba(245, 243, 238, .48), transparent 45%, rgba(245, 243, 238, .78));
}

.hero::after {
  display: none;
}

.hero .eyebrow {
  color: var(--accent);
}

.hero h1 em {
  color: var(--accent);
}

.hero-lead,
.hero-meta,
.scroll-cue {
  color: var(--muted);
}

.hero .button-dark {
  background: var(--ink);
  color: var(--white);
}

.hero .button-dark:hover {
  background: var(--accent);
}

.hero .button-light {
  border-color: var(--line);
  background: rgba(255, 254, 250, .7);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.hero .button-light:hover {
  border-color: rgba(23, 26, 34, .3);
  background: var(--white);
}

.portrait-frame {
  border-color: rgba(255, 254, 250, .68);
  border-radius: 18px;
  background: rgba(255, 254, 250, .2);
  box-shadow: 0 18px 52px rgba(17, 23, 37, .14);
}

.brand-strip {
  background: #eeece7;
}

.brand-list {
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .24);
}

.brand-item {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.brand-item + .brand-item {
  border: 0;
  border-left: 1px solid var(--line);
}

.journey-link {
  border-radius: 10px;
  background: rgba(255, 255, 255, .32);
  box-shadow: none;
}

.journey-link:hover {
  border-color: rgba(52, 74, 121, .3);
  background: rgba(255, 255, 255, .62);
  transform: none;
}

.journey-link-arrow {
  border-radius: 8px;
  background: var(--ink);
}

.work {
  background: var(--dark);
}

.filter-button {
  border-color: rgba(255, 255, 255, .18);
  background: transparent;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: rgba(255, 255, 255, .34);
  background: var(--white);
  color: var(--ink);
  transform: none;
}

.project-card,
.project-card:first-child,
.project-card:nth-child(2):last-child,
.project-card:nth-child(2):nth-last-child(2),
.project-card:nth-child(3):last-child,
.project-card.is-featured {
  border-color: rgba(255, 255, 255, .11);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
}

.project-card:hover {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .045);
  transform: none;
}

.project-card:hover .project-media img {
  transform: none;
  filter: none;
}

.project-play {
  border-radius: 8px;
}

.project-card:hover .project-play {
  background: var(--white);
  transform: none;
}

.services-grid {
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-card {
  min-height: 290px;
  padding: 34px 30px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  transition: none;
}

.service-card + .service-card {
  border-left: 1px solid var(--line);
}

.service-card:hover {
  border-color: var(--line);
  background: transparent;
  transform: none;
}

.service-number {
  margin-bottom: 68px;
}

.process {
  background: #26385f;
}

.process-list li,
.process-list li + li {
  min-height: 225px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .035);
}

.process-list li:hover {
  background: rgba(255, 255, 255, .055);
  transform: none;
}

.process-list li::before {
  display: none;
}

.timeline-rail span {
  border-color: rgba(52, 74, 121, .26);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: none;
}

.timeline-card {
  border-radius: 12px;
  background: rgba(255, 255, 255, .28);
}

.timeline-card:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, .42);
  transform: none;
}

.award-card {
  border: 0;
  border-radius: 18px;
  background: var(--dark);
  box-shadow: none;
}

.play-button {
  border-radius: 10px;
}

.tool-grid {
  gap: 14px;
}

.tool-card {
  border-radius: 12px;
  background: rgba(255, 255, 255, .28);
}

.assistant-launcher {
  border-radius: 9px;
  background: var(--ink);
  box-shadow: 0 10px 30px rgba(17, 23, 37, .18);
}

.assistant-launcher:hover {
  background: var(--accent);
}

.assistant-panel {
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(17, 23, 37, .2);
}

.assistant-head {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.assistant-ident span {
  color: var(--muted);
}

.assistant-icon-button {
  border-radius: 7px;
  color: var(--ink);
}

.assistant-send {
  border-radius: 8px;
  background: var(--ink);
}

@media (max-width: 1080px) {
  .main-nav {
    background: var(--paper);
    color: var(--ink);
  }

  .main-nav > a {
    border-color: var(--line);
    color: var(--ink);
  }

  .mobile-nav-foot {
    color: var(--muted);
  }
}

@media (max-width: 760px) {
  .header-inner,
  .site-header.is-scrolled .header-inner {
    border-radius: 11px;
    background: rgba(245, 243, 238, .97);
    box-shadow: 0 6px 22px rgba(17, 23, 37, .09);
  }

  .menu-button {
    border-radius: 8px;
    background: var(--ink);
  }

  .hero {
    gap: 26px;
    padding-top: 102px;
    padding-bottom: 50px;
  }

  .hero-backdrop video {
    object-position: 60% center;
    opacity: .52;
    filter: saturate(.68) contrast(.94) brightness(.88);
  }

  .hero-backdrop-shade {
    background:
      linear-gradient(to bottom, rgba(245, 243, 238, .96) 0%, rgba(245, 243, 238, .86) 38%, rgba(245, 243, 238, .65) 70%, rgba(245, 243, 238, .84) 100%),
      linear-gradient(90deg, rgba(245, 243, 238, .78), rgba(245, 243, 238, .48));
  }

  .hero-lead,
  .hero-meta {
    color: var(--muted);
  }

  .hero-portrait {
    width: min(76%, 320px);
  }

  .portrait-frame {
    border-radius: 14px;
  }

  .brand-list {
    gap: 10px;
    border: 0;
    background: transparent;
  }

  .brand-item,
  .brand-item + .brand-item {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .32);
  }

  .service-card,
  .service-card + .service-card {
    min-height: 190px;
    padding: 24px 0;
    border-left: 0;
  }

  .service-number {
    margin-bottom: 34px;
  }

  .process-list li,
  .process-list li + li {
    min-height: 175px;
    padding: 21px;
    border-radius: 9px;
  }

  .award-card {
    border-radius: 14px;
  }

  .tool-card {
    border-radius: 10px;
  }

  .assistant-panel {
    border-radius: 10px;
  }
}

/* v112 — kontrollü mikro dokunuşlar */
.process {
  background: #182746;
}

.process-head {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  padding-bottom: 30px;
}

.process-list li {
  border-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .025);
}

.process-list li:hover {
  border-color: rgba(170, 181, 204, .42);
  background: rgba(255, 255, 255, .05);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  flex: 0 0 22px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}

.hero .eyebrow::before,
.award .eyebrow::before {
  display: none;
}

.project-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(8, 12, 22, .24), transparent);
  pointer-events: none;
}

.project-play {
  z-index: 1;
}

.timeline-card {
  box-shadow: inset 3px 0 0 transparent;
}

.timeline-card:hover {
  box-shadow: inset 3px 0 0 var(--accent);
}

.brand-item img {
  transition: transform .25s ease;
}

.brand-item:hover img {
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .process-head {
    padding-bottom: 24px;
  }

  .work {
    overflow: hidden;
  }

  .project-grid {
    display: flex;
    width: calc(100% + 14px);
    gap: 14px;
    padding: 0 14px 8px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .project-grid::-webkit-scrollbar {
    display: none;
  }

  .project-card,
  .project-card:first-child,
  .project-card:nth-child(2):last-child,
  .project-card:nth-child(2):nth-last-child(2),
  .project-card:nth-child(3):last-child,
  .project-card.is-featured {
    flex: 0 0 min(82vw, 320px);
    width: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .project-card.is-vertical .project-media,
  .project-card .project-media {
    aspect-ratio: 4 / 5;
  }

  .project-card.is-horizontal .project-media {
    aspect-ratio: 16 / 10;
  }

  .timeline-card:hover {
    box-shadow: inset 2px 0 0 var(--accent);
  }
}

/* v113 — v111 düzeni, yalnızca üç küçük dokunuş */
.process {
  background: #1f2e50;
}

.process-head {
  padding-bottom: 0;
  border-bottom: 0;
}

.process-list li {
  border-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .035);
}

.process-list li:hover {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .055);
}

.process-list span {
  color: var(--accent-soft);
}

.eyebrow {
  display: block;
}

.eyebrow::before,
.project-media::after {
  display: none;
}

.timeline-card,
.timeline-card:hover {
  box-shadow: none;
}

.brand-item:hover img {
  transform: none;
}

.section-heading h2,
.about h2,
.process h2,
.award h2 {
  text-wrap: balance;
}

.project-card:focus-visible {
  border-color: var(--accent-soft);
}

.award-card {
  border: 1px solid rgba(255, 255, 255, .08);
}

.scroll-cue {
  right: auto;
  bottom: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: max-content;
  transform: translateX(-50%);
  writing-mode: horizontal-tb;
}

.scroll-cue::after {
  width: 1px;
  height: 30px;
  margin-top: 9px;
}

@media (max-width: 760px) {
  .project-grid {
    display: grid;
    width: auto;
    gap: 16px;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .project-card,
  .project-card:first-child,
  .project-card:nth-child(2):last-child,
  .project-card:nth-child(2):nth-last-child(2),
  .project-card:nth-child(3):last-child,
  .project-card.is-featured {
    flex: none;
    width: 100%;
    max-width: none;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .process-head {
    padding-bottom: 0;
  }

  .scroll-cue {
    bottom: 7px;
    display: flex;
    font-size: .56rem;
  }

  .scroll-cue::after {
    height: 18px;
    margin-top: 6px;
  }
}

/* v114 — mobil portfolyo yatay kaydırma */
@media (max-width: 760px) {
  .project-grid {
    display: flex;
    width: calc(100% + 14px);
    gap: 14px;
    padding: 0 14px 8px 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .project-grid::-webkit-scrollbar {
    display: none;
  }

  .project-card,
  .project-card:first-child,
  .project-card:nth-child(2):last-child,
  .project-card:nth-child(2):nth-last-child(2),
  .project-card:nth-child(3):last-child,
  .project-card.is-featured {
    flex: 0 0 min(84vw, 330px);
    width: auto;
    max-width: none;
    margin: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* v108 — daha sade, mobil öncelikli düzen */
.header-inner,
.site-header.is-scrolled .header-inner {
  background: rgba(244, 245, 241, .94);
}

.brand {
  gap: 0;
  font-size: .9rem;
  letter-spacing: -.025em;
}

.brand-mark,
.hero-meta span::before,
.portfolio-note::before,
.assistant-dot {
  display: none;
}

.hero-meta span {
  gap: 0;
}

.portrait-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: .76;
  border: 1px solid rgba(24, 32, 29, .1);
  border-radius: var(--radius-lg);
  background: var(--dark);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.portrait-reel {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .62;
  filter: saturate(.72) contrast(.96) brightness(.72);
}

.portrait-reel-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(17, 24, 21, .12), rgba(17, 24, 21, .52)),
    linear-gradient(to top, rgba(17, 24, 21, .46), transparent 48%);
}

.portrait-stage .portrait-frame {
  position: absolute;
  z-index: 2;
  inset: 15% 8% 7% 22%;
  overflow: hidden;
  aspect-ratio: auto;
  border: 1px solid rgba(251, 252, 248, .42);
  border-radius: 26px;
  background: var(--paper-deep);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .22);
}

.portrait-stage .portrait-frame img {
  filter: none;
}

.work::before,
.process::after {
  display: none;
}

.portfolio-note {
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}

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

.project-card,
.project-card:first-child,
.project-card:nth-child(2):last-child,
.project-card:nth-child(2):nth-last-child(2),
.project-card:nth-child(3):last-child,
.project-card.is-featured {
  display: block;
  grid-column: auto;
  height: auto;
  border-radius: 20px;
  box-shadow: none;
}

.project-card:hover {
  transform: translateY(-3px);
}

.project-card .project-media,
.project-card.is-featured .project-media {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.project-card.is-horizontal .project-media {
  aspect-ratio: 16 / 10;
}

.project-body,
.project-card.is-featured .project-body {
  justify-content: flex-start;
  padding: 18px 18px 20px;
}

.project-body h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
}

.project-kicker {
  margin-bottom: 8px;
}

.project-play {
  right: 14px;
  bottom: 14px;
  width: 44px;
}

.project-index,
.project-body p,
.project-open {
  display: none;
}

.assistant-launcher {
  border-radius: 10px;
  background: var(--ink);
  box-shadow: 0 12px 34px rgba(17, 24, 21, .2);
}

.assistant-panel {
  border-radius: 16px;
}

@media (max-width: 1080px) {
  .main-nav {
    background: var(--paper);
  }

  .main-nav > a::before {
    display: none;
  }

  .main-nav > a {
    gap: 0;
  }

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

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-md: 16px;
    --radius-lg: 22px;
  }

  html {
    scroll-padding-top: 80px;
  }

  .section {
    padding-block: 72px;
  }

  .site-header {
    inset: max(7px, env(safe-area-inset-top)) 0 auto;
  }

  .header-inner,
  .site-header.is-scrolled .header-inner {
    min-height: 56px;
    padding: 5px 6px 5px 15px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(24, 32, 29, .1);
  }

  .brand {
    font-size: .84rem;
  }

  .menu-button {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .main-nav {
    inset: calc(-1 * max(7px, env(safe-area-inset-top))) 0 auto;
    min-height: calc(100svh + max(7px, env(safe-area-inset-top)));
    padding: 96px 20px max(22px, env(safe-area-inset-bottom));
  }

  .main-nav > a {
    min-height: 60px;
    padding: 10px 2px;
    font-size: clamp(1.65rem, 8.5vw, 2.25rem);
  }

  .mobile-nav-foot {
    display: block;
    padding-top: 28px;
    font-size: .76rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: auto;
    padding-top: 106px;
    padding-bottom: 58px;
  }

  .hero-copy {
    display: block;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 13.4vw, 4.2rem);
    line-height: .89;
    letter-spacing: -.065em;
  }

  .hero h1 > * {
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-lead {
    max-width: 34rem;
    margin-top: 24px;
    font-size: .98rem;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 24px;
  }

  .hero-actions .button {
    min-height: 50px;
    padding-inline: 14px;
    font-size: .74rem;
  }

  .hero-meta {
    gap: 7px 16px;
    margin-top: 23px;
    font-size: .7rem;
    line-height: 1.4;
  }

  .hero-portrait {
    order: initial;
    width: 100%;
    margin: 0;
  }

  .portrait-stage {
    aspect-ratio: 5 / 6;
    border-radius: 22px;
  }

  .portrait-stage .portrait-frame {
    inset: 16% 7% 7% 22%;
    border-radius: 18px;
  }

  .section-heading,
  .section-heading-compact,
  .work .section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading h2,
  .about h2,
  .process h2,
  .contact h2,
  .award h2 {
    font-size: clamp(2.1rem, 10vw, 3.25rem);
    line-height: .97;
  }

  .section-note,
  .portfolio-note {
    margin: 16px 0 0;
  }

  .brand-strip {
    padding-block: 58px;
  }

  .brand-list {
    gap: 10px;
    padding-bottom: 2px;
  }

  .brand-item {
    flex-basis: 72%;
    min-height: 112px;
    padding: 22px;
    border-radius: 14px;
  }

  .brand-item img {
    max-width: 155px;
    max-height: 56px;
  }

  .about-copy {
    margin-top: 28px;
  }

  .journey-link {
    padding: 15px 15px 15px 17px;
    border-radius: 14px;
  }

  .journey-link-arrow {
    width: 44px;
    border-radius: 10px;
  }

  .filters {
    position: relative;
    top: auto;
    z-index: 1;
    width: calc(100% + 28px);
    margin: 0 -14px 24px;
    padding: 0 14px 4px;
    background: transparent;
    backdrop-filter: none;
  }

  .filter-button {
    min-height: 44px;
    padding-inline: 15px;
  }

  .project-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .project-card,
  .project-card:first-child,
  .project-card:nth-child(2):last-child,
  .project-card:nth-child(2):nth-last-child(2),
  .project-card:nth-child(3):last-child,
  .project-card.is-featured {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 16px;
  }

  .project-card.is-vertical .project-media,
  .project-card .project-media {
    aspect-ratio: 4 / 5;
  }

  .project-card.is-horizontal .project-media {
    aspect-ratio: 16 / 10;
  }

  .project-body,
  .project-card.is-featured .project-body {
    padding: 15px 15px 17px;
  }

  .project-body h3 {
    font-size: 1.3rem;
  }

  .project-kicker {
    font-size: .66rem;
  }

  .project-play {
    right: 12px;
    bottom: 12px;
    width: 42px;
  }

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

  .service-number {
    margin-bottom: 34px;
  }

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

  .footer-inner {
    gap: 18px;
  }

  .footer-links {
    gap: 14px 18px;
  }

  .assistant-root {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
  }

  .assistant-launcher {
    width: auto;
    min-height: 48px;
    padding: 0 15px;
  }

  .assistant-launcher-label {
    display: inline;
    font-size: .76rem;
  }

  .assistant-panel {
    inset: max(6px, env(safe-area-inset-top)) 6px max(6px, env(safe-area-inset-bottom));
    border-radius: 14px;
  }

  .assistant-head {
    min-height: 64px;
    padding-inline: 14px;
  }

  .assistant-log {
    padding: 14px;
  }

  .assistant-form {
    padding: 10px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: clamp(2.85rem, 13vw, 3.25rem);
  }

  .hero-actions .button {
    padding-inline: 10px;
    font-size: .7rem;
  }

  .portrait-stage {
    aspect-ratio: .88;
  }
}

/* Portfolyo ve çalışma süreci aynı görsel panel zemininin parçalarıdır.
   Dosyadaki eski sürüm yamaları bu eşitliği tekrar bozamaması için kural sonda. */
.work,
.process {
  background: var(--portfolio-process-bg);
}

.featured-answer-card {
  display: grid;
  grid-template-columns: minmax(130px, .38fr) minmax(0, 1.62fr);
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(30px, 5vw, 68px);
  border: 1px solid rgba(31, 46, 80, .13);
  border-radius: clamp(20px, 3vw, 34px);
  background: #fffefa;
  box-shadow: 0 24px 70px rgba(16, 25, 47, .08);
}

.featured-answer-card .eyebrow {
  color: var(--accent);
}

.featured-answer-card h2 {
  max-width: 900px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.featured-answer-card > div > p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

@media (max-width: 760px) {
  .featured-answer-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
