/* Müşterinin aradığı hizmeti ilk bakışta bulması için mevcut tasarıma eklenen hizmet sunumu. */
.hero-actions { flex-wrap: wrap; gap: 12px; }

.service-showcase {
  color: var(--ink);
  background: var(--paper);
  scroll-margin-top: 72px;
}

.service-showcase-stage {
  position: relative;
  min-height: min(88svh, 900px);
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.service-showcase-media,
.service-showcase-media picture {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.service-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: serviceScene 20s ease-in-out infinite alternate;
}

.service-showcase-doors .service-showcase-media img {
  object-position: center;
  animation: none;
}

.service-showcase-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 8, .89), rgba(8, 9, 8, .58) 45%, rgba(8, 9, 8, .12) 78%),
    linear-gradient(0deg, rgba(8, 9, 8, .55), transparent 48%);
}

.service-showcase-content {
  position: relative;
  z-index: 2;
  padding-top: 82px;
  padding-bottom: 82px;
}

.service-showcase-label {
  margin-bottom: 26px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.service-showcase h2 {
  max-width: 1080px;
  margin-bottom: 28px;
  font-size: clamp(58px, 7.4vw, 112px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
}

.service-showcase h2 em,
.service-models-heading h3 em {
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 400;
}

.service-showcase-content > p:not(.service-showcase-label) {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(16px, 1.45vw, 20px);
}

.door-flip-deck {
  display: none;
  gap: 10px;
  width: fit-content;
  margin: 2px 0 28px 8px;
}

.lake-door-catalog-grid { display: none; }

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

.catalog-rotation-card {
  --underlay-image: none;
  position: relative;
  isolation: isolate;
  min-width: 0;
  padding: 7px 7px 10px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.025);
  perspective: 1100px;
  perspective-origin: 50% 50%;
  overflow: hidden;
  contain: layout paint;
  cursor: pointer;
  transition: border-color .25s ease;
}

.catalog-rotation-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 7px;
  right: 7px;
  left: 7px;
  aspect-ratio: 3 / 4;
  background-color: #242122;
  background-image: var(--underlay-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  box-shadow: inset 16px 0 24px rgba(0,0,0,.12);
}

.catalog-rotation-inner {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 3 / 4;
  transform: translateZ(0) rotateY(0deg);
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  will-change: transform;
}

.catalog-rotation-card.is-flipping {
  border-color: rgba(201,83,105,.62);
}

.catalog-rotation-face {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #242122;
}

.catalog-rotation-front { transform: rotateY(0deg) translateZ(1px); }
.catalog-rotation-back { transform: rotateY(180deg) translateZ(1px); }
.catalog-rotation-face img { display: block; width: 100%; height: 100%; object-fit: contain; }
.catalog-rotation-card small { position: relative; z-index: 2; display: block; margin-top: 9px; font-size: 10px; letter-spacing: .06em; text-align: center; }
.catalog-rotation-card small b { color: var(--accent); font-weight: 700; }

.door-flip-card {
  width: 76px;
  height: 102px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(19,17,18,.34);
  box-shadow: 0 14px 28px rgba(0,0,0,.26);
  perspective: 700px;
  cursor: pointer;
}

.door-flip-card:nth-child(1) { transform: rotate(-4deg) translateY(8px); }
.door-flip-card:nth-child(2) { transform: translateY(-7px); }
.door-flip-card:nth-child(3) { transform: rotate(4deg) translateY(8px); }

.door-flip-card-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.door-flip-card.is-flipping .door-flip-card-inner {
  animation: doorCardFlip .72s cubic-bezier(.22,1,.36,1);
}

.door-flip-face {
  position: absolute;
  inset: 4px;
  display: block;
  overflow: hidden;
  backface-visibility: hidden;
  background: #242122;
}

.door-flip-back { transform: rotateY(180deg); }
.door-flip-face img { width: 100%; height: 100%; object-fit: cover; }

@keyframes doorCardFlip {
  0% { transform: rotateY(0); }
  50%, 100% { transform: rotateY(180deg); }
}

.service-showcase-mark {
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100vw - 1440px) / 2 + 32px));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-showcase-mark span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 26px;
}

.service-showcase-mark i { width: 58px; height: 1px; background: rgba(255, 255, 255, .48); }
.service-showcase-mark small { font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }

.service-models { padding-top: clamp(72px, 8vw, 125px); padding-bottom: clamp(86px, 9vw, 145px); }

.service-models-heading {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(220px, .8fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.service-models-heading h3 {
  margin: 30px 0 0;
  font-size: clamp(44px, 5.3vw, 76px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1;
}

.service-models-heading > p {
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-size: 13px;
}

.service-model-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lake-door-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 34px 18px;
  width: 100%;
  overflow: visible;
  overscroll-behavior-inline: auto;
  scroll-snap-type: none;
}

.lake-door-catalog-grid .service-model-card {
  padding: 10px 10px 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.025);
}

.service-model-card {
  min-width: 0;
  padding: 0;
  color: inherit;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.service-model-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.14;
  overflow: hidden;
  background: #d4cec7;
}

.lake-door-catalog-grid .service-model-image {
  aspect-ratio: 3 / 4;
  padding: clamp(12px, 1.25vw, 18px);
  border: 1px solid rgba(255,255,255,.12);
  background: #211f20;
}

.service-model-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 13, 12, .17), transparent 38%);
}

.service-model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter .45s;
}

.lake-door-catalog-grid .service-model-image img {
  object-fit: contain;
}

.service-model-card:hover .service-model-image img { transform: scale(1.045); }

.service-model-copy {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.service-model-copy strong { font-family: var(--serif); font-size: clamp(18px, 1.7vw, 25px); font-weight: 400; line-height: 1.05; }
.service-model-copy small { flex: 0 0 auto; font-size: 8px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.service-showcase-doors { background: #171415; }
.service-showcase-doors .service-models { color: var(--white); }
.service-showcase-doors .service-models-heading > p { color: rgba(255,255,255,.62); }
.service-showcase-doors .service-models-heading .section-index span { color: var(--accent); }
.service-showcase-doors .service-model-copy { border-color: rgba(255,255,255,.2); }
.service-showcase-doors .service-model-copy small { color: rgba(255,255,255,.58); }
.project-dialog-gallery .lake-door-detail {
  grid-column: 1 / -1;
  width: min(100%, 1200px);
  margin-inline: auto;
}
.project-dialog-gallery .lake-door-detail img {
  width: 100%;
  height: auto;
  max-height: none;
  padding: clamp(8px, 1vw, 14px);
  border: 1px solid var(--line);
  background: #fff;
  object-fit: contain;
}

@keyframes serviceScene {
  from { transform: scale(1.025) translate3d(-.35%, 0, 0); }
  to { transform: scale(1.095) translate3d(.7%, -.45%, 0); }
}

@media (max-width: 1100px) {
  .door-rotation-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-model-strip {
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 34%);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--paper-deep);
  }

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

@media (max-width: 720px) {
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; width: 100%; }
  .hero-actions .button { padding-inline: 11px; }
  .service-showcase-stage { min-height: 83svh; align-items: flex-end; }
  .service-showcase-media img { animation-duration: 17s; }
  .service-showcase-doors .service-showcase-media img { object-position: center 45%; }
  .service-showcase-shade {
    background: linear-gradient(0deg, rgba(8, 9, 8, .94), rgba(8, 9, 8, .58) 58%, rgba(8, 9, 8, .18));
  }
  .service-showcase-content { padding-top: 120px; padding-bottom: 105px; }
  .service-showcase h2 { max-width: 98%; font-size: clamp(49px, 14.4vw, 70px); }
  .service-showcase-content > p:not(.service-showcase-label) { max-width: 94%; font-size: 15px; }
  .door-flip-deck {
    gap: 7px;
    margin: -4px 0 24px 5px;
  }
  .door-flip-card { width: 50px; height: 68px; }
  .door-flip-card:nth-child(1) { transform: rotate(-4deg) translateY(5px); }
  .door-flip-card:nth-child(2) { transform: translateY(-3px); }
  .door-flip-card:nth-child(3) { transform: rotate(4deg) translateY(5px); }
  .door-rotation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .service-showcase-mark { right: 18px; bottom: 20px; }
  .service-models { width: 100%; padding-left: 18px; padding-right: 18px; }
  .service-models-heading { grid-template-columns: 1fr; gap: 24px; padding-right: 18px; margin-bottom: 38px; }
  .service-models-heading h3 { font-size: 44px; }
  .service-model-strip {
    grid-auto-columns: 78%;
    gap: 10px;
  }
  .lake-door-catalog-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .service-model-image { aspect-ratio: 1 / 1.05; }
  .lake-door-catalog-grid .service-model-image { aspect-ratio: 3 / 4; }
  .service-model-copy { padding-right: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  .service-showcase-media img { animation: none; }
}

/* Eski uzun katalog bu sürümde tamamen kaldırıldı. */
.service-showcase-doors .lake-door-catalog-grid {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* Kapı modellerini ilk bakışta öne çıkaran premium vitrin. */
.service-showcase-doors .service-showcase-stage {
  min-height: min(92svh, 920px);
}

.service-showcase-doors .service-showcase-shade {
  background:
    linear-gradient(90deg, rgba(8,7,8,.94), rgba(8,7,8,.78) 43%, rgba(8,7,8,.4) 72%, rgba(8,7,8,.54)),
    linear-gradient(0deg, rgba(8,7,8,.72), transparent 55%);
}

.service-showcase-doors .service-showcase-content {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(520px, 1.18fr);
  gap: clamp(38px, 5vw, 86px);
  align-items: center;
  padding-top: 108px;
  padding-bottom: 76px;
}

.door-showcase-intro {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.door-showcase-intro .service-showcase-label {
  margin-bottom: 20px;
  color: rgba(255,255,255,.72);
}

.service-showcase-doors .door-showcase-intro h2 {
  max-width: 610px;
  margin-bottom: 22px;
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: .94;
}

.door-showcase-intro > p:not(.service-showcase-label):not(.door-showcase-hint) {
  max-width: 510px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.7);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.65;
}

.door-showcase-hint {
  margin: 0 0 25px;
  color: rgba(255,255,255,.46);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.door-catalog-trigger {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 0 8px;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.58);
  background: transparent;
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 27px);
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease;
}

.door-catalog-trigger i {
  color: var(--accent);
  font-family: var(--sans);
  font-size: 15px;
  font-style: normal;
  transition: transform .3s ease;
}

.door-catalog-trigger:hover {
  color: var(--accent-soft);
  border-color: var(--accent);
}

.door-catalog-trigger:hover i { transform: translate(4px, -4px); }

.door-rotation-hero-slot {
  position: relative;
  z-index: 2;
  width: 100%;
}

.door-rotation-hero-slot::before {
  content: "";
  position: absolute;
  inset: 10% 4% 8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,91,109,.17), transparent 68%);
  filter: blur(22px);
  pointer-events: none;
}

