@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope-lat.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope-latx.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF;
}

@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-lat.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF;
}

@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-latx.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF;
}

@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-italic-lat.woff2") format("woff2");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF;
}

@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-italic-latx.woff2") format("woff2");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF;
}

:root {
  --murekkep: #0e0d0b;
  --kagit: #f4f1ea;
  --bronz: #b07c5e;
  --bronz-acik: #cba07f;
  --gri: #8c8980;
  --cizgi: rgba(14, 13, 11, .14);
  --font-grotesk: "Manrope", system-ui, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --nav-h: 72px;
  --pad-x: clamp(18px, 4vw, 64px);
  --radius: 8px;
}

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

html {
  min-width: 320px;
  color: var(--murekkep);
  background: var(--kagit);
  font-family: var(--font-grotesk);
  scroll-behavior: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Editoryal tipo cilası: Fraunces opsz ekseni optik boyutlanır, kerning + standart
     ligatürler açık (kahraman-tipografi kimliğinde harf uyumu/ritmi keskinleşir). */
  font-optical-sizing: auto;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures contextual;
}

html.intro-active {
  overflow: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background: var(--kagit);
}

body.menu-open {
  overflow: hidden;
}

img {
  --image-opacity: 1;
  --image-filter: none;
  display: block;
  max-width: 100%;
  height: auto;
}

img.img-load {
  opacity: 0;
  filter: blur(10px);
  transition: opacity .65s ease, filter .65s ease, transform .28s ease;
}

img.img-load.is-loaded {
  opacity: var(--image-opacity);
  filter: var(--image-filter);
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  color: var(--kagit);
  background: var(--murekkep);
  clip-path: inset(0 0 0 0);
}

.intro__inner {
  width: min(72vw, 840px);
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  justify-items: center;
}

.intro__wordmark {
  font-family: var(--font-grotesk);
  font-size: clamp(4rem, 16vw, 12rem);
  font-weight: 900;
  line-height: .78;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.intro__track {
  width: min(58vw, 520px);
  height: 2px;
  overflow: hidden;
  background: rgba(244, 241, 234, .18);
}

#intro-bar {
  display: block;
  width: 0;
  height: 100%;
  background: var(--bronz-acik);
}

.intro__count {
  position: absolute;
  right: var(--pad-x);
  bottom: clamp(18px, 4vw, 42px);
  color: rgba(244, 241, 234, .72);
  font-size: clamp(.9rem, 1.6vw, 1.35rem);
  font-weight: 800;
  letter-spacing: .08em;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--bronz-acik);
  outline-offset: 4px;
}

::selection {
  color: var(--murekkep);
  background: var(--bronz-acik);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--murekkep);
  background: var(--kagit);
  border: 1px solid var(--bronz);
  border-radius: var(--radius);
  transition: transform .2s ease;
}

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

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  color: var(--kagit);
  background: rgba(14, 13, 11, 0);
  border-bottom: 1px solid rgba(244, 241, 234, .12);
  transition: background .25s ease, border-color .25s ease, height .25s ease;
}

.site-nav.is-scrolled,
.site-nav.is-open {
  height: 64px;
  background: rgba(14, 13, 11, .94);
  border-bottom-color: rgba(203, 160, 127, .28);
  backdrop-filter: blur(12px);
}

.wordmark,
.footer-wordmark {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .08em;
  transition: color .22s ease;
}

.wordmark::after,
.footer-wordmark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  transform: scaleX(.34);
  transform-origin: left;
  background: var(--bronz);
  transition: transform .2s ease;
}

.wordmark:hover::after,
.footer-wordmark:hover::after {
  transform: scaleX(1);
}

.menu-button,
.menu-close {
  border: 1px solid rgba(244, 241, 234, .3);
  background: transparent;
  cursor: pointer;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 9px 13px;
  border-radius: var(--radius);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  transition: border-color .24s ease, background .24s ease, color .24s ease, box-shadow .24s ease;
}

.menu-button:hover {
  border-color: rgba(203, 160, 127, .78);
  background: rgba(203, 160, 127, .1);
  box-shadow: 0 0 0 1px rgba(203, 160, 127, .18);
}

