:root {
  --ink: #11120f;
  --paper: #f2f0e9;
  --paper-dark: #e8e5dc;
  --white: #fff;
  --blue: #1648d8;
  --line: rgba(17, 18, 15, .18);
  --pad: clamp(18px, 2.1vw, 38px);
  --header-chrome-h: 42px;
  /* Hero/başlık */
  --display: "Yedikule Display", "Arial Narrow", "Helvetica Neue", sans-serif;
  /* Gövde / UI */
  --sans: "Satoshi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: var(--display);
}

/*
  Yedikule Display = Suisse Intl Condensed Medium.
  Lisanslı Suisse sistemde kuruluysa doğrudan o kullanılır; değilse
  Archivo değişken fontu wdth 75'e kısılarak aynı duruşu verir.
*/
@font-face {
  font-family: "Yedikule Display";
  src: local("Suisse Intl Condensed Medium"),
    local("SuisseIntl-Condensed-Medium"),
    local("Suisse Intl Condensed"),
    url(https://fonts.gstatic.com/s/archivo/v25/k3kQo8UDI-1M0wlSfdnoLg.woff2) format("woff2");
  font-weight: 400 700;
  font-stretch: 75%;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Yedikule Display";
  src: local("Suisse Intl Condensed Medium"),
    local("SuisseIntl-Condensed-Medium"),
    local("Suisse Intl Condensed"),
    url(https://fonts.gstatic.com/s/archivo/v25/k3kQo8UDI-1M0wlSfdfoLnnA.woff2) format("woff2");
  font-weight: 400 700;
  font-stretch: 75%;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--ink);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open,
body.modal-is-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

p,
h1,
h2,
h3,
ol,
ul {
  margin: 0;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

.skip-link {
  position: fixed;
  z-index: 5000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.intro {
  position: fixed;
  z-index: 4000;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  transition: clip-path .9s cubic-bezier(.76, 0, .24, 1);
  clip-path: inset(0);
}

.intro.is-done {
  clip-path: inset(0 0 100%);
}

.intro__line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70vw, 760px);
  height: 1px;
  background: rgba(255, 255, 255, .45);
  transform: translate(-50%, -50%) scaleX(0);
  animation: intro-line .8s .1s cubic-bezier(.76, 0, .24, 1) forwards;
}

.intro__word {
  padding: 0 20px;
  background: var(--ink);
  font-size: 12px;
  letter-spacing: .36em;
  animation: intro-word .7s both;
}

@keyframes intro-line {
  to {
    transform: translate(-50%, -50%) scaleX(1);
  }
}

@keyframes intro-word {
  from {
    opacity: 0;
    letter-spacing: .65em;
  }
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: calc(var(--header-chrome-h) + 36px);
  padding:
    max(18px, env(safe-area-inset-top, 0px)) max(var(--pad), env(safe-area-inset-right, 0px)) 18px max(var(--pad), env(safe-area-inset-left, 0px));
  color: var(--white);
  background: transparent;
  border-bottom: 0;
  pointer-events: none;
}

.site-header>* {
  pointer-events: auto;
}

.site-header--home {
  background: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: min(46vw, 220px);
  text-decoration: none;
}

.brand img {
  display: block;
  width: auto;
  height: calc(var(--header-chrome-h) - 6px);
  max-width: min(46vw, 220px);
  filter: none;
}

.site-header__note {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.header-link,
.menu-button {
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-link {
  padding: 10px 0;
}

.header-link sup {
  margin-left: 4px;
  color: rgba(255, 255, 255, .58);
}

/* Base menu-button chrome */
.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 0;
}

.menu-panel {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100dvh;
  padding: 18px var(--pad) 28px;
  color: var(--white);
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .75s cubic-bezier(.76, 0, .24, 1), opacity .35s, visibility .75s;
}

.menu-panel.is-open {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0);
}

.menu-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
}

.menu-close {
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menu-close span {
  display: inline-block;
  margin-left: 8px;
  font-size: 25px;
  font-weight: 200;
  vertical-align: -2px;
}

.menu-panel__spacer {
  display: none;
}

.menu-nav {
  display: flex;
  align-items: center;
  padding: clamp(30px, 7vh, 90px) 0;
}

.menu-nav ol {
  width: 100%;
  list-style: none;
  padding: 0;
}

.menu-nav li {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .17);
  transform: translateY(45px);
  opacity: 0;
  transition: opacity .55s calc(.15s + var(--i) * .07s), transform .7s calc(.15s + var(--i) * .07s);
}

.menu-nav li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.menu-panel.is-open .menu-nav li {
  opacity: 1;
  transform: none;
}

.menu-nav a {
  display: flex;
  align-items: baseline;
  gap: clamp(18px, 3vw, 50px);
  padding: clamp(7px, 1.2vh, 15px) 0;
  font-family: var(--display);
  font-size: clamp(31px, 5.6vw, 84px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.04em;
  text-transform: uppercase;
  transition: opacity .35s, padding-left .45s cubic-bezier(.22, 1, .36, 1);
}

.menu-nav a span {
  width: 28px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .12em;
  opacity: .52;
}

.menu-nav ol:has(a:hover) a:not(:hover) {
  opacity: .18;
}

.menu-nav a:hover {
  padding-left: 18px;
}

.menu-panel__foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  font-size: 12px;
  color: rgba(255, 255, 255, .62);
}

.menu-panel__foot>div {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.menu-panel__foot a:hover {
  color: var(--white);
}

.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #000;
}

.home-page .site-footer,
.home-page .whatsapp {
  display: none;
}

.home-hero__slides,
.home-hero__slide,
.home-hero__shade {
  position: absolute;
  inset: 0;
}

.home-hero__slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: none;
  transform-origin: center center;
  will-change: opacity;
  transition: opacity 1.4s ease;
}