.service-showcase-doors .door-rotation-grid-hero {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  width: min(100%, 570px);
  margin-left: auto;
}

.service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card {
  padding: 7px 7px 9px;
  border-color: rgba(255,255,255,.25);
  background: rgba(20,17,18,.5);
  box-shadow: 0 18px 42px rgba(0,0,0,.26);
  backdrop-filter: blur(8px);
}

.service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card:hover {
  border-color: rgba(200,91,109,.78);
}

.service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card small {
  margin-top: 7px;
  color: rgba(255,255,255,.72);
  font-size: 9px;
}

.service-showcase-doors .service-models {
  display: none;
}

.door-catalog-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--white);
  border: 0;
  background: #171415;
}

.door-catalog-dialog::backdrop {
  background: rgba(5,4,5,.88);
  backdrop-filter: blur(10px);
}

.door-catalog-shell {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(22px, 3vw, 42px);
}

.door-catalog-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(18px, 3vw, 52px);
  align-items: end;
  margin-bottom: clamp(18px, 2vw, 30px);
  padding-bottom: clamp(14px, 1.6vw, 22px);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.door-catalog-header h2 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3.3vw, 52px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}

.door-catalog-header > p {
  max-width: 260px;
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 11px;
}

.door-catalog-header .section-index {
  margin: 0;
  color: rgba(255,255,255,.68);
}

.door-catalog-header .section-index span { color: var(--accent); }

.door-catalog-close {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 9px 13px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}

.door-catalog-close span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.door-catalog-close i {
  font-family: var(--serif);
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: .8;
}

.door-catalog-mount {
  display: flex;
  flex: 1;
  align-items: center;
}

.door-catalog-dialog .lake-door-catalog-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: clamp(8px, .8vw, 13px);
  width: 100%;
}

.door-catalog-dialog .lake-door-catalog-grid .service-model-card {
  min-width: 0;
  padding: clamp(3px, .4vw, 6px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.025);
  transition: border-color .25s ease, transform .25s ease;
}

.door-catalog-dialog .lake-door-catalog-grid .service-model-card:hover {
  z-index: 1;
  border-color: var(--accent);
  transform: translateY(-3px);
}

.door-catalog-dialog .lake-door-catalog-grid .service-model-image {
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 0;
  background: #211f20;
}

.door-catalog-dialog .lake-door-catalog-grid .service-model-image::after {
  background: linear-gradient(0deg, rgba(12,13,12,.13), transparent 30%);
}

.door-catalog-dialog .lake-door-catalog-grid .service-model-image img {
  object-fit: contain;
}

.door-catalog-dialog .lake-door-catalog-grid .service-model-copy {
  display: block;
  margin-top: 5px;
  padding: 5px 2px 1px;
  text-align: center;
  border-color: rgba(255,255,255,.12);
}

.door-catalog-dialog .lake-door-catalog-grid .service-model-copy strong {
  display: block;
  overflow: hidden;
  font-family: var(--sans);
  font-size: clamp(8px, .72vw, 11px);
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.door-catalog-dialog .lake-door-catalog-grid .service-model-copy small {
  display: none;
}

body:has(.door-catalog-dialog[open]) { overflow: hidden; }

@media (max-width: 1100px) {
  .service-showcase-doors .service-showcase-content {
    grid-template-columns: minmax(260px, .75fr) minmax(430px, 1.25fr);
    gap: 30px;
  }

  .service-showcase-doors .door-rotation-grid-hero {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: min(100%, 490px);
  }

  .door-catalog-dialog .lake-door-catalog-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

/* V24: Kapı vitrini kartlardan arındırılmış, tek odaklı katalog çağrısı. */
#kapilar .service-showcase-stage {
  min-height: min(88svh, 880px);
  align-items: flex-end;
}

#kapilar .service-showcase-content {
  display: block;
  padding-top: 124px;
  padding-bottom: clamp(62px, 7vh, 94px);
}

#kapilar .door-showcase-intro {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(42px, 7vw, 112px);
  padding-bottom: 26px;
  border-bottom-color: rgba(255,255,255,.26);
}

#kapilar .door-showcase-details {
  max-width: 470px;
  justify-self: end;
}

#kapilar .door-showcase-details > p:not(.door-showcase-hint) {
  color: rgba(255,255,255,.82);
  text-shadow: 0 2px 20px rgba(0,0,0,.34);
}

#kapilar .door-showcase-heading h2 {
  text-shadow: 0 2px 28px rgba(0,0,0,.28);
}

@media (max-width: 720px) {
  #kapilar .service-showcase-stage {
    min-height: 96svh;
    align-items: flex-end;
  }

  #kapilar .service-showcase-content {
    padding-top: 112px;
    padding-bottom: max(44px, calc(28px + env(safe-area-inset-bottom)));
  }

  #kapilar .door-showcase-intro {
    padding-bottom: 0;
    border-bottom: 0;
  }

  #kapilar .door-showcase-heading h2 {
    max-width: 350px;
    font-size: clamp(35px, 10.2vw, 45px);
  }

  #kapilar .door-showcase-details {
    max-width: 350px;
    margin-top: 15px;
    justify-self: auto;
  }

  #kapilar .door-showcase-details > p:not(.door-showcase-hint) {
    display: block;
    max-width: 335px;
    margin-bottom: 15px;
    font-size: 11px;
    line-height: 1.5;
  }

  #kapilar .door-showcase-details .door-catalog-trigger {
    font-size: 17px;
  }
}

