/* ===========================
   STUDIO PAGE — MAIN
   =========================== */

.ss-main-studio {
  padding-top: 82px;
}

/* ограничитель ширины картинок на этой странице */
.st-hero-image,
.st-flow-image,
.st-scenario-image {
  width: 100%;
  max-width: 350px;
  height: auto;
}

/* ===========================
   1. PROJE HERO
   =========================== */

.st-hero {
  background: radial-gradient(circle at 10% -10%, #3b2246 0%, #0c0911 55%, #050308 100%);
}

.st-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: center;
  padding-block: 72px;
}

.st-hero-copy {
  max-width: 560px;
}

.st-hero-title {
  font-size: clamp(2rem, 2.4vw + 1.2rem, 2.7rem);
  line-height: 1.16;
  margin: 0 0 14px;
  background: linear-gradient(120deg, #ffffff, #f4c978, #c86c89);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.st-hero-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
  align-items: stretch;
}

.st-hero-card {
  position: relative;
  padding: 10px;
  border-radius: 26px;
  background: radial-gradient(circle at 0 0, rgba(244, 201, 120, 0.08), rgba(5, 3, 8, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--ss-shadow-soft);
  overflow: hidden;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.st-hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.95);
}

.st-hero-card--main {
  align-self: center;
}

.st-hero-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(5, 3, 8, 0.9);
  border: 1px solid rgba(244, 201, 120, 0.8);
  font-size: 0.8rem;
  white-space: nowrap;
}

.st-hero-label--small {
  font-size: 0.76rem;
}

.st-hero-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ===========================
   2. PROJE AKIŞI
   =========================== */

.st-flow {
  background: radial-gradient(circle at 90% 0, #352046 0%, #0c0911 55%, #050308 100%);
}

.st-flow-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.st-flow-head {
  max-width: 620px;
}

.st-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: center;
}

.st-flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 22px;
  padding: 14px 16px;
  background: radial-gradient(circle at 0 0, rgba(244, 201, 120, 0.08), rgba(5, 3, 8, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--ss-shadow-subtle);
}

.st-flow-step {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.st-flow-step:last-child {
  margin-bottom: 0;
}

.st-flow-step::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4c978, #c86c89);
  box-shadow: 0 0 12px rgba(244, 201, 120, 0.7);
}

.st-flow-title {
  margin: 0 0 2px;
  font-size: 0.96rem;
}

.st-flow-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ss-color-text-muted);
}

.st-flow-visual {
  position: relative;
  min-height: 210px;
}

.st-flow-photo {
  position: absolute;
  margin: 0;
}

.st-flow-photo--secondary {
  right: 0;
  bottom: 0;
}

.st-flow-photo:first-child {
  left: 4%;
  top: 0;
}

.st-flow-image {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.95);
}

/* ===========================
   3. IŞIK SENARYOLARI PANOSU
   =========================== */