.menu-button__mark {
  position: relative;
  width: 24px;
  height: 10px;
}

.menu-button__mark::before,
.menu-button__mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease;
}

.menu-button__mark::before {
  top: 0;
}

.menu-button__mark::after {
  bottom: 0;
}

.menu-button[aria-expanded="true"] .menu-button__mark::before {
  transform: translateY(4px) rotate(18deg);
}

.menu-button[aria-expanded="true"] .menu-button__mark::after {
  transform: translateY(-4px) rotate(-18deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  align-items: center;
  padding: calc(var(--nav-h) + 16px) var(--pad-x) 42px;
  color: var(--kagit);
  background: var(--murekkep);
  overflow: hidden;
}

.menu-overlay[hidden] {
  display: none;
}

.menu-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image: url("../assets/img/arkaplan-menu.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.2);
}

.menu-overlay__marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8vh;
  opacity: .12;
  color: var(--bronz-acik);
  font-size: clamp(4rem, 13vw, 14rem);
  font-weight: 900;
  line-height: .9;
  white-space: nowrap;
}

.menu-close {
  position: absolute;
  top: 22px;
  right: var(--pad-x);
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--kagit);
  font-size: 2rem;
  line-height: 1;
}

.overlay-nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(12px, 1.5vw, 20px);
  width: min(100%, 1100px);
}

.overlay-nav a {
  display: block;
  width: max-content;
  max-width: 100%;
  color: var(--kagit);
  font-size: clamp(2.6rem, 9vw, 8rem);
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  transition: color .2s ease, transform .2s ease;
}

.overlay-nav a:hover,
.overlay-nav a:focus-visible {
  color: var(--bronz-acik);
  transform: translateX(.16em);
}

.section {
  position: relative;
  padding: clamp(92px, 12vw, 168px) var(--pad-x);
  overflow: clip;
}

.section--dark {
  color: var(--kagit);
  background: var(--murekkep);
}

.section--light {
  color: var(--murekkep);
  background: var(--kagit);
}

.section-kicker,
.eyebrow,
.project-card span,
.blog-card span,
.socket-copy span {
  color: var(--bronz);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  /* blog tarihleri (10.11.2025) eş-genişlik rakamla hizalı; rakamsız kicker'da etkisiz. */
  font-variant-numeric: tabular-nums;
}

.section-kicker {
  margin-bottom: 20px;
  font-size: clamp(1.1rem, 2vw, 1.75rem);
}

.section-heading,
.manifesto__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 420px);
  gap: clamp(24px, 5vw, 78px);
  align-items: end;
  margin-bottom: clamp(38px, 7vw, 82px);
}

.section-heading p,
.manifesto__intro p,
.hero-anchor,
.contact-copy > p {
  margin: 0;
  max-width: 46ch;
  color: currentColor;
  opacity: .72;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  /* yetim/dul satırı önle: son satırda tek kelime kalmasın (editoryal okunabilirlik). */
  text-wrap: pretty;
}

.section-title,
.contact-title {
  margin: 0;
  max-width: 12ch;
  /* 10vw/12rem → 6.4vw/6.6rem: eski boyut hero'dan (132px) BÜYÜKtü (bozuk hiyerarşi) +
     en uzun kelime "PRENSİPLERİMİZ"(14h)/"TASARLAYALIM"(12h) kolonu taşıp yandaki
     paragraf/forma biniyordu. Bu boyutta 2-kolon (≥1181) düzende çakışma yok. */
  font-size: clamp(2.3rem, 6.4vw, 6.6rem);
  font-weight: 900;
  /* .96 (was .9): tek-karakter reveal maskesi (.kc{overflow:hidden}) sıkı satırlarda
     komşu satırın Ç/Ş kuyruğunu + üst aksanları ince dilime kırpıyordu; .96 nefes verir. */
  line-height: .96;
  letter-spacing: -.03em;
  text-transform: uppercase;
  /* dengeli rag: satırlar eşit uzunlukta dağılır, yetim son-satır olmaz (editoryal). */
  text-wrap: balance;
  /* normal (was anywhere): kelime ortasından kırmayı engelle — kelimeler .kw ile
     bütün kalır, kırılma yalnız boşlukta olur. */
  overflow-wrap: normal;
  word-break: keep-all;
}