@media (max-width: 720px) {
  .service-showcase-doors .service-showcase-stage {
    min-height: 100svh;
    align-items: stretch;
  }

  .service-showcase-doors .service-showcase-shade {
    background:
      linear-gradient(0deg, rgba(8,7,8,.94), rgba(8,7,8,.68) 67%, rgba(8,7,8,.46)),
      linear-gradient(90deg, rgba(8,7,8,.65), rgba(8,7,8,.2));
  }

  .service-showcase-doors .service-showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding-top: 96px;
    padding-bottom: 62px;
  }

  .door-showcase-intro .service-showcase-label { margin-bottom: 10px; }

  .service-showcase-doors .door-showcase-intro h2 {
    max-width: 360px;
    margin-bottom: 12px;
    font-size: clamp(38px, 11.5vw, 50px);
    line-height: .92;
  }

  .door-showcase-intro > p:not(.service-showcase-label):not(.door-showcase-hint) {
    max-width: 350px;
    margin-bottom: 9px;
    font-size: 12px;
    line-height: 1.45;
  }

  .door-showcase-hint {
    margin-bottom: 12px;
    font-size: 8px;
  }

  .door-catalog-trigger {
    gap: 17px;
    padding-bottom: 5px;
    font-size: 18px;
  }

  .service-showcase-doors .door-rotation-grid-hero {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    width: 100%;
    margin: 0;
  }

  .service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card {
    padding: 4px 4px 6px;
  }

  .service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card small {
    margin-top: 4px;
    font-size: 7px;
  }

  .door-catalog-shell { padding: 16px 12px 18px; }

  .door-catalog-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .door-catalog-header h2 { margin-top: 5px; font-size: 28px; }
  .door-catalog-header > p { display: none; }
  .door-catalog-header .section-index { font-size: 8px; }
  .door-catalog-close { padding: 8px 10px; }
  .door-catalog-close span { display: none; }
  .door-catalog-mount { align-items: flex-start; }

  .door-catalog-dialog .lake-door-catalog-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px 5px;
  }

  .door-catalog-dialog .lake-door-catalog-grid .service-model-card { padding: 3px; }

  .door-catalog-dialog .lake-door-catalog-grid .service-model-copy {
    margin-top: 3px;
    padding: 3px 0 0;
  }

  .door-catalog-dialog .lake-door-catalog-grid .service-model-copy strong {
    font-size: 7px;
  }
}

/* V18: Kartları ayrı kutular yerine tek bir mimari vitrin çizgisine bağlar. */
.service-showcase-doors .service-showcase-stage {
  min-height: min(94svh, 960px);
}

.service-showcase-doors .service-showcase-shade {
  background:
    linear-gradient(90deg, rgba(8,7,8,.91), rgba(8,7,8,.7) 48%, rgba(8,7,8,.58)),
    linear-gradient(0deg, rgba(8,7,8,.76), rgba(8,7,8,.18) 62%);
}

.service-showcase-doors .service-showcase-content {
  display: block;
  padding-top: 118px;
  padding-bottom: 48px;
}

.service-showcase-doors .door-showcase-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: end;
  max-width: none;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.19);
}

.door-showcase-heading,
.door-showcase-details {
  min-width: 0;
}

.door-showcase-heading .service-showcase-label {
  margin-bottom: 14px;
}

.service-showcase-doors .door-showcase-heading h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(47px, 5.2vw, 74px);
  line-height: .94;
}

.door-showcase-details {
  padding-bottom: 3px;
}

.door-showcase-details > p:not(.door-showcase-hint) {
  max-width: 490px;
  margin: 0 0 15px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.6;
}

.door-showcase-details .door-showcase-hint {
  margin-bottom: 18px;
}

.door-showcase-details .door-catalog-trigger {
  gap: 20px;
  font-size: clamp(18px, 1.55vw, 23px);
}

.service-showcase-doors .door-rotation-hero-slot {
  margin-top: 16px;
}

.service-showcase-doors .door-rotation-hero-slot::before {
  display: none;
}

.service-showcase-doors .door-rotation-grid-hero {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 12px 0 10px;
  border-bottom: 1px solid rgba(255,255,255,.19);
}

.service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card {
  padding: 0 12px 7px;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.16);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: opacity .25s ease;
}

.service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card:first-child {
  border-left: 0;
}

.service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card:hover {
  border-color: rgba(255,255,255,.16);
  opacity: .92;
}

.service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card::before {
  top: 0;
  right: 12px;
  left: 12px;
}

.service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card small {
  margin-top: 7px;
  color: rgba(255,255,255,.66);
  font-size: 8px;
  text-align: left;
  text-transform: uppercase;
}

.service-showcase-doors .service-showcase-mark {
  display: none;
}

@media (max-width: 1100px) {
  .service-showcase-doors .service-showcase-content {
    display: block;
    padding-top: 102px;
    padding-bottom: 42px;
  }

  .service-showcase-doors .door-showcase-intro {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: 35px;
  }

  .service-showcase-doors .door-rotation-grid-hero {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: 100%;
  }

  .service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card {
    padding-inline: 8px;
  }

  .service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card::before {
    right: 8px;
    left: 8px;
  }
}

@media (max-width: 720px) {
  .service-showcase-doors .service-showcase-stage {
    min-height: 100svh;
  }

  .service-showcase-doors .service-showcase-content {
    display: block;
    padding-top: 92px;
    padding-bottom: 35px;
  }

  .service-showcase-doors .door-showcase-intro {
    display: block;
    padding-bottom: 18px;
  }

  .door-showcase-heading .service-showcase-label {
    margin-bottom: 8px;
  }

  .service-showcase-doors .door-showcase-heading h2 {
    max-width: 360px;
    font-size: clamp(37px, 10.8vw, 47px);
  }

  .door-showcase-details {
    margin-top: 13px;
    padding: 0;
  }

  .door-showcase-details > p:not(.door-showcase-hint) {
    display: none;
  }

  .door-showcase-details .door-showcase-hint {
    margin-bottom: 9px;
    font-size: 7px;
  }

  .door-showcase-details .door-catalog-trigger {
    gap: 14px;
    font-size: 17px;
  }

  .service-showcase-doors .door-rotation-hero-slot {
    margin-top: 9px;
  }

  .service-showcase-doors .door-rotation-grid-hero {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 7px 0 6px;
  }

  .service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card {
    padding: 6px 6px 5px;
    border-left: 1px solid rgba(255,255,255,.14);
    border-top: 1px solid rgba(255,255,255,.14);
  }

  .service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card:nth-child(3n+1) {
    border-left: 0;
  }

  .service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card:nth-child(-n+3) {
    border-top: 0;
  }

  .service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card::before {
    top: 6px;
    right: 6px;
    left: 6px;
  }

  .service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card small {
    margin-top: 4px;
    font-size: 7px;
  }
}

/* V19: Mobil vitrin 4 kart; büyük görünüm yatay kaydırmalı telefon galerisi. */
.project-dialog.lake-door-gallery-dialog {
  color: var(--white);
  background: #121011;
}

.project-dialog.lake-door-gallery-dialog::backdrop {
  background: rgba(4,3,4,.94);
}

.lake-door-gallery-dialog .project-dialog-shell {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #121011;
}

.lake-door-gallery-dialog .project-dialog-close {
  top: 18px;
  right: 20px;
  z-index: 8;
  color: var(--white);
  border-color: rgba(255,255,255,.24);
  background: rgba(18,16,17,.68);
}

.lake-door-gallery-dialog .project-dialog-header {
  position: fixed;
  z-index: 6;
  top: 17px;
  left: 22px;
  display: block;
  width: min(60vw, 560px);
  margin: 0;
  padding: 8px 0 14px;
  pointer-events: none;
}

.lake-door-gallery-dialog .project-dialog-header .section-index {
  margin-bottom: 6px;
  color: rgba(255,255,255,.58);
  font-size: 9px;
}

.lake-door-gallery-dialog .project-dialog-header .section-index span {
  color: var(--accent);
}

.lake-door-gallery-dialog .project-dialog-header h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(27px, 3.2vw, 44px);
  line-height: 1;
}

.lake-door-gallery-dialog .project-dialog-header > p:nth-of-type(2) {
  max-width: 480px;
  margin: 8px 0 0;
  color: rgba(255,255,255,.48);
  font-size: 11px;
}

.lake-door-gallery-dialog .project-dialog-facts {
  display: none;
}

.lake-door-gallery-dialog .project-dialog-gallery {
  display: flex;
  width: 100%;
  height: 100dvh;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x pinch-zoom;
  -webkit-overflow-scrolling: touch;
}

.lake-door-gallery-dialog .project-dialog-gallery::-webkit-scrollbar {
  display: none;
}

.lake-door-gallery-dialog .project-dialog-gallery .lake-door-detail {
  position: relative;
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100dvh;
  margin: 0;
  padding: 88px 24px 45px;
  background: #121011;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.lake-door-gallery-dialog .project-dialog-gallery .lake-door-detail img {
  width: auto;
  height: auto;
  max-width: min(100%, 1100px);
  max-height: calc(100dvh - 145px);
  padding: 0;
  border: 0;
  background: transparent;
  object-fit: contain;
}

.lake-door-gallery-dialog .project-dialog-gallery .lake-door-detail figcaption {
  position: absolute;
  right: 24px;
  bottom: 15px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  padding: 0;
  color: rgba(255,255,255,.58);
  background: transparent;
  font-size: 9px;
}

.lake-door-gallery-dialog .project-dialog-contact {
  display: none;
}

.lake-door-gallery-controls {
  position: fixed;
  z-index: 7;
  top: 50%;
  right: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  transform: translateY(-50%);
  pointer-events: none;
}

.lake-door-gallery-controls[hidden] {
  display: none;
}

.lake-door-gallery-controls button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0 0 4px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: rgba(18,16,17,.62);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  pointer-events: auto;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lake-door-gallery-controls button:disabled {
  opacity: .22;
  cursor: default;
}