.st-scenarios {
  background: radial-gradient(circle at 10% 100%, #4a5ba8 0%, #0c0911 55%, #050308 100%);
}

.st-scenarios-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.st-scenarios-head {
  max-width: 620px;
}

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

.st-scenario-card {
  padding: 10px 10px 12px;
  border-radius: 22px;
  background: radial-gradient(circle at 0 0, rgba(244, 201, 120, 0.08), rgba(5, 3, 8, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--ss-shadow-subtle);
}

.st-scenario-image {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.st-scenario-caption {
  margin-top: 6px;
  font-size: 0.86rem;
  color: var(--ss-color-text-muted);
}

/* ===========================
   RESPONSIVE — STUDIO 1–3
   =========================== */

@media (max-width: 1024px) {
  .st-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .st-hero-mosaic {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .st-flow-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .st-scenarios-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .st-hero-inner {
    padding-block: 56px;
  }

  .st-hero-mosaic {
    grid-template-columns: minmax(0, 1fr);
  }

  .st-hero-card--main {
    max-width: 320px;
    margin: 0 auto;
  }

  .st-hero-side {
    flex-direction: row;
    justify-content: center;
  }

  .st-flow-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .st-flow-visual {
    min-height: 0;
  }

  .st-flow-photo {
    position: static;
  }

  .st-flow-visual {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .st-scenarios-board {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .st-hero-side {
    flex-direction: column;
  }

  .st-flow-visual {
    flex-direction: column;
  }

  .st-scenarios-board {
    grid-template-columns: minmax(0, 1fr);
  }
}
.st-hero-image,
.st-flow-image,
.st-scenario-image,
.st-plan-image,
.st-living-image,
.st-system-image {
  width: 100%;
  max-width: 350px;
  height: auto;
}
/* ===========================
   4. PENCERE PLAN PANOSU
   =========================== */

.st-plans {
  background: radial-gradient(circle at 80% 0, #311f42 0%, #0c0911 55%, #050308 100%);
}

.st-plans-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.st-plans-head {
  max-width: 620px;
}

.st-plans-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: center;
}

.st-plans-notes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.st-plan-note {
  padding: 10px 12px;
  border-radius: 18px;
  background: radial-gradient(circle at 0 0, rgba(244, 201, 120, 0.08), rgba(5, 3, 8, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.st-plan-title {
  margin: 0 0 4px;
  font-size: 0.94rem;
}

.st-plan-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ss-color-text-muted);
}

.st-plans-photos {
  position: relative;
  min-height: 210px;
}

.st-plan-photo {
  position: absolute;
  margin: 0;
}

.st-plan-photo--top {
  left: 4%;
  top: 0;
}

.st-plan-photo--bottom {
  right: 2%;
  bottom: 0;
}

.st-plan-image {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.95);
}

/* ===========================
   5. SALON PROJESİ — ÖNCE / SONRA
   =========================== */

.st-living {
  background: radial-gradient(circle at 0 100%, #3a2449 0%, #0c0911 55%, #050308 100%);
}

.st-living-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.st-living-head {
  max-width: 620px;
}

.st-living-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: center;
}

.st-living-copy {
  max-width: 520px;
}

.st-living-title {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.st-living-text {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: var(--ss-color-text-muted);
}

.st-living-beforeafter {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.st-living-card {
  position: relative;
  padding: 10px;
  border-radius: 22px;
  background: radial-gradient(circle at 0 0, rgba(244, 201, 120, 0.08), rgba(5, 3, 8, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--ss-shadow-subtle);
}

.st-living-tag {
  position: absolute;
  left: 12px;
  top: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(5, 3, 8, 0.9);
  border: 1px solid rgba(244, 201, 120, 0.7);
}

.st-living-tag--before {
  border-color: rgba(244, 201, 120, 0.9);
}

.st-living-tag--after {
  border-color: rgba(200, 108, 137, 0.9);
}

.st-living-image {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ===========================
   6. SİSTEM HARİTASI
   =========================== */

.st-systems {
  background: radial-gradient(circle at 100% 0, #28324a 0%, #0c0911 55%, #050308 100%);
}

.st-systems-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.st-systems-head {
  max-width: 620px;
}

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

.st-system-card {
  padding: 14px 12px 16px;
  border-radius: 22px;
  background: radial-gradient(circle at 0 0, rgba(10, 12, 30, 0.9), rgba(5, 3, 8, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--ss-shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.st-system-title {
  margin: 0 0 4px;
  font-size: 0.96rem;
}

.st-system-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ss-color-text-muted);
}

.st-system-figure {
  margin: 0;
}

.st-system-image {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.95);
}
.st-hero-image,
.st-flow-image,
.st-scenario-image,
.st-plan-image,
.st-living-image,
.st-system-image,
.st-bedroom-image,
.st-corner-image,
.st-tools-image {
  width: 100%;
  max-width: 350px;
  height: auto;
}
/* ===========================
   7. YATAK ODASI PROJESİ — ZONLAMA
   =========================== */

.st-bedroom {
  background: radial-gradient(circle at 10% 100%, #4a5ba8 0%, #0c0911 55%, #050308 100%);
}

.st-bedroom-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.st-bedroom-head {
  max-width: 620px;
}

.st-bedroom-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: center;
}

.st-bedroom-copy {
  max-width: 520px;
}

.st-bedroom-title {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.st-bedroom-text {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: var(--ss-color-text-muted);
}

.st-bedroom-layers {
  position: relative;
  min-height: 220px;
}

.st-bedroom-photo {
  position: absolute;
  margin: 0;
}

.st-bedroom-photo--base {
  left: 4%;
  top: 0;
}

.st-bedroom-photo--overlay {
  right: 2%;
  bottom: 0;
}

.st-bedroom-image {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.95);
}

/* ===========================
   8. KÖŞE PENCERE PROJESİ
   =========================== */

.st-corner {
  background: radial-gradient(circle at 80% 0, #311f42 0%, #0c0911 55%, #050308 100%);
}

.st-corner-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.st-corner-head {
  max-width: 620px;
}

.st-corner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: center;
}

.st-corner-copy {
  max-width: 480px;
}

.st-corner-title {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.st-corner-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ss-color-text-muted);
}

.st-corner-photo {
  margin: 0;
}

.st-corner-photo--wide {
  grid-row: span 2;
}

.st-corner-image {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.95);
}

/* ===========================
   9. STUDIO ARAÇLARI PANOSU
   =========================== */

.st-tools {
  background: radial-gradient(circle at 0 100%, #3a2449 0%, #0c0911 55%, #050308 100%);
}

.st-tools-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.st-tools-head {
  max-width: 620px;
}

.st-tools-board {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: center;
}

.st-tools-notes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.st-tools-note {
  padding: 10px 12px;
  border-radius: 18px;
  background: radial-gradient(circle at 0 0, rgba(244, 201, 120, 0.08), rgba(5, 3, 8, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.st-tools-title {
  margin: 0 0 4px;
  font-size: 0.94rem;
}

.st-tools-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ss-color-text-muted);
}

.st-tools-photos {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.st-tools-photo {
  margin: 0;
}

.st-tools-image {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.95);
}
/* ===========================
   RESPONSIVE — STUDIO 7–9
   =========================== */

@media (max-width: 1024px) {
  .st-bedroom-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .st-corner-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    grid-auto-rows: auto;
  }

  .st-tools-board {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .st-bedroom-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .st-bedroom-layers {
    min-height: 0;
  }

  .st-bedroom-photo {
    position: static;
  }

  .st-bedroom-layers {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .st-corner-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .st-tools-board {
    grid-template-columns: minmax(0, 1fr);
  }

  .st-tools-photos {
    flex-direction: row;
  }
}

@media (max-width: 640px) {
  .st-bedroom-layers {
    flex-direction: column;
  }

  .st-tools-photos {
    flex-direction: column;
  }
}
.st-hero-image,
.st-flow-image,
.st-scenario-image,
.st-plan-image,
.st-living-image,
.st-system-image,
.st-bedroom-image,
.st-corner-image,
.st-tools-image,
.st-install-image,
.st-workshop-image,
.st-diary-image {
  width: 100%;
  max-width: 350px;
  height: auto;
}
/* ===========================
   10. MONTAJ GÜNÜ SAHNELERİ
   =========================== */

.st-install {
  background: radial-gradient(circle at 90% 0, #2f2340 0%, #0c0911 55%, #050308 100%);
}

.st-install-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.st-install-head {
  max-width: 620px;
}

.st-install-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.st-install-card {
  flex: 1 1 200px;
  max-width: 280px;
  padding: 12px;
  border-radius: 20px;
  background: radial-gradient(circle at 0 0, rgba(244, 201, 120, 0.08), rgba(5, 3, 8, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--ss-shadow-subtle);
}

.st-install-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--ss-radius-pill);
  background: rgba(5, 3, 8, 0.9);
  border: 1px solid rgba(244, 201, 120, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.st-install-pill--mid {
  border-color: rgba(74, 91, 168, 0.9);
}

.st-install-pill--late {
  border-color: rgba(200, 108, 137, 0.9);
}

.st-install-figure {
  margin: 0 0 6px;
}

.st-install-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ss-color-text-muted);
}

/* ===========================
   11. ATÖLYE DETAYI
   =========================== */

.st-workshop {
  background: radial-gradient(circle at 0 100%, #382349 0%, #0c0911 55%, #050308 100%);
}

.st-workshop-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.st-workshop-head {
  max-width: 620px;
}

.st-workshop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: center;
}

.st-workshop-copy {
  max-width: 540px;
}

.st-workshop-title {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.st-workshop-text {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: var(--ss-color-text-muted);
}

.st-workshop-gallery {
  position: relative;
  min-height: 210px;
}

.st-workshop-photo {
  position: absolute;
  margin: 0;
}

.st-workshop-photo--small {
  right: 2%;
  bottom: 0;
}

.st-workshop-photo:first-child {
  left: 4%;
  top: 0;
}

.st-workshop-image {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.95);
}

/* ===========================
   12. PROJE GÜNLÜĞÜ NOTLARI
   =========================== */

.st-diary {
  background: radial-gradient(circle at 50% 120%, #43305a 0%, #0c0911 60%, #050308 100%);
}

.st-diary-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.st-diary-head {
  max-width: 620px;
}

.st-diary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: center;
}

.st-diary-notes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.st-diary-note {
  padding: 10px 12px;
  border-radius: 18px;
  background: radial-gradient(circle at 0 0, rgba(244, 201, 120, 0.08), rgba(5, 3, 8, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.st-diary-title {
  margin: 0 0 4px;
  font-size: 0.94rem;
}

.st-diary-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ss-color-text-muted);
}

.st-diary-photos {
  position: relative;
  min-height: 210px;
}

.st-diary-photo {
  position: absolute;
  margin: 0;
}

.st-diary-photo--top {
  left: 4%;
  top: 0;
}

.st-diary-photo--bottom {
  right: 2%;
  bottom: 0;
}

.st-diary-image {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.95);
}
/* ===========================
   RESPONSIVE — STUDIO 10–12
   =========================== */

@media (max-width: 1024px) {
  .st-workshop-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .st-diary-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .st-install-strip {
    justify-content: flex-start;
  }

  .st-workshop-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .st-workshop-gallery {
    min-height: 0;
  }

  .st-workshop-photo {
    position: static;
  }

  .st-workshop-gallery {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .st-diary-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .st-diary-photos {
    min-height: 0;
  }

  .st-diary-photo {
    position: static;
  }

  .st-diary-photos {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .st-install-card {
    max-width: 100%;
  }

  .st-workshop-gallery {
    flex-direction: column;
  }

  .st-diary-photos {
    flex-direction: column;
  }
}
.st-hero-image,
.st-flow-image,
.st-scenario-image,
.st-plan-image,
.st-living-image,
.st-system-image,
.st-bedroom-image,
.st-corner-image,
.st-tools-image,
.st-install-image,
.st-workshop-image,
.st-diary-image,
.st-balcony-image,
.st-hallway-image,
.st-mood-image,
.st-map-image,
.st-outro-image {
  width: 100%;
  max-width: 350px;
  height: auto;
}
/* ===========================
   13. BALKON & LOJYA PROJESİ
   =========================== */

.st-balcony {
  background: radial-gradient(circle at 10% 0, #3a2449 0%, #0c0911 55%, #050308 100%);
}

.st-balcony-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.st-balcony-head {
  max-width: 620px;
}

.st-balcony-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: center;
}

.st-balcony-copy {
  max-width: 540px;
}

.st-balcony-title {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.st-balcony-text {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: var(--ss-color-text-muted);
}

.st-balcony-photos {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.st-balcony-photo {
  margin: 0;
}

.st-balcony-photo--screen {
  align-self: flex-end;
}

.st-balcony-image {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.95);
}

/* ===========================
   14. KORİDOR PROJESİ
   =========================== */

.st-hallway {
  background: radial-gradient(circle at 90% 0, #2f2340 0%, #0c0911 55%, #050308 100%);
}

.st-hallway-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.st-hallway-head {
  max-width: 620px;
}

.st-hallway-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: center;
}

.st-hallway-copy {
  max-width: 500px;
}

.st-hallway-title {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.st-hallway-text {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: var(--ss-color-text-muted);
}

.st-hallway-photo {
  margin: 0;
}

.st-hallway-photo--detail {
  align-self: flex-end;
}

.st-hallway-image {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.95);
}

/* ===========================
   15. MOODBOARD — TON & DOKU
   =========================== */

.st-mood {
  background: radial-gradient(circle at 50% 120%, #43305a 0%, #0c0911 60%, #050308 100%);
}

.st-mood-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.st-mood-head {
  max-width: 620px;
}

.st-mood-board {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.st-mood-card {
  margin: 0;
  padding: 10px;
  border-radius: 22px;
  background: radial-gradient(circle at 0 0, rgba(244, 201, 120, 0.08), rgba(5, 3, 8, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--ss-shadow-subtle);
}

.st-mood-card--small {
  padding: 8px;
}

.st-mood-image {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ===========================
   16. HARİTA — PROJE BÖLGELERİ
   =========================== */

.st-map {
  background: radial-gradient(circle at 0 0, #311f42 0%, #0c0911 55%, #050308 100%);
}

.st-map-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.st-map-head {
  max-width: 620px;
}

.st-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: center;
}

.st-map-copy {
  max-width: 540px;
}

.st-map-text {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: var(--ss-color-text-muted);
}

.st-map-photos {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.st-map-photo {
  margin: 0;
}

.st-map-photo--studio {
  align-self: flex-end;
}

.st-map-image {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.95);
}

/* ===========================
   17. KAPANIŞ — BİR SONRAKİ ADIM
   =========================== */

.st-outro {
  background: radial-gradient(circle at 50% 120%, #4a5ba8 0%, #0c0911 60%, #050308 100%);
}

.st-outro-inner {
  display: flex;
  justify-content: center;
}

.st-outro-card {
  width: 100%;
  max-width: 960px;
  padding: 20px 20px 22px;
  border-radius: 26px;
  background: radial-gradient(circle at 0 0, rgba(244, 201, 120, 0.12), rgba(5, 3, 8, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--ss-shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.st-outro-copy {
  max-width: 560px;
}

.st-outro-photo {
  position: relative;
}

.st-outro-image {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.98);
}

.st-outro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.st-outro-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(244, 201, 120, 0.9);
  color: #ffffff;
  background: transparent;
  transition: background-color 0.25s ease-out, color 0.25s ease-out,
    box-shadow 0.25s ease-out, transform 0.2s ease-out;
}

.st-outro-link--alt {
  border-color: rgba(200, 108, 137, 0.9);
}

.st-outro-link:hover {
  background: rgba(244, 201, 120, 0.14);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.7);
}
/* ===========================
   RESPONSIVE — STUDIO 13–17
   =========================== */

@media (max-width: 1024px) {
  .st-balcony-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .st-hallway-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }

  .st-mood-board {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .st-map-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .st-outro-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .st-balcony-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .st-hallway-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .st-mood-board {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .st-map-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .st-balcony-photos {
    flex-direction: column;
  }

  .st-mood-board {
    grid-template-columns: minmax(0, 1fr);
  }

  .st-outro-card {
    padding-inline: 16px;
  }
}
/* ===========================
   RESPONSIVE — STUDIO 10–12
   =========================== */

@media (max-width: 1024px) {
  .st-workshop-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .st-diary-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .st-install-strip {
    justify-content: flex-start;
  }

  .st-workshop-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .st-workshop-gallery {
    min-height: 0;
  }

  .st-workshop-photo {
    position: static;
  }

  .st-workshop-gallery {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .st-diary-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .st-diary-photos {
    min-height: 0;
  }

  .st-diary-photo {
    position: static;
  }

  .st-diary-photos {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .st-install-card {
    max-width: 100%;
  }

  .st-workshop-gallery {
    flex-direction: column;
  }

  .st-diary-photos {
    flex-direction: column;
  }
}