.hero {
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + clamp(44px, 9vw, 110px));
  padding-bottom: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 28vw);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  min-height: calc(100svh - var(--nav-h) - 120px);
}

.hero__copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: clamp(.9rem, 1.2vw, 1.15rem);
}

.hero-title {
  margin: 0;
  max-width: 12ch;
  /* clamp düşürüldü (14rem→10.5rem): kelimeler artık .kw ile bütün; en uzun kelime
     ("MEKÂNLARIN") kolon genişliğine sığsın, yatay taşma/kelime-ortası kırılma olmasın. */
  font-size: clamp(2.7rem, 9.2vw, 10.5rem);
  font-weight: 900;
  /* .9 (was .86): hero chars-split'te Â/İ üst aksanlarına maske kırpmadan yer açar. */
  line-height: .9;
  letter-spacing: -.035em;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: keep-all;
}

.hero-title > span {
  display: block;
}

.hero-title em {
  color: var(--bronz-acik);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 800;
  text-transform: lowercase;
}

.hero-subtitle {
  margin: 28px 0 12px;
  color: var(--bronz-acik);
  font-size: clamp(1rem, 2.4vw, 2.1rem);
  font-weight: 900;
  line-height: 1;
}

.hero__image {
  position: relative;
  margin: 0 0 8vh;
  border: 1px solid var(--bronz);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(244, 241, 234, .06);
}

.hero__image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 46%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(14, 13, 11, .56), rgba(14, 13, 11, 0));
}

.hero__image img {
  aspect-ratio: 1580 / 950;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.hero__video {
  display: block;
  aspect-ratio: 1580 / 950;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transform-origin: 50% 50%;
  will-change: transform;
}

.hero__image figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  margin: 0;
  color: var(--kagit);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-marquee {
  position: relative;
  left: calc(var(--pad-x) * -1);
  width: calc(100% + (var(--pad-x) * 2));
  margin-top: clamp(42px, 8vw, 88px);
  padding: 18px 0;
  color: var(--murekkep);
  background: var(--bronz-acik);
  border-top: 1px solid rgba(244, 241, 234, .24);
  border-bottom: 1px solid rgba(244, 241, 234, .24);
  overflow: hidden;
}

.marquee__inner {
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}

.marquee__inner span {
  display: inline-flex;
  padding-right: .35em;
  font-size: clamp(1.5rem, 5vw, 5rem);
  font-weight: 900;
  line-height: .92;
  text-transform: uppercase;
}

.manifesto {
  padding-right: 0;
  padding-left: 0;
}

.manifesto > .section-kicker,
.manifesto__intro {
  margin-left: var(--pad-x);
  margin-right: var(--pad-x);
}

.manifesto__pin {
  position: relative;
  overflow: hidden;
}

.manifesto-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.manifesto-panel {
  position: relative;
  width: min(88vw, 1180px);
  min-height: min(72vh, 780px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 28%);
  gap: clamp(20px, 4vw, 64px);
  align-items: center;
  padding: clamp(38px, 7vw, 92px) var(--pad-x);
  border-top: 1px solid var(--cizgi);
  border-right: 1px solid var(--cizgi);
}

.manifesto-panel h3 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.4rem, 10vw, 11rem);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.manifesto-panel img {
  --image-filter: saturate(.82) contrast(1.04);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--cizgi);
  border-radius: var(--radius);
  filter: var(--image-filter);
}

.panel-index {
  position: absolute;
  top: clamp(24px, 4vw, 52px);
  left: var(--pad-x);
  color: var(--bronz);
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  font-weight: 900;
}

.manifesto-progress {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 24px;
  height: 3px;
  background: rgba(14, 13, 11, .12);
  transform-origin: left;
}

.manifesto-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--bronz);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, auto);
  gap: 12px;
}

.bento-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: clamp(18px, 2vw, 28px);
  overflow: hidden;
  color: var(--kagit);
  background: rgba(244, 241, 234, .06);
  border: 1px solid rgba(244, 241, 234, .14);
  border-radius: var(--radius);
  isolation: isolate;
  transition: transform .32s cubic-bezier(.22, 1, .36, 1), border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.bento-card:hover,