.lake-door-gallery-controls output {
  position: fixed;
  bottom: 14px;
  left: 50%;
  padding: 5px 10px;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px;
  background: rgba(18,16,17,.62);
  font-size: 9px;
  letter-spacing: .1em;
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}

@media (max-width: 720px) {
  .service-showcase-doors .door-rotation-grid-hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card:nth-child(n+5) {
    display: none;
  }

  .service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card {
    border-top: 1px solid rgba(255,255,255,.14);
    border-left: 1px solid rgba(255,255,255,.14);
  }

  .service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card:nth-child(odd) {
    border-left: 0;
  }

  .service-showcase-doors .door-rotation-grid-hero .catalog-rotation-card:nth-child(-n+2) {
    border-top: 0;
  }

  .lake-door-gallery-dialog .project-dialog-close {
    top: max(10px, env(safe-area-inset-top));
    right: max(10px, env(safe-area-inset-right));
    z-index: 12;
    padding: 8px 10px;
    background: rgba(18,16,17,.72);
  }

  .lake-door-gallery-dialog .project-dialog-close span {
    display: none;
  }

  .lake-door-gallery-dialog .project-dialog-header {
    display: none;
  }

  .lake-door-gallery-dialog .project-dialog-gallery .lake-door-detail {
    width: 100vw;
    height: 100dvh;
    padding: 0;
    overflow: hidden;
  }

  .lake-door-gallery-dialog .project-dialog-gallery .lake-door-detail img {
    width: 100vw;
    height: 100dvh;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
    touch-action: pan-x pinch-zoom;
  }

  .lake-door-gallery-dialog .project-dialog-gallery .lake-door-detail figcaption {
    display: none;
  }

  .lake-door-gallery-controls {
    right: 0;
    left: 0;
  }

  .lake-door-gallery-controls button {
    display: none;
  }

  .lake-door-gallery-controls output {
    display: none;
  }
}

/* V21: Seçili projeler yerine kapı vitriniyle aynı dilde mutfak alanı. */
.service-showcase-kitchens .service-showcase-media img {
  object-position: center;
}

.service-showcase-kitchens .service-showcase-shade {
  background:
    linear-gradient(90deg, rgba(8,7,8,.93), rgba(8,7,8,.76) 43%, rgba(8,7,8,.3) 72%, rgba(8,7,8,.5)),
    linear-gradient(0deg, rgba(8,7,8,.7), transparent 56%);
}

.service-showcase-kitchens .kitchen-catalog-trigger i {
  color: #e0a270;
}

.kitchen-rotation-card {
  --underlay-image: none;
  position: relative;
  isolation: isolate;
  min-width: 0;
  padding: 7px 7px 9px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(20,17,18,.5);
  box-shadow: 0 18px 42px rgba(0,0,0,.26);
  perspective: 1100px;
  perspective-origin: 50% 50%;
  overflow: hidden;
  contain: layout paint;
  cursor: pointer;
  transition: border-color .25s ease;
  backdrop-filter: blur(8px);
}

.kitchen-rotation-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 7px;
  right: 7px;
  left: 7px;
  aspect-ratio: 4 / 3;
  background-color: #242122;
  background-image: var(--underlay-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: inset 16px 0 24px rgba(0,0,0,.12);
}

.kitchen-rotation-card .catalog-rotation-inner {
  aspect-ratio: 4 / 3;
}

.kitchen-rotation-card .catalog-rotation-face img {
  object-fit: cover;
}

.kitchen-rotation-card.is-flipping {
  border-color: rgba(224,162,112,.76);
}

.kitchen-rotation-card:hover {
  border-color: rgba(224,162,112,.88);
}

.kitchen-rotation-card small {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.72);
  font-size: 9px;
  letter-spacing: .06em;
  text-align: center;
}

.kitchen-rotation-card small b {
  color: #e0a270;
  font-weight: 700;
}

.kitchen-catalog-dialog .door-catalog-header .section-index span {
  color: #e0a270;
}

.kitchen-catalog-dialog .kitchen-catalog-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
}

.kitchen-catalog-dialog .kitchen-catalog-grid .service-model-image {
  aspect-ratio: 4 / 3;
  background: #211f20;
}

.kitchen-catalog-dialog .kitchen-catalog-grid .service-model-image img {
  object-fit: cover;
}

.kitchen-catalog-dialog .kitchen-catalog-grid .service-model-copy strong {
  font-size: clamp(8px, .78vw, 12px);
}

.kitchen-gallery-dialog .project-dialog-header .section-index span,
.kitchen-gallery-dialog .lake-door-gallery-controls output {
  color: #e0a270;
}

@media (max-width: 1100px) {
  .kitchen-catalog-dialog .kitchen-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .service-showcase-kitchens .service-showcase-shade {
    background:
      linear-gradient(0deg, rgba(8,7,8,.95), rgba(8,7,8,.69) 68%, rgba(8,7,8,.43)),
      linear-gradient(90deg, rgba(8,7,8,.6), rgba(8,7,8,.18));
  }

  .service-showcase-kitchens .door-showcase-intro h2 {
    max-width: 370px;
    font-size: clamp(35px, 10.4vw, 46px);
  }

  .service-showcase-kitchens .kitchen-rotation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .service-showcase-kitchens .kitchen-rotation-card:nth-child(n+5) {
    display: none;
  }

  .service-showcase-kitchens .kitchen-rotation-card {
    padding: 4px 4px 6px;
  }

  .service-showcase-kitchens .kitchen-rotation-card::before {
    top: 4px;
    right: 4px;
    left: 4px;
  }

  .service-showcase-kitchens .kitchen-rotation-card small {
    margin-top: 4px;
    font-size: 7px;
  }

  .kitchen-catalog-dialog .kitchen-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 7px;
  }

  .kitchen-catalog-dialog .kitchen-catalog-grid .service-model-copy strong {
    font-size: 9px;
  }
}

/* V23: Mutfak vitrini, cihaz yönüne özel fotoğraf ve tek odaklı katalog çağrısı. */
.service-showcase-kitchens .service-showcase-stage {
  min-height: min(88svh, 880px);
  align-items: flex-end;
}

.service-showcase-kitchens .service-showcase-media img {
  object-position: center center;
  animation: none;
}

.service-showcase-kitchens .service-showcase-shade {
  background:
    linear-gradient(90deg, rgba(8,7,8,.76) 0%, rgba(8,7,8,.5) 36%, rgba(8,7,8,.14) 68%, rgba(8,7,8,.2) 100%),
    linear-gradient(0deg, rgba(8,7,8,.9) 0%, rgba(8,7,8,.52) 34%, rgba(8,7,8,.08) 72%);
}

.service-showcase-kitchens .service-showcase-content {
  display: block;
  padding-top: 124px;
  padding-bottom: clamp(62px, 7vh, 94px);
}

.service-showcase-kitchens .door-showcase-intro {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(42px, 7vw, 112px);
  padding-bottom: 26px;
  border-bottom-color: rgba(255,255,255,.26);
}

.service-showcase-kitchens .door-showcase-details {
  max-width: 470px;
  justify-self: end;
}

.service-showcase-kitchens .door-showcase-details > p:not(.door-showcase-hint) {
  color: rgba(255,255,255,.82);
  text-shadow: 0 2px 20px rgba(0,0,0,.34);
}

.service-showcase-kitchens .door-showcase-heading h2 {
  text-shadow: 0 2px 28px rgba(0,0,0,.28);
}