.home-hero__slide picture,
.home-hero__picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home-hero__slide picture img,
.home-hero__picture img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  max-height: none !important;
}

.home-hero__slide.is-active {
  opacity: 1;
  animation: none;
}

@keyframes hero-cover-zoom {
  from {
    transform: none;
  }

  to {
    transform: none;
  }
}

.home-hero__shade {
  background: linear-gradient(180deg, rgba(0, 0, 0, .54) 0%, rgba(0, 0, 0, .05) 38%, rgba(0, 0, 0, .56) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  min-height: 100svh;
  min-height: 100dvh;
  padding:
    max(120px, calc(env(safe-area-inset-top, 0px) + 96px)) max(var(--pad), env(safe-area-inset-right, 0px)) max(28px, env(safe-area-inset-bottom, 0px)) max(var(--pad), env(safe-area-inset-left, 0px));
}

.home-hero__side {
  position: static;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 1;
}

.home-hero__side--right {
  right: auto;
  left: auto;
  text-align: right;
}

.home-hero__side:not(.home-hero__side--right) {
  left: auto;
}

.home-hero__title {
  text-align: center;
  max-width: none;
}

.home-hero__title p {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: 1;
}

.home-hero__title h1 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(62px, 11.5vw, 178px);
  font-weight: 400;
  line-height: .76;
  letter-spacing: -.065em;
  text-transform: none;
  text-shadow: none;
}

.home-hero__title h1 span {
  display: block;
  margin-top: 0;
  font-size: .44em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1;
  opacity: 1;
  text-transform: none;
}

.home-scroll {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: translate(45%, 50%) rotate(90deg);
}

.home-scroll::after {
  width: 56px;
  height: 1px;
  content: "";
  background: currentColor;
}

.page-hero {
  padding: clamp(96px, 11vh, 128px) clamp(16px, 3vw, 40px) clamp(36px, 5vw, 56px);
  box-sizing: border-box;
  border-bottom: 1px solid var(--line);
  text-align: center;
  background: #fff;
}

.page-hero__eyebrow {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 500;
  letter-spacing: .02em;
  color: #1d1d1d;
}

.page-hero h1 {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 120px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.05em;
  text-transform: uppercase;
  color: #1d1d1d;
}

.page-hero__bottom {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0;
  margin-top: clamp(16px, 3vw, 28px);
}

.page-hero__bottom p {
  max-width: 560px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.4;
  color: rgba(29, 29, 29, .65);
}