.bento-card:focus-within {
  border-color: var(--bronz);
  background: rgba(176, 124, 94, .12);
  box-shadow: 0 18px 44px rgba(14, 13, 11, .18), 0 0 0 1px rgba(176, 124, 94, .3);
}

.bento-card > img {
  --image-opacity: .28;
  --image-filter: grayscale(.35) contrast(1.08);
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: var(--image-opacity);
  filter: var(--image-filter);
  transform: scale(1.01);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
}

.bento-card:hover > img,
.bento-card:focus-within > img {
  --image-opacity: .38;
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(14, 13, 11, .9), rgba(14, 13, 11, .22));
}

.bento-card > span,
.bento-card > h3,
.bento-card > p,
.socket-copy h3,
.socket-copy p {
  position: relative;
  margin: 0;
}

.bento-card > span {
  color: var(--bronz-acik);
  font-size: .82rem;
  font-weight: 900;
}

.bento-card > h3,
.socket-copy h3 {
  font-size: clamp(1.8rem, 3.4vw, 4.6rem);
  font-weight: 900;
  line-height: .92;
  text-transform: uppercase;
  text-wrap: balance;
}

.bento-card > p,
.socket-copy p {
  max-width: 32ch;
  color: rgba(244, 241, 234, .78);
  font-size: .98rem;
  line-height: 1.45;
  text-wrap: pretty;
}

.bento-card--mutfak {
  grid-column: span 4;
}

.bento-card--banyo {
  grid-column: span 3;
}

.bento-card--vestiyer {
  grid-column: span 5;
}

.bento-card--socket {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 650px;
  justify-content: space-between;
  color: var(--kagit);
  background: rgba(244, 241, 234, .04);
  border-color: rgba(176, 124, 94, .55);
}

.bento-card--socket::after {
  display: none;
}

.bento-card--socket:hover,
.bento-card--socket:focus-within {
  border-color: var(--bronz-acik);
  box-shadow: 0 24px 70px rgba(176, 124, 94, .3), 0 0 0 1px rgba(203, 160, 127, .5);
}

.socket-copy {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 8px;
}

.socket-copy h3 {
  max-width: 10ch;
}

.bento-card--socket .urun-3d-soket {
  --soket-bg: #181613;
  --soket-bg-2: #0e0d0b;
  --soket-fg: #f4f1ea;
  --soket-muted: rgba(244, 241, 234, .62);
  --soket-accent: var(--bronz);
  --soket-ar-buton: var(--bronz);
  --soket-radius: 8px;
  --soket-shadow: none;
  --soket-aspect: 16 / 11;
  border: 1px solid var(--bronz);
}

.soket-etiket {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: var(--murekkep);
  background: var(--bronz-acik);
  border-radius: var(--radius);
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
}

.soket-etiket .nokta {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: socket-dot-pulse 1.6s ease-in-out infinite;
}

@keyframes socket-dot-pulse {
  0%,
  100% {
    opacity: .76;
    box-shadow: 0 0 0 0 rgba(14, 13, 11, .28);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 0 7px rgba(14, 13, 11, 0);
  }
}

.bento-card--tv {
  grid-column: span 5;
}

.bento-card--gardirop {
  grid-column: span 3;
}

.bento-card--salon {
  grid-column: span 2;
}

.craft {
  position: relative;
  min-height: 82vh;
  min-height: 82svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(92px, 12vw, 168px) var(--pad-x);
  isolation: isolate;
  background: var(--murekkep);
}

.craft::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14, 13, 11, .82) 0%, rgba(14, 13, 11, .52) 44%, rgba(14, 13, 11, .18) 100%),
    linear-gradient(0deg, rgba(14, 13, 11, .74) 0%, rgba(14, 13, 11, .2) 52%, rgba(14, 13, 11, .62) 100%);
}

.craft__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.08);
}

.craft__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(16px, 2.4vw, 28px);
  max-width: min(980px, 100%);
  color: var(--kagit);
}

.craft .section-kicker {
  margin-bottom: 0;
}