@media (max-width: 720px) {
  .service-showcase-kitchens .service-showcase-stage {
    min-height: 96svh;
    align-items: flex-end;
  }

  .service-showcase-kitchens .service-showcase-media img {
    object-position: center 50%;
  }

  .service-showcase-kitchens .service-showcase-shade {
    background:
      linear-gradient(180deg, rgba(8,7,8,.28) 0%, transparent 27%),
      linear-gradient(0deg, rgba(8,7,8,.95) 0%, rgba(8,7,8,.74) 28%, rgba(8,7,8,.17) 62%, rgba(8,7,8,.03) 100%);
  }

  .service-showcase-kitchens .service-showcase-content {
    padding-top: 112px;
    padding-bottom: max(44px, calc(28px + env(safe-area-inset-bottom)));
  }

  .service-showcase-kitchens .door-showcase-intro {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .service-showcase-kitchens .door-showcase-intro h2 {
    max-width: 350px;
    font-size: clamp(35px, 10.2vw, 45px);
  }

  .service-showcase-kitchens .door-showcase-details {
    max-width: 350px;
    margin-top: 15px;
    justify-self: auto;
  }

  .service-showcase-kitchens .door-showcase-details > p:not(.door-showcase-hint) {
    display: block;
    max-width: 335px;
    margin-bottom: 15px;
    font-size: 11px;
    line-height: 1.5;
  }

  .service-showcase-kitchens .door-showcase-details .door-catalog-trigger {
    font-size: 17px;
  }
}

/* V22: 3D tasarım, tezgâh ve aksesuarı tek kompakt hizmet çatısında toplar. */
.other-services {
  color: var(--ink);
  border-top: 1px solid rgba(23,26,23,.12);
  background: #e8e2da;
}

.other-services-heading {
  display: grid;
  grid-template-columns: minmax(170px, .8fr) minmax(420px, 2.25fr) minmax(220px, .95fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(38px, 4.5vw, 62px);
}

.other-services-heading h2 {
  margin: 0;
  font-size: clamp(43px, 4.8vw, 70px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1;
}

.other-services-heading h2 em {
  color: var(--accent-deep);
  font-family: var(--serif);
  font-weight: 400;
}

.other-services-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

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

.other-service-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(23,26,23,.12);
  background: var(--paper);
  transition: transform .35s var(--ease), border-color .35s ease;
}

.other-service-card:hover {
  z-index: 1;
  border-color: rgba(151,67,84,.42);
  transform: translateY(-4px);
}

.other-service-card figure {
  aspect-ratio: 1.58;
  margin: 0;
  overflow: hidden;
  background: #d2ccc4;
}

.other-service-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.other-service-card:hover figure img {
  transform: scale(1.035);
}

.other-service-copy {
  padding: clamp(20px, 2.2vw, 31px);
}

.other-service-copy > small {
  display: block;
  margin-bottom: 11px;
  color: var(--accent-deep);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.other-service-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 2.25vw, 34px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.other-service-copy p {
  min-height: 4.8em;
  margin: 13px 0 18px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.other-service-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.other-service-copy li {
  padding: 5px 8px;
  color: #554f50;
  border: 1px solid rgba(23,26,23,.14);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.other-services-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(23,26,23,.14);
}

.other-services-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .other-services-heading {
    grid-template-columns: minmax(150px, .7fr) minmax(360px, 2fr);
  }

  .other-services-heading > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .other-services {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .other-services-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }

  .other-services-heading h2 {
    font-size: 39px;
  }

  .other-services-heading > p:last-child {
    grid-column: auto;
    max-width: 360px;
    font-size: 12px;
  }

  .other-services-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .other-service-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 132px;
  }

  .other-service-card:hover {
    transform: none;
  }

  .other-service-card figure {
    width: 112px;
    height: 100%;
    min-height: 132px;
    aspect-ratio: auto;
  }

  .other-service-copy {
    align-self: center;
    padding: 13px 14px;
  }

  .other-service-copy > small {
    margin-bottom: 4px;
    font-size: 7px;
  }

  .other-service-copy h3 {
    font-size: 20px;
  }

  .other-service-copy p {
    min-height: 0;
    margin: 6px 0 8px;
    font-size: 10px;
    line-height: 1.4;
  }

  .other-service-copy ul {
    gap: 4px;
  }

  .other-service-copy li {
    padding: 3px 5px;
    font-size: 6px;
  }

  .other-services-footer {
    display: block;
    margin-top: 24px;
    padding-top: 18px;
  }

  .other-services-footer p {
    margin-bottom: 13px;
    font-size: 10px;
  }
}

/* V25: Mutfak ve kapı sahneleri yeniden tam ekran; masaüstü görseller 16:9 kadrajı doldurur. */
#mutfaklar .service-showcase-stage,
#kapilar .service-showcase-stage {
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  max-height: none;
}

#mutfaklar .service-showcase-media,
#mutfaklar .service-showcase-media picture,
#kapilar .service-showcase-media,
#kapilar .service-showcase-media picture {
  width: 100%;
  height: 100%;
}

#mutfaklar .service-showcase-media img,
#kapilar .service-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 721px) {
  #mutfaklar .service-showcase-media img,
  #kapilar .service-showcase-media img {
    aspect-ratio: 16 / 9;
    object-position: center center;
  }
}

@media (max-width: 720px) {
  #mutfaklar .service-showcase-stage,
  #kapilar .service-showcase-stage {
    height: 100svh;
    min-height: 100svh;
  }
}

/* V27: Mobil kapı sahnesini aydınlatır ve birleşik hizmet alanını koyu vitrine taşır. */
.other-services {
  color: var(--white);
  border-top-color: rgba(255,255,255,.12);
  background: #0d0b0c;
}

.other-services-heading > p:last-child,
.other-services-footer p {
  color: rgba(255,255,255,.64);
}

.other-services-heading h2 em {
  color: var(--accent);
}

.other-service-card {
  border-color: rgba(255,255,255,.14);
  background: #171415;
}

.other-service-card:hover {
  border-color: rgba(208,93,113,.52);
}

.other-service-card figure {
  background: #211d1f;
}

.other-service-copy h3 {
  color: var(--white);
}

.other-service-copy p {
  color: rgba(255,255,255,.64);
}

.other-service-copy li {
  color: rgba(255,255,255,.72);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.025);
}

.other-services-footer {
  border-top-color: rgba(255,255,255,.14);
}

@media (max-width: 720px) {
  #kapilar .service-showcase-media img {
    filter: brightness(1.12) saturate(1.06) contrast(.98);
  }

  #kapilar .service-showcase-shade {
    background:
      linear-gradient(180deg, rgba(8,7,8,.1) 0%, rgba(8,7,8,.04) 34%, rgba(8,7,8,.16) 60%, rgba(8,7,8,.72) 100%),
      linear-gradient(90deg, rgba(8,7,8,.34) 0%, rgba(8,7,8,.08) 72%, rgba(8,7,8,.13) 100%);
  }

  #kapilar .door-showcase-heading h2,
  #kapilar .door-showcase-details .door-catalog-trigger {
    text-shadow: 0 2px 24px rgba(0,0,0,.5);
  }
}

/* V28: Tasarım, tezgâh ve aksesuarı tam ekran üç parçalı bir vitrine dönüştürür. */
.other-services.section-space {
  position: relative;
  height: 100svh;
  min-height: 760px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.other-services-shell {
  position: relative;
  width: 100%;
  height: 100%;
}

.other-services-heading {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(150px, .65fr) minmax(430px, 1.85fr) minmax(250px, .8fr);
  gap: clamp(24px, 4vw, 68px);
  align-items: end;
  margin: 0;
  padding: clamp(88px, 10vh, 118px) clamp(26px, 4vw, 72px) clamp(58px, 7vh, 84px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(9,8,9,.88) 0%, rgba(9,8,9,.54) 54%, transparent 100%);
  pointer-events: none;
}

.other-services .section-index {
  color: rgba(255,255,255,.75);
}

.other-services .section-index span {
  color: var(--accent);
}

.other-services-heading h2 {
  max-width: 820px;
  font-size: clamp(45px, 4.5vw, 68px);
  text-shadow: 0 3px 30px rgba(0,0,0,.34);
}

.other-services-heading > p:last-child {
  max-width: 390px;
  color: rgba(255,255,255,.76);
  text-shadow: 0 2px 20px rgba(0,0,0,.42);
}

.other-services-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.22);
}

.other-service-card {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 0;
  background: #171415;
  transform: none;
}

.other-service-card.reveal {
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.other-service-card.reveal:nth-child(2) {
  transition-delay: .08s;
}

.other-service-card.reveal:nth-child(3) {
  transition-delay: .16s;
}

.other-service-card:hover {
  border: 0;
  transform: none;
}

.other-service-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,8,9,.22) 0%, rgba(9,8,9,.04) 36%, rgba(9,8,9,.18) 57%, rgba(9,8,9,.92) 100%),
    linear-gradient(90deg, rgba(9,8,9,.24), transparent 58%);
  transition: background .8s ease;
  pointer-events: none;
}

.other-service-card:hover::after {
  background:
    linear-gradient(180deg, rgba(9,8,9,.17) 0%, rgba(9,8,9,.02) 39%, rgba(9,8,9,.12) 58%, rgba(9,8,9,.88) 100%),
    linear-gradient(90deg, rgba(9,8,9,.18), transparent 62%);
}

.other-service-card figure {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  aspect-ratio: auto;
  background: #211d1f;
}

.other-service-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 1.35s var(--ease), filter .85s ease;
  will-change: transform;
}

.other-service-card:nth-child(1) figure img {
  object-position: 46% center;
}

.other-service-card:nth-child(2) figure img {
  object-position: 55% center;
}

.other-service-card:nth-child(3) figure img {
  object-position: 50% center;
}

.other-service-card:hover figure img {
  filter: brightness(1.06) saturate(1.04);
  transform: scale(1.055);
}

.other-service-copy {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 2.4vw, 42px);
  bottom: clamp(82px, 9vh, 108px);
  left: clamp(22px, 2.4vw, 42px);
  padding: 0;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.48);
}