.page-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.page-tabs a {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-tabs a.is-active,
.page-tabs a:hover {
  color: var(--white);
  background: var(--ink);
}

.projects-section {
  padding: var(--pad);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(13, minmax(0, 1fr));
  gap: 44px 13px;
  align-items: start;
}

.project-card {
  min-width: 0;
}

.project-card__media {
  position: relative;
  overflow: hidden;
  background: #cfcbc2;
}

.project-card__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.project-card__media img,
.project-card__media picture img,
.project-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card__media video {
  position: absolute;
  inset: 0;
}

.project-card.is-expanding-source .project-card__media img {
  opacity: 0;
}

.project-card__index,
.project-card__arrow {
  position: absolute;
  top: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  color: var(--white);
  background: rgba(17, 18, 15, .72);
  border-radius: 50%;
  font-size: 10px;
  backdrop-filter: blur(8px);
}

.project-card__index {
  left: 16px;
}

.project-card__arrow {
  right: 16px;
  font-size: 17px;
  transform: scale(0);
  transition: transform .35s ease;
}

.project-card__link:hover .project-card__arrow {
  transform: scale(1);
}

.project-card__meta,
body.home-page .home-projects__track .project-card__meta,
body:not(.home-page) .project-card__meta {
  display: none !important;
}

.project-card__meta h2 {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.03em;
}

.project-card__meta p,
.project-card__meta span {
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.project-card__meta p {
  grid-column: 1;
  color: rgba(17, 18, 15, .58);
}

.project-card__meta span {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.empty-state {
  padding: 80px 0 140px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 62px);
  font-weight: 500;
  color: rgba(17, 18, 15, .38);
}

.project-hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  min-height: 100dvh;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: #000;
}

.project-hero picture,
.project-hero__picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.project-hero picture img,
.project-hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none !important;
  transform-origin: center center;
  animation: none !important;
}

.project-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, .54) 0%, rgba(0, 0, 0, .05) 38%, rgba(0, 0, 0, .56) 100%);
  opacity: 1;
  transition: opacity 1.35s ease;
  pointer-events: none;
}

.project-hero__content {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding: clamp(80px, 10vh, 120px) clamp(16px, 4vw, 48px) clamp(28px, 4vh, 48px);
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
}

.project-hero__titles {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.project-hero__kicker {
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .78;
}

.project-hero__content h1 {
  font-family: var(--display);
  font-size: clamp(56px, 8.3vw, 148px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.068em;
  text-transform: none;
  overflow: visible;
}

.project-hero__word,
.yk-project-flight__word {
  display: inline-flex !important;
  height: auto !important;
  overflow: visible !important;
  vertical-align: baseline !important;
}

.project-hero__letter,
.yk-project-flight__letter {
  display: inline-block !important;
  line-height: 1 !important;
  vertical-align: baseline !important;
}

.project-hero__place {
  margin-top: 14px;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 400;
  letter-spacing: -.01em;
  opacity: .9;
}

.project-hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(0, 0, 0, .22);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease;
}

.project-hero__scroll:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .8);
}

body.project-detail-page.is-hero-ready .project-hero::after {
  opacity: 1;
}

body.project-detail-page.is-hero-ready .project-hero__content {
  opacity: 1;
  transform: none;
  transition: opacity 1.15s ease .25s, transform 1.25s cubic-bezier(.22, 1, .36, 1) .25s;
}

body.project-detail-page.is-hero-ready .site-header {
  opacity: 1;
  transition: opacity .9s ease .15s, color .35s ease;
}

body.project-detail-page:not(.is-hero-ready) .site-header {
  opacity: 1;
}

.project-hero__meta {
  display: none;
}