.craft__title {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(4rem, 14vw, 17rem);
  font-weight: 900;
  line-height: .86;
  letter-spacing: 0;
}

.craft__content p {
  margin: 0;
  max-width: 48ch;
  color: rgba(244, 241, 234, .78);
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  line-height: 1.55;
}

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

.project-card,
.blog-card,
.step-card,
.contact-form {
  border-radius: var(--radius);
}

.project-card {
  position: relative;
  min-height: clamp(380px, 54vw, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--kagit);
  border: 1px solid var(--cizgi);
  isolation: isolate;
}

.project-card img {
  --image-filter: saturate(.9) contrast(1.08);
  --parallax-y: 0px;
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--image-filter);
  transform: translate3d(0, var(--parallax-y), 0);
  scale: 1;
  transition: scale .5s cubic-bezier(.22, 1, .36, 1), opacity .35s ease, filter .35s ease;
}

.project-card img[data-parallax] {
  top: -24px;
  bottom: auto;
  height: calc(100% + 48px);
  transition: scale .5s cubic-bezier(.22, 1, .36, 1), opacity .65s ease, filter .65s ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(14, 13, 11, .86), rgba(14, 13, 11, .05));
}

.project-card div {
  position: relative;
  padding: clamp(18px, 2vw, 28px);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}

.project-card > div::after {
  content: "Görüntüle ↗";
  display: inline-flex;
  margin-top: 16px;
  color: var(--bronz-acik);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(-10px, 12px, 0);
  transition: opacity .32s ease, transform .42s cubic-bezier(.22, 1, .36, 1);
}

.project-card h3 {
  margin: 10px 0 0;
  /* clamp düşürüldü (4.8→3rem): dar 4-kolon kartta uzun proje adları (DÖŞEMEALTI/
     MURATPAŞA) kart kenarından kırpılıyordu; bu boyutta en uzun kelime tam sığar. */
  font-size: clamp(1.65rem, 2.85vw, 3rem);
  font-weight: 900;
  line-height: .94;
  text-transform: uppercase;
  /* güvenlik ağı: beklenmedik daha uzun bir ad gelirse kırpma yerine kelime kır. */
  overflow-wrap: break-word;
  hyphens: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(244, 241, 234, .16);
  border-left: 1px solid rgba(244, 241, 234, .16);
}

.step-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(22px, 3vw, 36px);
  border-right: 1px solid rgba(244, 241, 234, .16);
  border-bottom: 1px solid rgba(244, 241, 234, .16);
}

.step-card span {
  color: var(--bronz);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 900;
  line-height: .8;
}

.step-card h3 {
  margin: auto 0 0;
  font-size: clamp(1.5rem, 2.4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
}

.step-card p {
  margin: 0;
  color: rgba(244, 241, 234, .72);
  line-height: 1.5;
  text-wrap: pretty;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.blog-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: rgba(14, 13, 11, .035);
  border: 1px solid var(--cizgi);
  transition: border-color .26s ease, box-shadow .26s ease;
}

.blog-card img {
  --image-filter: saturate(.9);
  width: 100%;
  aspect-ratio: 805 / 683;
  object-fit: cover;
  filter: var(--image-filter);
  scale: 1;
  transition: scale .45s cubic-bezier(.22, 1, .36, 1), filter .3s ease;
}

.blog-card div {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2vw, 26px);
}