.other-service-copy > small {
  margin-bottom: 9px;
  color: #f0a8b5;
  font-size: 9px;
}

.other-service-copy h3 {
  max-width: 420px;
  color: var(--white);
  font-size: clamp(29px, 2.45vw, 40px);
}

.other-service-copy p {
  min-height: 0;
  max-width: 450px;
  margin: 13px 0 17px;
  color: rgba(255,255,255,.82);
  font-size: clamp(10px, .78vw, 12px);
  line-height: 1.55;
}

.other-service-copy ul {
  gap: 5px;
}

.other-service-copy li {
  padding: 5px 8px;
  color: rgba(255,255,255,.84);
  border-color: rgba(255,255,255,.26);
  background: rgba(12,10,11,.24);
  backdrop-filter: blur(8px);
}

.other-services-footer {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 20px clamp(26px, 4vw, 72px) 24px;
  border-top-color: rgba(255,255,255,.18);
  background: linear-gradient(0deg, rgba(9,8,9,.82), rgba(9,8,9,.38));
}

.other-services-footer p {
  color: rgba(255,255,255,.7);
}

.other-services-footer .text-link {
  color: var(--white);
}

@media (max-width: 1100px) {
  .other-services-heading {
    grid-template-columns: minmax(130px, .55fr) minmax(390px, 1.65fr);
  }

  .other-services-heading > p:last-child {
    display: none;
  }
}

@media (max-width: 720px) {
  .other-services.section-space {
    height: 100svh;
    min-height: 760px;
    padding: 0;
  }

  .other-services-heading {
    display: block;
    padding: max(58px, calc(38px + env(safe-area-inset-top))) 18px 42px;
    background: linear-gradient(180deg, rgba(9,8,9,.9) 0%, rgba(9,8,9,.58) 58%, transparent 100%);
  }

  .other-services-heading .section-index {
    margin-bottom: 6px;
    font-size: 7px;
  }

  .other-services-heading h2 {
    max-width: 350px;
    font-size: clamp(24px, 6.8vw, 30px);
    line-height: .98;
  }

  .other-services-heading > p:last-child {
    display: none;
  }

  .other-services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .other-service-card {
    min-height: 0;
  }

  .other-service-card::after {
    background:
      linear-gradient(180deg, rgba(9,8,9,.12) 0%, transparent 34%, rgba(9,8,9,.16) 55%, rgba(9,8,9,.84) 100%),
      linear-gradient(90deg, rgba(9,8,9,.2), transparent 68%);
  }

  .other-service-card figure,
  .other-service-card figure img {
    width: 100%;
    height: 100%;
  }

  .other-service-card:nth-child(1) figure img,
  .other-service-card:nth-child(2) figure img,
  .other-service-card:nth-child(3) figure img {
    object-position: center;
  }

  .other-service-copy {
    right: 18px;
    bottom: 12px;
    left: 18px;
  }

  .other-service-copy > small {
    margin-bottom: 3px;
    font-size: 6px;
  }

  .other-service-copy h3 {
    font-size: clamp(19px, 5.4vw, 23px);
  }

  .other-service-copy p {
    display: -webkit-box;
    max-width: 360px;
    margin: 4px 0 6px;
    overflow: hidden;
    font-size: 8px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .other-service-copy ul {
    gap: 3px;
  }

  .other-service-copy li {
    padding: 3px 5px;
    font-size: 5px;
    backdrop-filter: blur(5px);
  }

  .other-services-footer {
    display: none;
  }
}

/* V29: Ortak tipografi sistemi ve bölümlere özel, ölçülü vurgu renkleri. */
.hero {
  --accent: #c85b6d;
  --accent-deep: #914151;
  --accent-soft: #e3a0aa;
}

#mutfaklar {
  --accent: #d2b37d;
  --accent-deep: #9e7d48;
  --accent-soft: #ead7ad;
}

#kapilar {
  --accent: #bd6c7b;
  --accent-deep: #914c5a;
  --accent-soft: #dda1ab;
}

#hizmetler {
  --accent: #aeb99d;
  --accent-deep: #758067;
  --accent-soft: #d3d9c8;
}

#iletisim {
  --accent: #c79575;
  --accent-deep: #94654d;
  --accent-soft: #e2bea6;
}

.hero h1,
.service-showcase h2,
.other-services-heading h2,
.contact-intro h2 {
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: -.045em;
}

.hero h1 em,
.service-showcase h2 em,
.other-services-heading h2 em,
.contact-intro h2 em {
  color: var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.hero .eyebrow,
.service-showcase-label,
.section-index,
.other-service-copy > small {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero .eyebrow,
#mutfaklar .service-showcase-label,
#kapilar .service-showcase-label,
.other-services .section-index span,
.other-service-copy > small,
.contact .section-index span {
  color: var(--accent);
}

.hero-copy,
.door-showcase-details > p,
.other-services-heading > p:last-child,
.other-service-copy p,
.contact-intro > p {
  color: rgba(255,255,255,.78);
}

#mutfaklar .service-showcase-mark span,
#mutfaklar .service-showcase-mark small,
#kapilar .service-showcase-mark span,
#kapilar .service-showcase-mark small {
  color: var(--accent);
}

#mutfaklar .service-showcase-mark i,
#kapilar .service-showcase-mark i {
  background: var(--accent);
}

#mutfaklar .service-showcase-stage,
#kapilar .service-showcase-stage,
.other-services.section-space,
.contact {
  box-shadow: inset 0 2px 0 var(--accent);
}

.other-service-card {
  --card-accent: var(--accent);
}

.other-service-card:nth-child(2) {
  --card-accent: #c5ad82;
}

.other-service-card:nth-child(3) {
  --card-accent: #b9a0a6;
}

.other-service-copy > small {
  color: var(--card-accent);
}

.other-service-copy li {
  border-color: color-mix(in srgb, var(--card-accent) 46%, transparent);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-soft);
}

.contact .button-accent {
  color: #211d1e;
  background: var(--accent);
}

.contact .button-accent:hover {
  color: #fff;
  background: var(--accent-deep);
}

@media (max-width: 720px) {
  #mutfaklar .service-showcase-stage,
  #kapilar .service-showcase-stage,
  .other-services.section-space,
  .contact {
    box-shadow: inset 0 1px 0 var(--accent);
  }
}

/* V30: Bölüm geçişlerini fotoğraf atmosferinde de görünür kılar. */
.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.8vw, 88px);
  line-height: .94;
}

.hero-copy {
  max-width: 660px;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(43,15,24,.92) 0%, rgba(30,18,23,.7) 40%, rgba(13,11,12,.18) 78%),
    linear-gradient(0deg, rgba(27,13,18,.72) 0%, transparent 52%);
}

#mutfaklar .service-showcase-shade {
  background:
    linear-gradient(90deg, rgba(55,40,20,.86) 0%, rgba(45,34,21,.62) 40%, rgba(24,20,15,.16) 73%, rgba(28,22,15,.24) 100%),
    linear-gradient(0deg, rgba(41,30,17,.86) 0%, rgba(33,25,16,.44) 36%, transparent 72%);
}

#kapilar .service-showcase-shade {
  background:
    linear-gradient(90deg, rgba(58,17,29,.91) 0%, rgba(46,19,28,.72) 43%, rgba(25,15,19,.28) 73%, rgba(35,16,23,.42) 100%),
    linear-gradient(0deg, rgba(47,16,26,.82) 0%, rgba(31,15,21,.36) 42%, transparent 72%);
}

#hizmetler .other-services-heading {
  background:
    linear-gradient(180deg, rgba(18,23,16,.94) 0%, rgba(18,23,16,.63) 55%, transparent 100%);
}

#hizmetler .other-service-card:nth-child(1)::after {
  background:
    linear-gradient(180deg, rgba(20,28,18,.23) 0%, rgba(17,25,16,.05) 36%, rgba(16,24,15,.2) 57%, rgba(13,20,12,.93) 100%),
    linear-gradient(90deg, rgba(25,34,22,.34), transparent 60%);
}

#hizmetler .other-service-card:nth-child(2)::after {
  background:
    linear-gradient(180deg, rgba(45,34,19,.2) 0%, rgba(42,31,18,.04) 36%, rgba(38,28,17,.18) 57%, rgba(28,20,13,.93) 100%),
    linear-gradient(90deg, rgba(52,39,22,.3), transparent 60%);
}

#hizmetler .other-service-card:nth-child(3)::after {
  background:
    linear-gradient(180deg, rgba(40,25,31,.21) 0%, rgba(36,23,29,.04) 36%, rgba(34,21,27,.18) 57%, rgba(25,16,21,.93) 100%),
    linear-gradient(90deg, rgba(45,28,36,.31), transparent 60%);
}