.project-intro {
  display: grid;
  grid-template-columns: minmax(100px, .28fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(48px, 6vw, 88px) var(--pad);
  background: #fff;
}

.project-intro__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.project-intro__lead,
.project-intro__copy>p:first-child {
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.project-intro__copy .prose {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(17, 18, 15, .74);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
}

.prose p+p,
.prose h2,
.prose h3 {
  margin-top: 1.25em;
}

.project-gallery {
  padding: clamp(20px, 3vw, 40px) 0 clamp(64px, 8vw, 120px);
  background: #fff;
  overflow: visible;
}

.project-gallery__head {
  display: none;
}

.gallery-flow {
  display: grid;
  gap: clamp(36px, 6vw, 88px);
  padding: 0;
  perspective: 1600px;
}

.gallery-row {
  display: grid;
  gap: 0;
  padding: 0;
  justify-items: stretch;
  width: 100%;
}

/* Full-bleed — edge to edge */
.gallery-row--bleed {
  padding: 0;
}

.gallery-row--bleed .gallery-frame {
  width: 100%;
  max-width: none;
  border-radius: 0;
}

/* Large centered inset — still immersive, not a stamp */
.gallery-row--stage {
  padding: 0 clamp(16px, 3.5vw, 48px);
  justify-items: center;
}

.gallery-row--stage .gallery-frame {
  width: 100%;
  max-width: min(94vw, 1520px);
  border-radius: 0;
}

/* Slightly narrower offset — still large */
.gallery-row--offset {
  padding: 0 clamp(16px, 4vw, 56px);
  justify-items: end;
}

.gallery-row--offset:nth-child(even) {
  justify-items: start;
}

.gallery-row--offset .gallery-frame {
  width: min(92vw, 1380px);
  max-width: 100%;
  border-radius: 0;
}

/* Plan grid — fills width, no empty right void */
.gallery-row--plans {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
  padding: 0 clamp(16px, 3vw, 40px);
  width: 100%;
  justify-items: stretch;
}

.gallery-row--plans .gallery-frame {
  width: 100%;
  aspect-ratio: 1;
  background: #f0eee8;
}

.gallery-row--plans .gallery-frame__media,
.gallery-row--plans .gallery-frame img {
  height: 100%;
  object-fit: cover;
}

.gallery-row--plans .gallery-frame__num {
  font-size: 10px;
  left: 10px;
  bottom: 10px;
}

@media (max-width: 1100px) {
  .gallery-row--plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .gallery-row--plans {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

/* Legacy strip alias */
.gallery-row--strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
  padding: 0 clamp(16px, 3vw, 40px);
}

.gallery-row--strip .gallery-frame {
  flex: none;
  width: 100%;
  aspect-ratio: 1;
}

/* Frames — scroll FX applied per data-fx (JS) */
.gallery-frame {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #e4e1d8;
  cursor: zoom-in;
  isolation: isolate;
  border-radius: 0;
  opacity: 1;
  transform-origin: center center;
  transform-style: preserve-3d;
  will-change: transform, opacity, clip-path;
  backface-visibility: hidden;
}

.gallery-frame__media {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: none;
  opacity: 1;
  will-change: transform, clip-path;
}

.gallery-frame img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
}

.gallery-frame--fx-expand {
  justify-self: center;
  max-width: 100%;
}

.gallery-frame__num {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  padding: 0;
  color: var(--white);
  background: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .4);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}

.gallery-frame.is-grown .gallery-frame__num {
  opacity: .92;
  transform: none;
}

/* Intro + sections float in */
.project-intro,
.interior-explorer,
.project-actions {
  will-change: transform, opacity;
}

.project-hero>img {
  will-change: transform;
}

.tour-section {
  padding: clamp(75px, 10vw, 150px) var(--pad);
  color: var(--white);
  background: var(--ink);
}

.tour-section__head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 90px);
}

.tour-section__head p {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.tour-section__head h2 {
  max-width: 12ch;
  font-family: var(--display);
  font-size: clamp(47px, 7.7vw, 118px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(230px, .55fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.tour-plan {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.tour-plan>img {
  width: 100%;
}

.tour-hotspot {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: var(--white);
  background: var(--blue);
  border: 4px solid rgba(255, 255, 255, .86);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(22, 72, 216, .5);
  animation: pulse 2.2s infinite;
}

.tour-hotspot span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  width: max-content;
  max-width: 150px;
  padding: 6px 8px;
  color: var(--ink);
  background: var(--white);
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 5px);
  transition: opacity .25s, transform .25s;
}

.tour-hotspot:hover span,
.tour-hotspot:focus span {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 13px rgba(22, 72, 216, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(22, 72, 216, 0);
  }
}

.tour-list {
  list-style: none;
  padding: 0;
  counter-reset: rooms;
  border-top: 1px solid rgba(255, 255, 255, .23);
}

.tour-list li {
  counter-increment: rooms;
  border-bottom: 1px solid rgba(255, 255, 255, .23);
}

.tour-list button {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  color: rgba(255, 255, 255, .68);
  text-align: left;
  transition: color .25s, padding-left .25s;
}

.tour-list button::before {
  content: counter(rooms, decimal-leading-zero);
  font-size: 9px;
}

.tour-list button::after {
  content: "↗";
}

.tour-list button:hover {
  padding-left: 7px;
  color: var(--white);
}

.project-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.project-action {
  min-height: clamp(240px, 35vw, 520px);
  padding: var(--pad);
  border-right: 1px solid var(--line);
}

.project-action:last-child {
  border-right: 0;
}

.project-action__label {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.project-action h2 {
  max-width: 9ch;
  margin-top: clamp(35px, 7vw, 100px);
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 108px);
  font-weight: 500;
  line-height: .85;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.project-action:hover h2 {
  font-style: normal;
  opacity: .72;
}

.project-action--image {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.project-action--image img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.22, 1, .36, 1);
}

.project-action--image::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, .42);
}

.project-action--image:hover img {
  transform: scale(1.04);
}

.modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 30px);
  background: rgba(10, 10, 9, .94);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  height: min(850px, calc(100dvh - 40px));
  overflow: hidden;
  background: #171815;
}