.blog-card div::after {
  content: "Oku ↗";
  width: max-content;
  padding-top: 10px;
  color: var(--bronz);
  border-top: 1px solid currentColor;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(-8px, 10px, 0);
  transition: opacity .28s ease, transform .36s cubic-bezier(.22, 1, .36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .bento-card:hover,
  .bento-card:focus-within {
    transform: translateY(-6px);
  }

  .bento-card:hover > img,
  .bento-card:focus-within > img {
    transform: scale(1.05);
  }

  .bento-card--socket:hover,
  .bento-card--socket:focus-within {
    transform: translateY(-6px);
    border-color: var(--bronz-acik);
    box-shadow: 0 28px 78px rgba(176, 124, 94, .34), 0 0 0 1px rgba(203, 160, 127, .58);
  }

  .project-card:hover img,
  .project-card:focus-within img {
    scale: 1.05;
  }

  .project-card:hover div,
  .project-card:focus-within div {
    transform: translateY(-10px);
  }

  .project-card:hover > div::after,
  .project-card:focus-within > div::after {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .blog-card:hover,
  .blog-card:focus-within {
    border-color: rgba(176, 124, 94, .6);
    box-shadow: 0 18px 42px rgba(14, 13, 11, .1);
  }

  .blog-card:hover img,
  .blog-card:focus-within img {
    scale: 1.04;
  }

  .blog-card:hover div::after,
  .blog-card:focus-within div::after {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.blog-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
  text-wrap: balance;
}

.blog-card p {
  margin: auto 0 0;
  color: rgba(14, 13, 11, .68);
  line-height: 1.5;
  text-wrap: pretty;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 440px);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.contact-title {
  max-width: 9ch;
}

.contact-copy {
  display: grid;
  gap: 28px;
}

address {
  display: grid;
  gap: 10px;
  max-width: 58ch;
  color: rgba(244, 241, 234, .82);
  font-style: normal;
  line-height: 1.45;
  /* telefon/posta-kodu rakamları eş-genişlik → temiz hizalı (editoryal sayı cilası). */
  font-variant-numeric: tabular-nums;
}

address a,
.social-links a {
  width: max-content;
  color: var(--bronz-acik);
  border-bottom: 1px solid currentColor;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.map-placeholder {
  width: min(100%, 560px);
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(176, 124, 94, .55);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(203, 160, 127, .12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(203, 160, 127, .12) 1px, transparent 1px);
  background-size: 34px 34px;
}

.map-placeholder span {
  color: var(--bronz-acik);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.map-placeholder strong {
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--murekkep);
  background: var(--kagit);
  border: 1px solid var(--bronz);
}

.field {
  display: grid;
  gap: 8px;
}

label {
  color: rgba(14, 13, 11, .72);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(14, 13, 11, .22);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--murekkep);
  background: rgba(255, 255, 255, .35);
}

textarea {
  resize: vertical;
  min-height: 136px;
}

.contact-form button {
  min-height: 48px;
  border: 1px solid var(--murekkep);
  border-radius: var(--radius);
  color: var(--kagit);
  background: var(--murekkep);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  transition: background .24s ease, color .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.contact-form button:hover {
  color: var(--murekkep);
  background: var(--bronz-acik);
  border-color: var(--bronz-acik);
  box-shadow: 0 12px 28px rgba(14, 13, 11, .16);
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--bronz);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(70px, 10vw, 120px);
  padding-top: 24px;
  border-top: 1px solid rgba(244, 241, 234, .16);
  color: rgba(244, 241, 234, .72);
}

.footer-wordmark {
  color: var(--kagit);
}

.site-footer p {
  margin: 0;
}

/* Kelime grubu: char-split'te aynı kelimenin karakterleri tek satırda kalsın
   (kelime ortasından kırılma yok); kırılma yalnız kelimeler arası boşlukta. */
.kw {
  display: inline-block;
  white-space: nowrap;
}

.kc {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.ki {
  display: inline-block;
  will-change: transform;
}

.has-split .ki {
  transform: translateY(110%);
}

.reveal {
  will-change: transform, opacity;
}

@media (max-width: 1180px) {
  /* Başlık-grid'leri tablette TEK kolona yığ: 769-1180 aralığında sabit-geniş
     paragraf/form kolonu (420-440px) başlık kolonunu sıkıştırıp uzun kelimeyi
     yan içeriğe bindiriyordu. Yığınca başlık tam genişlik alır, çakışma biter. */
  .section-heading,
  .manifesto__intro,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .bento-card--mutfak,
  .bento-card--banyo,
  .bento-card--vestiyer,
  .bento-card--tv,
  .bento-card--gardirop,
  .bento-card--salon {
    grid-column: span 6;
  }

  .bento-card--socket {
    grid-column: span 12;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
    --pad-x: 18px;
  }

  body {
    overflow-x: hidden;
  }

  .site-nav {
    height: var(--nav-h);
  }

  .menu-overlay {
    padding-top: 86px;
  }

  .menu-close {
    top: 14px;
  }

  .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .hero {
    padding-bottom: 0;
  }

  .hero__grid,
  .section-heading,
  .manifesto__intro,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
  }

  .hero-title,
  .section-title,
  .contact-title {
    max-width: 100%;
    /* keep-all dar ekranda en uzun kelimeyi (MEKÂNLARIN/TASARLAYALIM) küçültemez →
       clamp düşürüldü ki kelime kırpılmadan/kırılmadan kolona sığsın. */
    font-size: clamp(2.2rem, 12.2vw, 4.4rem);
  }

  /* Güvenlik ağı: 380px altında bile çok uzun tek kelime taşarsa kırpmak yerine
     boşlukta kır (mid-word'e en son çare, sadece çok dar ekranda). */
  @media (max-width: 380px) {
    .hero-title,
    .section-title,
    .contact-title {
      overflow-wrap: break-word;
    }
  }

  .hero__image {
    width: min(100%, 390px);
    margin: 18px 0 0 auto;
  }

  .service-marquee {
    margin-top: 46px;
  }

  .craft {
    min-height: 76vh;
    min-height: 76svh;
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .craft::after {
    background:
      linear-gradient(90deg, rgba(14, 13, 11, .88) 0%, rgba(14, 13, 11, .56) 66%, rgba(14, 13, 11, .3) 100%),
      linear-gradient(0deg, rgba(14, 13, 11, .78) 0%, rgba(14, 13, 11, .2) 58%, rgba(14, 13, 11, .62) 100%);
  }

  .craft__title {
    max-width: 100%;
    font-size: clamp(3.4rem, 20vw, 6.6rem);
  }

  .manifesto {
    padding-right: 0;
    padding-left: 0;
  }

  .manifesto__pin {
    overflow: visible;
  }

  .manifesto-track {
    display: grid;
    width: auto;
  }

  .manifesto-panel {
    width: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 74px;
  }

  .manifesto-panel h3 {
    font-size: clamp(3rem, 15vw, 6.2rem);
  }

  .manifesto-panel img {
    aspect-ratio: 16 / 10;
  }

  .manifesto-progress {
    display: none;
  }

  .bento-grid,
  .project-strip,
  .blog-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-card--socket {
    grid-column: auto;
    min-height: 310px;
  }

  .bento-card--socket {
    min-height: auto;
  }

  .bento-card--socket .urun-3d-soket {
    --soket-aspect: 1 / 1;
  }

  .project-card {
    min-height: 420px;
  }

  .step-card {
    min-height: 280px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 460px) {
  .menu-button span:first-child {
    display: none;
  }

  .overlay-nav a {
    font-size: clamp(2.4rem, 16vw, 4.8rem);
  }

  .hero-subtitle {
    line-height: 1.12;
  }

  .soket-etiket {
    max-width: calc(100% - 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  html.intro-active {
    overflow: auto;
  }

  #intro {
    display: none !important;
  }

  img.img-load,
  img.img-load.is-loaded {
    opacity: var(--image-opacity);
    filter: var(--image-filter);
  }

  .has-split .ki,
  .marquee__inner,
  .velocity-skew {
    transform: none !important;
  }

  /* Hareket azaltıldığında yatay-pin JS devre dışı kalır; track'i dikey yığına
     düşür ki panel 2-3 overflow:hidden ile kırpılıp erişilemez olmasın. */
  .manifesto__pin {
    overflow: visible;
  }

  .manifesto-track {
    display: grid;
    width: auto;
    transform: none !important;
  }

  .manifesto-panel {
    width: auto;
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .manifesto-progress {
    display: none;
  }

  .bento-card,
  .bento-card--socket,
  .project-card div,
  .project-card > div::after,
  .blog-card div::after {
    transform: none !important;
  }

  .bento-card:hover > img,
  .bento-card:focus-within > img {
    transform: scale(1.01) !important;
  }

  .project-card img,
  .project-card:hover img,
  .project-card:focus-within img,
  .blog-card img,
  .blog-card:hover img,
  .blog-card:focus-within img {
    scale: 1 !important;
  }

  .soket-etiket .nokta {
    animation: none !important;
    opacity: 1;
    box-shadow: none;
  }
}