#hizmetler .other-services-footer {
  background:
    linear-gradient(0deg, rgba(15,21,13,.9), rgba(18,23,16,.46));
}

#iletisim {
  background: #271e1a;
}

#iletisim .contact-intro {
  background:
    radial-gradient(circle at 12% 8%, rgba(199,149,117,.13), transparent 38%),
    #271e1a;
}

#iletisim .contact-form {
  background:
    linear-gradient(145deg, rgba(199,149,117,.08), transparent 44%),
    #31241f;
}

#mutfaklar .service-showcase-stage,
#kapilar .service-showcase-stage,
.other-services.section-space,
.contact {
  box-shadow: inset 0 3px 0 var(--accent);
}

.kitchen-catalog-dialog .door-catalog-shell {
  min-height: 100%;
}

.kitchen-catalog-dialog .section-index span {
  color: #d2b37d;
}

.kitchen-catalog-dialog .kitchen-catalog-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 1.1vw, 18px);
  width: 100%;
  padding-bottom: 12px;
}

.kitchen-catalog-card {
  min-width: 0;
  padding: 5px;
  color: var(--white);
  text-align: left;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.025);
  cursor: pointer;
  transition: border-color .25s ease, transform .25s ease;
}

.kitchen-catalog-card:hover {
  z-index: 1;
  border-color: #d2b37d;
  transform: translateY(-3px);
}

.kitchen-catalog-card .service-model-image {
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #211f20;
}

.kitchen-catalog-card .service-model-image::after {
  background: linear-gradient(0deg, rgba(12,13,12,.2), transparent 32%);
}

.kitchen-catalog-card .service-model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.kitchen-catalog-card:hover .service-model-image img {
  transform: scale(1.025);
}

.kitchen-catalog-card .service-model-copy {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: baseline;
  margin-top: 5px;
  padding: 7px 2px 2px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.kitchen-catalog-card .service-model-copy strong {
  overflow: hidden;
  font-family: var(--sans);
  font-size: clamp(9px, .72vw, 11px);
  font-weight: 600;
  letter-spacing: .035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kitchen-catalog-card .service-model-copy small {
  flex: 0 0 auto;
  color: rgba(255,255,255,.5);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kitchen-gallery-dialog .project-dialog-header .section-index span,
.kitchen-gallery-dialog .lake-door-gallery-controls output {
  color: #d2b37d;
}

.kitchen-gallery-dialog .project-dialog-gallery .kitchen-detail img {
  background: #0e0d0d;
}

@media (min-width: 721px) {
  #mutfaklar .service-showcase-media img {
    filter: saturate(.95) contrast(1.02);
  }

  #kapilar .service-showcase-media img {
    filter: brightness(1.04) saturate(.92) contrast(1.02);
  }
}

@media (max-width: 1100px) {
  .kitchen-catalog-dialog .kitchen-catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero h1 {
    max-width: 520px;
    font-size: clamp(38px, 11.9vw, 58px);
    line-height: .96;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(39,14,23,.94) 0%, rgba(34,16,23,.77) 40%, rgba(28,14,20,.3) 76%, rgba(26,13,18,.24) 100%);
  }

  #mutfaklar .service-showcase-shade {
    background:
      linear-gradient(180deg, rgba(50,37,20,.13) 0%, rgba(48,35,19,.05) 32%, rgba(46,33,18,.2) 58%, rgba(40,28,16,.86) 100%),
      linear-gradient(90deg, rgba(50,37,20,.4) 0%, rgba(37,28,18,.08) 72%, rgba(42,31,18,.15) 100%);
  }

  #kapilar .service-showcase-shade {
    background:
      linear-gradient(180deg, rgba(55,17,29,.14) 0%, rgba(50,16,27,.05) 32%, rgba(48,15,26,.2) 58%, rgba(43,14,24,.84) 100%),
      linear-gradient(90deg, rgba(55,17,29,.42) 0%, rgba(38,15,23,.08) 72%, rgba(44,15,25,.16) 100%);
  }

  #hizmetler .other-services-heading {
    background:
      linear-gradient(180deg, rgba(18,23,16,.95) 0%, rgba(18,23,16,.66) 58%, transparent 100%);
  }

  #mutfaklar .service-showcase-stage,
  #kapilar .service-showcase-stage,
  .other-services.section-space,
  .contact {
    box-shadow: inset 0 2px 0 var(--accent);
  }

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

  .kitchen-catalog-card {
    padding: 3px;
  }

  .kitchen-catalog-card .service-model-copy {
    display: block;
    margin-top: 3px;
    padding: 5px 1px 2px;
  }

  .kitchen-catalog-card .service-model-copy strong {
    display: block;
    font-size: 8px;
  }

  .kitchen-catalog-card .service-model-copy small {
    display: block;
    margin-top: 2px;
    font-size: 7px;
  }
}

.partners {
  position: relative;
  overflow: hidden;
  padding: clamp(66px, 7vw, 104px) 0;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 10% 0%, rgba(174,185,157,.15), transparent 34%),
    radial-gradient(circle at 92% 105%, rgba(200,91,109,.15), transparent 34%),
    linear-gradient(135deg, #1b2018 0%, #211f1d 54%, #2d1c22 100%);
  box-shadow: inset 0 3px 0 #aeb99d;
}

.partners::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,.045);
  pointer-events: none;
}

.partners-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, .72fr) minmax(0, 2.28fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}

.partners-heading {
  max-width: 360px;
}

.partners-kicker {
  margin: 0 0 22px;
  color: #aeb99d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.partners h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

.partners h2 em {
  color: #dba0aa;
  font-family: var(--serif);
  font-weight: 400;
}

.partners-heading > p:last-child {
  max-width: 330px;
  margin: 25px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  line-height: 1.65;
}

.partners-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-logo {
  display: grid;
  place-items: center;
  height: clamp(84px, 8vw, 112px);
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(145deg, rgba(225,219,210,.96), rgba(193,186,176,.94));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.18),
    0 12px 30px rgba(8,10,7,.12);
  transition: transform .35s var(--ease), border-color .35s ease, background .35s ease;
}

.partner-logo:hover {
  border-color: rgba(219,160,170,.42);
  background:
    linear-gradient(145deg, rgba(235,229,220,.98), rgba(207,198,188,.96));
  transform: translateY(-4px);
}

.partner-logo img {
  width: auto;
  max-width: 82%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.partner-logo-lamar img {
  max-height: 84px;
}

@media (max-width: 1100px) {
  .partners-inner {
    grid-template-columns: minmax(210px, .75fr) minmax(0, 2.25fr);
    gap: 38px;
  }

  .partners-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .partner-logo {
    height: 88px;
  }
}

@media (max-width: 720px) {
  .partners {
    padding: 48px 0 54px;
    box-shadow: inset 0 2px 0 #aeb99d;
  }

  .partners::after {
    inset: 8px;
  }

  .partners-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .partners-heading {
    max-width: 300px;
  }

  .partners-kicker {
    margin-bottom: 12px;
  }

  .partners h2 {
    font-size: 36px;
  }

  .partners-heading > p:last-child {
    margin-top: 14px;
    font-size: 10px;
  }

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

  .partner-logo {
    height: 68px;
    padding: 6px;
  }

  .partner-logo img {
    max-width: 86%;
    max-height: 46px;
  }

  .partner-logo-lamar img {
    max-height: 54px;
  }
}

/* V38: Mobil bölüm bağlantılarında başlık ve katalog çağrısı tek ekrana sığar. */
@media (max-width: 720px) {
  #mutfaklar,
  #kapilar {
    scroll-margin-top: var(--header-h);
  }

  #mutfaklar .service-showcase-stage,
  #kapilar .service-showcase-stage {
    height: calc(100svh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
  }

  #mutfaklar .service-showcase-content,
  #kapilar .service-showcase-content {
    padding-bottom: max(58px, calc(32px + env(safe-area-inset-bottom)));
  }
}

/* V41: Üç ana sahnede masaüstü ve mobil için dengeli arka plan yumuşaklığı. */
.hero-photo img {
  filter: blur(.45px) saturate(.96) brightness(.97) contrast(.98);
  transform: scale(1.008);
}

#mutfaklar .service-showcase-media img,
#kapilar .service-showcase-media img {
  filter: blur(1.45px) saturate(.85) brightness(.88) contrast(.95);
  transform: scale(1.022);
}

/* V42: Mobilde üç ana sahnenin pus etkisi yaklaşık yüzde 15 azaltılır. */
@media (max-width: 720px) {
  .hero-photo img {
    filter: blur(.38px) saturate(.97) brightness(.98) contrast(.985);
    transform: scale(1.006);
  }

  #mutfaklar .service-showcase-media img,
  #kapilar .service-showcase-media img {
    filter: blur(1.23px) saturate(.87) brightness(.9) contrast(.96);
    transform: scale(1.019);
  }
}