.tour-modal__preview {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: brightness(.48);
}

.tour-modal iframe {
  position: relative;
  width: 100%;
  height: 100%;
  border: 0;
}

.modal__bar {
  position: absolute;
  z-index: 3;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  color: var(--white);
  background: linear-gradient(rgba(0, 0, 0, .72), transparent);
}

.modal__bar strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
}

.modal__bar div {
  display: flex;
  gap: 8px;
}

.modal__bar a,
.modal__bar button {
  padding: 9px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .55);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.viewer__dialog {
  display: grid;
  grid-template-rows: 1fr auto;
  max-width: 1400px;
  max-height: calc(100dvh - 30px);
}

.viewer__dialog img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.viewer__caption {
  padding: 12px 50px 12px 16px;
  color: var(--white);
  font-size: 11px;
}

.viewer__close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: rgba(0, 0, 0, .65);
  border-radius: 50%;
  font-size: 25px;
}

.editorial-page {
  padding: clamp(75px, 10vw, 150px) var(--pad);
}

.editorial-lead {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(35px, 8vw, 130px);
  padding-bottom: clamp(80px, 13vw, 190px);
}

.editorial-lead__label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.editorial-lead__copy {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.04em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-card {
  min-height: 320px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-card span {
  font-size: 10px;
  letter-spacing: .14em;
}

.value-card h2 {
  margin-top: 70px;
  font-family: var(--display);
  font-size: clamp(31px, 3.4vw, 54px);
  font-weight: 500;
}

.value-card p {
  max-width: 35ch;
  margin-top: 18px;
  color: rgba(17, 18, 15, .65);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(45px, 9vw, 150px);
  padding: clamp(65px, 10vw, 150px) var(--pad);
}

.contact-list {
  border-top: 1px solid var(--line);
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 25px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row span {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-row a,
.contact-row p {
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.15;
}

.contact-map {
  min-height: 560px;
  overflow: hidden;
  background: var(--paper-dark);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: grayscale(1);
}

.site-footer {
  padding: 0;
  color: var(--white);
  background: var(--ink);
}

.site-footer__cta {
  position: relative;
  display: block;
  min-height: clamp(520px, 88vh, 980px);
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
}

.site-footer__cta-media {
  position: absolute;
  inset: 0;
}

.site-footer__cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
  transition: transform 1.8s cubic-bezier(.22, 1, .36, 1), filter 1.2s ease;
}

.site-footer__cta-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, .18) 0%, rgba(8, 8, 7, .42) 42%, rgba(8, 8, 7, .78) 100%),
    linear-gradient(90deg, rgba(8, 8, 7, .28) 0%, rgba(8, 8, 7, .08) 55%, rgba(8, 8, 7, .34) 100%);
  transition: opacity .8s ease;
}

.site-footer__cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: inherit;
  padding: clamp(72px, 11vh, 150px) clamp(18px, 2.1vw, 38px) clamp(42px, 7vh, 96px);
}

.site-footer__cta-eyebrow {
  align-self: start;
  max-width: 18ch;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}

.site-footer__cta-title {
  display: grid;
  gap: clamp(2px, .35vw, 8px);
  width: 100%;
  max-width: none;
}

.site-footer__cta-line {
  display: block;
  font-family: var(--display);
  font-size: clamp(52px, 9.2vw, 168px);
  font-weight: 500;
  line-height: .84;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.site-footer__cta-line--last em {
  display: inline-block;
  margin-left: clamp(8px, 1.2vw, 22px);
  font-family: var(--sans);
  font-size: .34em;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  vertical-align: super;
  transform: translateY(-.08em);
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.site-footer__cta:hover .site-footer__cta-media img {
  transform: scale(1.07);
  filter: brightness(.88);
}

.site-footer__cta:hover .site-footer__cta-scrim {
  opacity: .92;
}

.site-footer__cta:hover .site-footer__cta-line--last em {
  transform: translate(.12em, -.18em);
}

.site-footer__base {
  padding: clamp(42px, 6vw, 72px) var(--pad) 25px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 0 0 25px;
  border-top: 0;
}

.site-footer__grid nav,
.site-footer__contact {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 7px;
  font-size: 12px;
}

.site-footer a:hover {
  opacity: .58;
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .42);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.whatsapp {
  position: fixed;
  z-index: 110;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: #1f8c58;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .22);
}

.error-page {
  display: grid;
  place-items: center;
  min-height: 70svh;
  padding: var(--pad);
  text-align: center;
}

.error-page h1 {
  font-family: var(--display);
  font-size: clamp(72px, 15vw, 220px);
  font-weight: 500;
  line-height: .8;
}

.error-page p {
  margin: 25px 0;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(48px) scale(0.98);
  transition: opacity .95s cubic-bezier(.22, 1, .36, 1), transform 1.1s cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.project-card__link:hover .project-card__media img {
  transform: scale(1.06);
  filter: brightness(.9);
}

.scene-stage {
  transform: scale(0.94);
  transition: transform 1s cubic-bezier(.22, 1, .36, 1);
}

.interior-explorer.is-visible .scene-stage,
.interior-explorer:not(.reveal) .scene-stage {
  transform: none;
}

@media (max-width: 900px) {
  :root {
    --header-chrome-h: 40px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    min-height: calc(var(--header-chrome-h) + 28px);
    padding-top: max(14px, env(safe-area-inset-top, 0px));
    padding-bottom: 14px;
  }

  .site-header__spacer,
  .site-header__note,
  .header-link {
    display: none;
  }

  .site-header .site-header__actions {
    gap: 8px;
  }

  .site-header--project {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    max-width: min(56vw, 220px);
  }

  .brand img {
    height: 38px;
    max-width: min(56vw, 220px);
  }

  .menu-panel__foot,
  .home-hero__content,
  .page-hero__bottom,
  .project-intro,
  .tour-section__head,
  .editorial-lead {
    grid-template-columns: 1fr;
  }

  .menu-panel__foot>div {
    justify-content: flex-start;
  }

  .home-hero__content {
    align-content: end;
    justify-items: center;
    padding-bottom: max(36px, env(safe-area-inset-bottom, 0px));
  }

  .home-hero__side {
    display: none;
  }

  .home-hero__title {
    width: 100%;
    text-align: center;
  }

  .home-hero__title p {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: .24em;
  }

  .home-hero__title h1 {
    font-size: clamp(68px, 20vw, 130px);
  }

  .page-tabs {
    justify-content: flex-start;
  }

  .tour-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .tour-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tour-list li:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .23);
  }

  .tour-list button {
    padding-right: 12px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: auto;
  }

  .value-card h2 {
    margin-top: 45px;
  }

  .site-footer__cta {
    min-height: clamp(460px, 78vh, 760px);
  }

  .site-footer__cta-content {
    padding-top: 72px;
    padding-bottom: 36px;
  }

  .site-footer__cta-line {
    font-size: clamp(42px, 12vw, 88px);
    line-height: .86;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__grid .brand {
    grid-column: span 2;
    margin-bottom: 30px;
  }
}

@media (max-width: 640px) {
  .menu-nav a {
    gap: 10px;
    font-size: clamp(30px, 10vw, 48px);
  }

  .menu-nav a span {
    width: 22px;
  }

  .menu-panel__foot {
    display: none;
  }

  .home-hero__content {
    padding-top: max(84px, calc(env(safe-area-inset-top, 0px) + 68px));
    padding-inline: 20px;
    padding-bottom: max(32px, env(safe-area-inset-bottom, 0px));
  }

  .home-hero__title p {
    font-size: 9px;
    letter-spacing: .22em;
    margin-bottom: 12px;
  }

  .home-hero__title h1 {
    font-size: clamp(64px, 21vw, 108px);
    line-height: .78;
  }

  .home-scroll {
    display: none;
  }

  .page-hero {
    padding-top: 80px;
  }

  .page-hero h1 {
    font-size: clamp(54px, 18vw, 95px);
  }

  .page-tabs {
    flex-wrap: wrap;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .project-hero {
    min-height: 100svh;
  }

  .project-hero__content {
    padding-bottom: 28px;
    gap: 18px;
  }

  .project-hero__content h1 {
    font-size: clamp(44px, 13vw, 80px);
  }

  .project-hero__place {
    font-size: 14px;
  }

  .project-intro {
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 12px;
  }

  .gallery-row--stage .gallery-frame,
  .gallery-row--offset .gallery-frame {
    width: 100%;
    justify-self: stretch;
  }

  .gallery-row--offset {
    justify-items: stretch;
  }

  .gallery-row--strip .gallery-frame {
    flex-basis: clamp(96px, 28vw, 140px);
    width: clamp(96px, 28vw, 140px);
  }

  .gallery-frame__num {
    opacity: .9;
  }

  .tour-hotspot {
    width: 23px;
    height: 23px;
    border-width: 3px;
  }

  .tour-hotspot span {
    display: none;
  }

  .tour-list {
    grid-template-columns: 1fr;
  }

  .tour-list li:nth-child(odd) {
    border-right: 0;
  }

  .project-actions {
    grid-template-columns: 1fr;
  }

  .project-action {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-action h2 {
    margin-top: 55px;
  }

  .modal {
    padding: 0;
  }

  .modal__dialog {
    height: 100dvh;
  }

  .modal__bar strong {
    font-size: 18px;
  }

  .modal__bar a {
    display: none;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 420px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid .brand {
    grid-column: auto;
  }

  .site-footer__legal {
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .gallery-frame__media {
    transform: none !important;
    clip-path: none !important;
    opacity: 1 !important;
  }

  .gallery-frame {
    transform: none !important;
  }

  .gallery-frame img {
    transform: none !important;
  }

  .home-hero__slide.is-active,
  .project-hero>img {
    animation: none !important;
    transform: none !important;
  }
}

/* Seamless project expand transition */
.page-expand-image {
  position: fixed;
  z-index: 110;
  margin: 0;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  will-change: top, left, width, height, opacity;
  background: #000;
}

.page-expand-image.is-done {
  opacity: 0;
}

.page-expand-bridge {
  position: fixed;
  z-index: 110;
  inset: 0;
  margin: 0;
  background-color: #000;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1.05s cubic-bezier(.22, 1, .36, 1);
}

.page-expand-bridge.is-done {
  opacity: 0;
}

html.yk-bridging,
html.yk-bridging body {
  background: #000 !important;
}

/* Expand sırasında sadece clone görünsün — arkada full hero yok */
html.yk-bridging .project-hero>img {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: none !important;
  animation: none !important;
}

html.yk-bridging.is-expand-settled .project-hero>img {
  opacity: 1 !important;
  visibility: visible !important;
}

html.yk-bridging,
html.yk-bridging body,
body.is-page-expanding {
  overflow: hidden !important;
  overscroll-behavior: none;
  background: #000;
}

html.yk-bridging .project-hero::after,
html.yk-bridging .project-hero__content,
html.yk-bridging .whatsapp,
html.yk-bridging .site-footer,
html.yk-bridging .project-intro,
html.yk-bridging .interior-explorer,
html.yk-bridging .project-gallery,
html.yk-bridging .project-next {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: none !important;
}

body.is-page-expanding .whatsapp,
body.is-page-expanding .site-footer,
body.is-page-expanding .projects-index,
body.is-page-expanding .projects-section,
body.is-page-expanding .project-intro,
body.is-page-expanding .interior-explorer,
body.is-page-expanding .project-gallery,
body.is-page-expanding .project-next {
  opacity: 0;
  transition: opacity .15s;
}

body.is-page-expanding .project-card.is-expanding-source .project-card__media img {
  opacity: 0;
}