/* V45: Sabit sosyal ikonlar kompakt ölçü ve dengeli aralıkla korunur. */
.floating-social {
  width: 47px;
  height: 47px;
}

.floating-whatsapp svg {
  width: 22.5px;
}

.floating-instagram svg {
  width: 21px;
}

.floating-instagram {
  bottom: 77px;
}

@media (max-width: 720px) {
  .floating-whatsapp {
    bottom: 8px;
  }

  .floating-instagram {
    bottom: 63px;
  }
}

/* V47: Kaydırmada iki sosyal ikon da aynı oranda hafifçe soluklaşır. */
.floating-social {
  transition:
    transform .25s,
    background .25s,
    opacity .35s ease,
    filter .35s ease;
}

body.social-icons-soft .floating-instagram,
body.social-icons-soft .floating-whatsapp {
  opacity: .64;
  filter: saturate(.78);
}

.mobile-header-approach-haze {
  display: none;
}

/* V57: Çubuğa yaklaşan içerik, ana pusun yüzde 50'sine kadar yumuşar. */
@media (max-width: 720px) {
  .site-header {
    transition:
      top .42s var(--ease),
      left .42s var(--ease),
      right .42s var(--ease),
      height .35s,
      color .35s,
      background .35s,
      border-color .35s,
      border-radius .42s var(--ease),
      box-shadow .35s;
  }

  .site-header.is-scrolled {
    top: 0;
    right: 0;
    left: 0;
    height: 72px;
    overflow: hidden;
    color: rgba(20, 23, 21, .92);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .52);
    border-radius: 0 0 22px 22px;
    background: rgba(255, 255, 255, .65);
    -webkit-backdrop-filter: blur(var(--mobile-header-blur, 0px));
    backdrop-filter: blur(var(--mobile-header-blur, 0px));
    box-shadow:
      0 9px 22px rgba(13, 16, 14, .1),
      inset 0 1px 0 rgba(255, 255, 255, .58),
      inset 0 -1px 0 rgba(255, 255, 255, .3);
  }

  .site-header .brand-tagline {
    color: rgba(255, 255, 255, .92);
    transition: color .35s, opacity .35s;
  }

  .site-header.is-scrolled .brand-tagline {
    color: rgba(20, 23, 21, .88);
  }

  .site-header.is-scrolled::before {
    display: none;
  }

  .site-header.is-scrolled::after {
    display: none;
  }

  .site-header.is-scrolled .header-inner {
    position: relative;
    z-index: 1;
  }

  .mobile-header-approach-haze {
    position: fixed;
    z-index: 99;
    top: 72px;
    right: 0;
    left: 0;
    display: block;
    height: 72px;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    -webkit-backdrop-filter: blur(var(--mobile-header-approach-blur, 0px));
    backdrop-filter: blur(var(--mobile-header-approach-blur, 0px));
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .58) 42%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .58) 42%, transparent 100%);
    transition: opacity .24s ease, visibility .24s ease;
  }

  body.mobile-header-glass-active .mobile-header-approach-haze {
    visibility: visible;
    opacity: 1;
  }

  body.menu-open .mobile-header-approach-haze {
    visibility: hidden;
    opacity: 0;
  }

  .site-header.is-scrolled .brand .brand-logo-frame {
    border-color: transparent;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
  }

  .site-header.is-scrolled .menu-toggle {
    border-color: transparent;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
  }

  .site-header.is-scrolled .menu-toggle > span:not(.sr-only) {
    background: rgba(18, 21, 19, .88);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .38);
  }

  .site-header.is-scrolled.menu-open {
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-h);
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
  }

  .site-header.is-scrolled.menu-open::before,
  .site-header.is-scrolled.menu-open::after {
    display: none;
  }

  .site-header.is-scrolled.menu-open .brand-tagline {
    color: rgba(255, 255, 255, .92);
  }

  .site-header.is-scrolled.menu-open .brand .brand-logo-frame {
    border-color: rgba(255, 255, 255, .46);
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
  }

  .site-header.is-scrolled.menu-open .menu-toggle {
    border-color: transparent;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
  }

  .site-header.is-scrolled.menu-open .menu-toggle > span:not(.sr-only) {
    background: var(--white);
    box-shadow: none;
  }
}

/* V65: Bölüm bağlantıları sabit başlığın altında doğru konuma kayar. */
.section-anchor,
#ana-sayfa,
#cozum-ortaklarimiz,
#iletisim {
  scroll-margin-top: 86px;
}

.section-anchor {
  display: block;
  width: 100%;
  height: 0;
}

/* V64: Model bağlantıları ve mobil menü kartları aynı gül-krem çerçeve dilini kullanır. */
.hero-actions .button-light,
.hero-actions .button-outline {
  color: var(--ink);
  border-color: rgba(151, 67, 84, .22);
  border-radius: 13.2px;
  background: rgba(238, 219, 217, .97);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  backdrop-filter: blur(14px) saturate(1.05);
  box-shadow:
    0 5px 14px rgba(13, 16, 14, .09),
    inset 0 1px 0 rgba(255, 255, 255, .62);
}

.hero-actions .button-light:hover,
.hero-actions .button-outline:hover {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
}

/* Ortak dış kutu yoktur; her menü bağlantısı kendi bağımsız kartındadır. */
@media (max-width: 720px) {
  body.menu-open {
    overflow: auto;
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    top: 86px;
    right: 14px;
    bottom: auto;
    left: auto;
    inset: 86px 14px auto auto;
    display: flex;
    width: max-content;
    max-width: calc(100vw - 28px);
    height: auto;
    padding: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 11.5px;
    color: rgba(18, 21, 19, .9);
    border: 0;
    border-radius: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(18px, -24px) scale(.28);
    transform-origin: top right;
    will-change: opacity, transform;
    transition:
      opacity .24s ease,
      visibility .32s ease,
      transform .44s var(--ease);
  }

  .site-nav a {
    width: max-content;
    padding: 11px 13.2px;
    text-align: right;
    color: inherit;
    border: 1px solid rgba(151, 67, 84, .22);
    border-radius: 13.2px;
    background: rgba(238, 219, 217, .97);
    -webkit-backdrop-filter: blur(14px) saturate(1.05);
    backdrop-filter: blur(14px) saturate(1.05);
    box-shadow:
      0 5px 14px rgba(13, 16, 14, .09),
      inset 0 1px 0 rgba(255, 255, 255, .62);
    font-family: var(--sans);
    font-size: 15.125px;
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: .11em;
    text-transform: uppercase;
    opacity: 0;
    transform: translate(16px, -15px) scale(.72);
    transform-origin: top right;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .menu-open .site-nav a {
    animation: mobileMenuItemEmerge .46s var(--ease) both;
  }

  .menu-open .site-nav a:nth-child(1) { animation-delay: .06s; }
  .menu-open .site-nav a:nth-child(2) { animation-delay: .11s; }
  .menu-open .site-nav a:nth-child(3) { animation-delay: .16s; }
  .menu-open .site-nav a:nth-child(4) { animation-delay: .21s; }

  @keyframes mobileMenuItemEmerge {
    0% {
      opacity: 0;
      transform: translate(16px, -15px) scale(.72);
    }
    72% {
      opacity: 1;
      transform: translate(-2px, 1px) scale(1.02);
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }

  .site-header.menu-open {
    overflow: visible;
  }

  .site-header.menu-open:not(.is-scrolled) {
    height: var(--header-h);
    color: var(--white);
    border-color: rgba(255, 255, 255, .2);
    border-radius: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
  }

  .site-header.is-scrolled.menu-open {
    height: 72px;
    color: rgba(20, 23, 21, .92);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .52);
    border-radius: 0 0 22px 22px;
    background: rgba(255, 255, 255, .65);
    -webkit-backdrop-filter: blur(var(--mobile-header-blur, 0px));
    backdrop-filter: blur(var(--mobile-header-blur, 0px));
    box-shadow:
      0 9px 22px rgba(13, 16, 14, .1),
      inset 0 1px 0 rgba(255, 255, 255, .58);
  }

  .site-header.is-scrolled.menu-open .brand-tagline {
    color: rgba(20, 23, 21, .88);
  }

  .site-header.is-scrolled.menu-open .brand-logo-light {
    opacity: 0;
  }

  .site-header.is-scrolled.menu-open .brand-logo-dark {
    opacity: 1;
  }

  .site-header.is-scrolled.menu-open .brand .brand-logo-frame {
    border-color: transparent;
  }

  .site-header.is-scrolled.menu-open .menu-toggle {
    color: rgba(18, 21, 19, .9);
  }

  .site-header.is-scrolled.menu-open .menu-toggle > span:not(.sr-only) {
    background: rgba(18, 21, 19, .88);
    box-shadow: none;
  }
}
