@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700&display=swap');

:root {
  --color-bg: #ffffff;
  --color-primary: #001689; /* Brand Blue */
  --color-light: #f4f5f8;
  --color-dark: #000B5B;
  --color-white: #ffffff;
  --font-main: 'Outfit', sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --line-height-tight: 1.1;
  --line-height-base: 1.5;
  --line-height-relaxed: 1.7;
  --text-size-micro: 0.58rem;
  --text-size-caption: 0.72rem;
  --text-size-body: 0.9rem;
  --text-size-body-fluid: clamp(0.9rem, 1.2vw, 1.05rem);
  --text-size-title-compact: clamp(2rem, 3.5vw, 3.2rem);
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Splash Screen */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash-logo {
  width: 200px;
  max-width: 50vw;
  height: auto;
  display: block;
  opacity: 0;
  animation: splashIntroPremium 2.4s ease-out forwards;
}

@keyframes splashIntroPremium {
  0% { transform: scale(1.5); opacity: 0; filter: blur(15px); }
  30% { transform: scale(1); opacity: 1; filter: blur(0); }
  75% { transform: scale(0.95); opacity: 1; filter: blur(0); }
  100% { transform: scale(1.5); opacity: 0; filter: blur(15px); }
}

.body-no-scroll {
  overflow: hidden !important;
  height: 100vh;
}

.splash-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.6;
}

ul {
  list-style: none;
}

/* Header & Menu */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  z-index: 1000;
  color: var(--color-primary);
  background: white;
  border-bottom: 1px solid var(--color-primary);
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.header--hidden {
  transform: translateY(-100%);
}

.header-container {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 var(--spacing-md);
  position: relative;
  height: 100%;
}









.menu-container {
  display: flex;
  align-items: center;
  width: 100%;
  flex: 1;
  height: 100%;
}

.menu-drawer {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  height: 100%;
}

.nav-main {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0;
  justify-content: space-between;
  height: 100%;
}

.nav-links {
  list-style: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  height: 100%;
  margin: 0;
  display: flex;
}

/* Ã–nemli olan grup: Objects - Spaces - Awards - Sustainability */
.nav-primary {
  display: flex;
  flex: 1;
  font-weight: 500;
}

.nav-primary li {
  flex: 1; /* Orijinal hizalama iÃ§in eÅŸit parÃ§alama */
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Sola dayalÄ± (hÃ¼cre iÃ§inde) */
  padding-left: 1.5vw;
  border-right: 1px solid var(--color-primary);
}

/* Ä°kinci plandaki grup: About - Contact */
.nav-secondary {
  display: flex;
  font-weight: 500;
  margin-left: auto;
}

.nav-secondary li {
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5vw;
}
.nav-secondary li:last-child {
  border-right: none;
}

.language-switcher {
  display: flex;
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-left: auto;
  align-items: center;
  height: 100%;
  padding-left: 1.5vw;
  position: relative;
  border-left: 1px solid var(--color-primary);
}

.lang-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-trigger {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
}

.lang-trigger:hover {
  opacity: 1;
}

.lang-dot {
  font-size: 0.8rem;
  line-height: 1;
  opacity: 0.4;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background: #fff;
  border: 1px solid var(--color-primary);
  display: none;
  flex-direction: column;
  z-index: 1000;
  min-width: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.lang-menu.is-open {
  display: flex;
}

.lang-option {
  padding: 0.4rem 0.6rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: background 0.2s;
}

.lang-option:hover {
  background: rgba(0,11,59,0.05);
}

.lang-dropdown * {
  pointer-events: none;
}

.lang-dropdown, .lang-trigger, .lang-option {
  pointer-events: auto !important;
}





/* Homepage Hero with Image */
.hero-image-bg {
  min-height: 100vh;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* Turuncu Ã§izgi / logo hizasÄ±na yaslama iÃ§in sola dayadÄ±k */
  text-align: left;
  padding: 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f4f5f8;
}

.hero-overlay {
  display: none; /* User requested removal of blue filter */
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding-left: 10vw;
  padding-right: var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Sol Ã¼st konumlandÄ±rma: MAKE nav sol kenarÄ±yla eÅŸleÅŸir.
   header-container: padding-left 2rem = 32px
   logo-link: ~90px + 2vw padding-right
   nav-primary li: padding-left 1.5vw
   Toplam â‰ˆ 2rem + 2vw + 1.5vw = 2rem + 3.5vw */
.hero-content--topleft {
  position: absolute;
  top: calc(40px + 5vh);
  left: calc(2rem + 3.5vw);
  max-width: 52vw;
  padding: 0;
}


.hero-text.light-text {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  margin: 0;
}

/* BÃ¼yÃ¼k versiyon â€” sol Ã¼st hero */
.hero-text--large.light-text {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,0.55);
  margin: 0;
}

/* Project Gallery Grid */
.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-white);
  color: var(--color-primary);
  padding: 0.5rem 0;
  display: flex;
  white-space: nowrap;
  border-bottom: none;
  height: 45px;
  align-items: center;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  animation: scroll-left 25s linear infinite;
}

.marquee-content span {
  font-size: 1.1rem;
  font-family: inherit;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 0.5rem;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.project-gallery {
  padding: 0; /* No padding anywhere */
  max-width: 100vw; /* Full width */
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px; /* Grid tabanlÄ± iÃ§ Ã§izgiler */
  background-color: var(--color-primary); /* BoÅŸluklarÄ±n Ã§izgi olmasÄ±na yarar */
  border-top: 1.5px solid var(--color-primary);
  border-bottom: 1.5px solid var(--color-primary);
}

.gallery-item {
  display: block;
  overflow: hidden;
  position: relative;
  background-color: #f4f5f8;
}

.gallery-img-wrapper {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f4f5f8;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.gallery-item:hover .gallery-img-wrapper img {
  transform: scale(1.05);
}

.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  color: var(--color-white);
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  opacity: 0; 
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-info {
  opacity: 1; 
}

.gallery-project-title {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.2, 1);
}

.gallery-project-category {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.8;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.2, 1);
  transition-delay: 0.05s;
}

.gallery-item:hover .gallery-project-title,
.gallery-item:hover .gallery-project-category {
  transform: translateY(0);
}

/* Project Detail Page */
.project-detail-hero {
  width: 100%;
  height: 80vh;
  background: #f4f5f8;
}

.full-width-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-md);
}

.project-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(0, 22, 137, 0.2);
  padding-bottom: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
  gap: 1rem;
}

.project-title {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.project-meta {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.project-description {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.secondary-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* About Page (Makara) */
.about-section {
  padding: calc(140px + 8vh) var(--spacing-md) var(--spacing-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: var(--spacing-lg);
  max-width: 900px;
  margin: 0 auto;
  min-height: 80vh;
}

/* about-logo-col removed */

.about-text-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.about-intro {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: var(--spacing-lg);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.services-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left; /* Keep bullets readable while box is centered */
  display: inline-block;
}

.services-list li {
  font-size: 1.2rem;
  font-weight: 300;
  position: relative;
  padding-left: 1.5rem;
}

.services-list li::before {
  content: 'â€”';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.awards-section {
  padding: calc(140px + 8vh) var(--spacing-md) var(--spacing-xl);
  max-width: 900px;
  margin: 0 auto;
  min-height: 80vh;
}

.awards-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: var(--spacing-xl);
  text-align: left;
  letter-spacing: -0.01em;
}

.awards-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.award-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--spacing-md);
  border-bottom: 1px solid rgba(0, 22, 137, 0.1);
  padding-bottom: var(--spacing-lg);
}

.award-year {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  opacity: 0.5;
}

.award-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.award-title {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
}

.award-prize {
  font-size: 1.1rem;
  font-weight: 300;
}

.award-organizer {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-top: 0.5rem;
  display: block;
}

.blog-section {
  padding: calc(140px + 8vh) var(--spacing-md) var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
  min-height: 80vh;
}

.blog-header {
  margin-bottom: var(--spacing-xl);
}

.blog-maintitle {
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.blog-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.7;
  max-width: 600px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.blog-post {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-post-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--color-light);
}

.blog-post-date {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
}

.blog-post-title {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
}

.blog-post-excerpt {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.9;
}

.blog-post-link {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-primary);
  display: inline-table;
  padding-bottom: 2px;
}

/* ============================================
   ABOUT SAYFASI
   ============================================ */

/* 1 â€” BÃ¼yÃ¼k aÃ§Ä±lÄ±ÅŸ */
.about-opening {
  padding: calc(40px + 10vh) 3.5vw 8vh;
  border-bottom: 1px solid var(--color-primary);
  background: var(--color-white);
}

.about-opening-text {
  font-size: clamp(1.8rem, 3.5vw, 4rem);
  font-weight: 200;
  color: var(--color-primary);
  line-height: 1.25;
  letter-spacing: -1px;
  max-width: 900px;
  margin: 0;
}

/* 2 â€” StÃ¼dyo aÃ§Ä±klamasÄ± */
.about-studio {
  display: grid;
  grid-template-columns: 1fr 3fr;
  border-bottom: 1px solid var(--color-primary);
}

.about-studio-label-col {
  padding: 3.5rem 3.5vw;
  border-right: 1px solid var(--color-primary);
}

.about-studio-text-col {
  padding: 3.5rem 4vw;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.75;
  opacity: 0.8;
  max-width: 680px;
}

/* 3 â€” Hizmetler */
.about-services {
  border-bottom: 1px solid var(--color-primary);
}

.about-services-header {
  padding: 2.5rem 3.5vw;
  border-bottom: 1px solid var(--color-primary);
}

.about-services-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column for a bold, focused list */
  border-bottom: 1px solid var(--color-primary);
}

.about-service-item {
  padding: 4rem 4vw;
  border-right: none;
  border-bottom: 1px solid rgba(0, 22, 137, 0.1);
}

.about-service-item:last-child {
  border-bottom: none;
}

.about-service-item h3 {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.about-service-item p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-primary);
  opacity: 0.6;
  line-height: 1.65;
}

/* 4 â€” Kurucu */
.about-founder {
  display: grid;
  grid-template-columns: 1fr 3fr;
  border-bottom: 1px solid var(--color-primary);
}

.about-founder-label-col {
  padding: 3.5rem 3.5vw;
  border-right: 1px solid var(--color-primary);
}

.about-founder-content {
  padding: 3.5rem 4vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-founder-name-block {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.about-founder-name {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 200;
  color: var(--color-primary);
  letter-spacing: -1px;
  line-height: 1;
  margin: 0;
}

.about-founder-title {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary);
  opacity: 0.45;
}

.about-founder-bio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 640px;
}

.about-founder-links {
  display: flex;
  gap: 1.5rem;
}

/* 5 â€” Ã–dÃ¼ller */
.about-awards {
  border-bottom: 1px solid var(--color-primary);
}

.about-awards-header {
  padding: 2.5rem 3.5vw;
  border-bottom: 1px solid var(--color-primary);
}

.awards-list {
  display: flex;
  flex-direction: column;
}

.award-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  border-bottom: 1px solid var(--color-primary);
  padding: 1.1rem 3.5vw;
  gap: 2rem;
  transition: background 0.2s;
}

.award-row:last-child {
  border-bottom: none;
}

.award-row:hover {
  background: var(--color-light, #f5f5f3);
}

.award-row-year {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-primary);
  opacity: 0.4;
  padding-top: 0.15rem;
}

.award-row-title {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-primary);
  margin: 0 0 0.3rem 0;
  line-height: 1.3;
}

.award-row-event {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-primary);
  opacity: 0.5;
  line-height: 1.5;
  margin: 0;
}

/* About â€” Responsive */
@media (max-width: 900px) {
  .about-studio,
  .about-founder {
    grid-template-columns: 1fr;
  }
  .about-studio-label-col,
  .about-founder-label-col {
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
    padding: 2rem 3.5vw;
  }
  .about-services-grid {
    grid-template-columns: 1fr;
  }
  .about-service-item {
    padding: 2.5rem 3.5vw;
    border-right: none;
    border-bottom: 1px solid rgba(0, 22, 137, 0.1);
  }
  .about-service-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .about-opening-text {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
}

/* ============================================
   ANASAYFA EDÄ°TORYAL BÃ–LÃœMLER
   ============================================ */

/* 1 â€” Manifesto */
.home-manifesto {
  display: grid;
  grid-template-columns: 1fr 3fr;
  border-bottom: 1px solid var(--color-primary);
  background: var(--color-white);
}

.home-manifesto-label {
  padding: 4rem 3.5vw;
  border-right: 1px solid var(--color-primary);
  display: flex;
  align-items: flex-start;
}

.home-manifesto-text {
  padding: 4rem 4vw;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.home-manifesto-primary {
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 200;
  color: var(--color-primary);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0;
}

.home-manifesto-secondary {
  font-size: clamp(1.2rem, 2.2vw, 2.4rem);
  font-weight: 200;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -0.5px;
  opacity: 0.5;
  margin: 0;
}

/* 2 â€” Rakamlar Åžeridi */
.home-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--color-primary);
  background: var(--color-white);
}

.home-number-item {
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  box-sizing: border-box;
}

.home-number-item:last-child {
  border-right: none;
}

@media (max-width: 900px) {
  .home-numbers {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-number-item {
    padding: 2rem 1.2rem;
  }
  .home-number-item:nth-child(2n) {
    border-right: none;
  }
  .home-number-item:nth-child(n+3) {
    border-top: 1px solid var(--color-primary);
  }
}

.home-number-value {
  font-size: clamp(2.4rem, 4vw, 5rem);
  font-weight: 200;
  color: var(--color-primary);
  letter-spacing: -2px;
  line-height: 1;
}

.home-number-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary);
  opacity: 0.4;
}

/* 3 â€” Ä°ÅŸ BirliÄŸi Daveti */
.home-collab {
  display: grid;
  grid-template-columns: 1fr 3fr;
  border-bottom: 1px solid var(--color-primary);
  background: var(--color-white);
}

.home-collab-label {
  padding: 4rem 3.5vw;
  border-right: 1px solid var(--color-primary);
  display: flex;
  align-items: flex-start;
}

.home-collab-body {
  padding: 4rem 4vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
}

.home-collab-text {
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 200;
  color: var(--color-primary);
  line-height: 1.45;
  letter-spacing: -0.3px;
  max-width: 780px;
  margin: 0;
}

/* Responsive â€” editorial sections */
@media (max-width: 900px) {
  .home-manifesto,
  .home-collab {
    grid-template-columns: 1fr;
  }
  .home-manifesto-label,
  .home-collab-label {
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
    padding: 1.5rem 3.5vw;
  }
  .home-manifesto-text,
  .home-collab-body {
    padding: 2.5rem 3.5vw;
  }
  .home-numbers {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-number-item:nth-child(2n) {
    border-right: none;
  }
  .home-number-item:nth-child(n+3) {
    border-top: 1px solid var(--color-primary);
  }
}

@media (max-width: 600px) {
  .home-numbers {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   MAKE â€” Malzeme Åžeridi
   ============================================ */
.make-materials {
  display: grid;
  grid-template-columns: 1fr 3fr;
  border-bottom: 1px solid var(--color-primary);
  background: var(--color-white);
}

.make-materials-label {
  padding: 1.8rem 3.5vw;
  border-right: 1px solid var(--color-primary);
  display: flex;
  align-items: center;
}

.make-materials-label .block-label {
  position: static;
}

.make-materials-list {
  padding: 1.8rem 4vw;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.make-material-item {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--color-primary);
  opacity: 0.65;
  letter-spacing: 0.3px;
}

.make-material-sep {
  font-size: 0.6rem;
  color: var(--color-primary);
  opacity: 0.3;
  margin: 0 0.3rem;
}

/* ============================================
   THINK â€” AraÅŸtÄ±rma OdaklarÄ± Grid
   ============================================ */
.think-themes {
  display: block;
  border-bottom: 1px solid var(--color-primary);
  background: var(--color-white);
  padding: 4rem 3.5vw;
}

.think-themes-label {
  padding: 0 0 2rem 0;
  border-right: none;
  display: block;
}

.think-themes-label .block-label {
  position: static;
}

.think-themes-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.think-theme-item {
  padding: 1.5rem 0;
  border-right: none;
  border-bottom: 1px solid rgba(0, 22, 137, 0.1);
}


.think-theme-item h3 {
  font-size: 1.1rem; /* Büyütüldü */
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
}

.think-theme-item p {
  font-size: 0.9rem; /* Büyütüldü */
  font-weight: 300;
  color: var(--color-primary);
  opacity: 0.75;
  line-height: 1.6;
}

.section--dark.think-themes {
  background: var(--color-primary);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.section--dark.think-themes .think-themes-label {
  border-right-color: rgba(255, 255, 255, 0.15);
}

.section--dark.think-themes .think-theme-item {
  border-right-color: rgba(255, 255, 255, 0.15);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.section--dark.think-themes .think-theme-item h3,
.section--dark.think-themes .think-theme-item p {
  color: #fff;
}

.section--dark.think-themes .block-label {
  color: #fff;
  border-color: #fff;
}
@media (max-width: 900px) {
  .make-materials,
  .think-themes {
    grid-template-columns: 1fr;
  }
  .make-materials-label,
  .think-themes-label {
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
    padding: 1.5rem 3.5vw;
  }
  .think-themes-list {
    grid-template-columns: 1fr;
  }
  .think-theme-item {
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
  }
  .think-theme-item:nth-child(n+3) {
    border-bottom: 1px solid var(--color-primary);
  }
  .think-theme-item:last-child {
    border-bottom: none;
  }
}

/* ============================================
   Ä°Ã‡ SAYFA â€” Make / Think / About
   ============================================ */

.inner-page {
  padding-top: 0;
}

/* Sayfa baÅŸlÄ±ÄŸÄ± hero â€” padding iÃ§ine 40px header yÃ¼ksekliÄŸi dahil */
.inner-hero {
  border-bottom: 1px solid var(--color-primary);
  padding: calc(40px + 8vh) 3.5vw 4rem;
  background: var(--color-white);
}

.inner-hero-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-primary);
  opacity: 0.4;
  display: block;
  margin-bottom: 1.5rem;
}

.inner-hero-title {
  font-size: clamp(3.5rem, 8vw, 9rem);
  font-weight: 200;
  color: var(--color-primary);
  line-height: 0.9;
  letter-spacing: -3px;
  margin: 0;
}

/* Aktif nav link */
.nav-active {
  opacity: 1 !important;
  font-weight: 500;
}

/* Filter bar (Make sayfasÄ±) */
.filter-bar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--color-primary);
  padding: 0;
}

.filter-btn {
  background: none;
  border: none;
  border-right: 1px solid var(--color-primary);
  padding: 1rem 2.5vw;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary);
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  font-family: inherit;
}

.filter-btn:last-child {
  border-right: none;
}

.filter-btn.active,
.filter-btn:hover {
  opacity: 1;
  background: var(--color-light, #f5f5f3);
}

/* Works grid (Make sayfasÄ±) */
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--color-primary);
}

.work-item {
  display: block;
  text-decoration: none;
  color: var(--color-primary);
  border-right: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  transition: background 0.3s;
}

.work-item:nth-child(4n) {
  border-right: none;
}

.work-item:hover {
  background: var(--color-light, #f5f5f3);
}

.work-img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-bottom: 1px solid var(--color-primary);
  position: relative;
}

.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.work-item:hover .work-img img {
  transform: scale(1.04);
}

.work-info {
  padding: 1.5rem 1.5vw;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.work-tag {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.4;
}

.work-title {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.work-award {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.6;
  font-style: italic;
}

.work-desc {
  font-size: 0.78rem;
  font-weight: 300;
  opacity: 0.6;
  line-height: 1.5;
}

/* Think sayfasÄ± manifesto */
.think-manifesto {
  border-top: 1px solid var(--color-primary);
  padding: 8vh 3.5vw;
}

.think-manifesto.section--dark {
  border-top: none;
}

.think-manifesto-inner {
  max-width: 720px;
}

.think-quote {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 200;
  color: var(--color-primary);
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin: 1.5rem 0 0;
  border: none;
  padding: 0;
  font-style: normal;
}

.section--dark .think-quote {
  color: #fff;
}

/* ============================================
   PROJE Ä°Ã‡ SAYFALARI
   ============================================ */

/* Project Hero */
.project-hero {
  padding: 14vh 3.5vw 5rem;
  border-bottom: 1px solid var(--color-primary);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.project-hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.project-hero-meta .block-label {
  position: static;   /* project hero'da absolute deÄŸil */
}

.project-hero-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.project-tag {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 0.3rem 0.75rem;
  opacity: 0.5;
}

.project-hero-title {
  font-size: clamp(3rem, 8vw, 9rem);
  font-weight: 200;
  color: var(--color-primary);
  line-height: 0.9;
  letter-spacing: -3px;
  margin: 0;
}

.project-hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-primary);
  opacity: 0.45;
  letter-spacing: 2px;
  margin: 0;
}

/* Context Bar */
.project-context-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--color-primary);
  background: var(--color-white);
}

.project-context-item {
  padding: 1.8rem 3.5vw;
  border-right: 1px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.project-context-item:last-child {
  border-right: none;
}

.project-context-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary);
  opacity: 0.38;
}

.project-context-value {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.4;
}

/* Cover Image */
.project-cover {
  border-bottom: 1px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vh, 3.5rem) 4vw;
  background: #f5f6f8;
}

.project-cover img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(70vh, 560px);
  object-fit: contain;
  display: block;
}

/* Concept Section */
.project-concept {
  display: grid;
  grid-template-columns: 1fr 3fr;
  border-bottom: 1px solid var(--color-primary);
  background: var(--color-white);
}

.project-concept-label {
  padding: 3.5rem 3.5vw;
  border-right: 1px solid var(--color-primary);
}

.project-concept-label .block-label {
  position: static;
}

.project-concept-text {
  padding: 3.5rem 4vw;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.project-lead {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.65;
  max-width: 720px;
}

.project-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.75;
  opacity: 0.75;
  max-width: 660px;
}

/* Ileri Koleksiyon story blocks */
.collection-story-grid {
  border-bottom: 1px solid var(--color-primary);
}

.collection-story-step {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-bottom: 1px solid var(--color-primary);
  min-height: 62vh;
}

.collection-story-step:last-child {
  border-bottom: none;
}

.collection-story-step--reverse .collection-story-media {
  order: 2;
}

.collection-story-step--reverse .collection-story-copy {
  order: 1;
  border-right: 1px solid var(--color-primary);
  border-left: none;
}

.collection-story-media {
  border-right: 1px solid var(--color-primary);
  background: #e8edf7;
}

.collection-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection-story-copy {
  padding: 3.5rem 3.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: none;
}

.collection-story-title {
  font-size: clamp(1.6rem, 2.8vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--color-primary);
  margin: 0 0 1rem;
}

.collection-story-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-primary);
  opacity: 0.8;
  max-width: 640px;
}

.project-collection-shop {
  border-top: 1px solid var(--color-primary);
}

.project-hero--collection {
  padding-bottom: 3.5rem;
}

.project-cover--collection {
  padding-top: clamp(1.2rem, 4vh, 2.4rem);
  padding-bottom: clamp(1.2rem, 4vh, 2.4rem);
}

.collection-editorial {
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  background: var(--color-white);
}

.collection-editorial-intro {
  padding: 3rem 3.5vw 2.2rem;
  border-bottom: 1px solid rgba(0, 22, 137, 0.15);
}

.collection-editorial-lead {
  max-width: 960px;
  font-size: clamp(1.1rem, 1.9vw, 1.8rem);
  line-height: 1.35;
  letter-spacing: -0.4px;
  color: var(--color-primary);
  font-weight: 300;
}

.collection-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.collection-editorial-block {
  padding: 2.2rem 3.5vw 2.6rem;
  border-right: 1px solid var(--color-primary);
}

.collection-editorial-block:last-child {
  border-right: none;
}

.collection-editorial-title {
  font-size: clamp(1.2rem, 2.1vw, 1.9rem);
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0 0 0.8rem;
  color: var(--color-primary);
}

.collection-editorial-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-primary);
  opacity: 0.82;
  max-width: 560px;
}

.collection-visual-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--color-primary);
}

.collection-visual {
  margin: 0;
  border-right: 1px solid var(--color-primary);
  background: #e8edf7;
  aspect-ratio: 4 / 5;
}

.collection-visual:last-child {
  border-right: none;
}

.collection-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .collection-story-step {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .collection-story-media {
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
    min-height: 46vh;
  }

  .collection-story-step--reverse .collection-story-media {
    order: 1;
  }

  .collection-story-step--reverse .collection-story-copy {
    order: 2;
    border-right: none;
  }

  .collection-story-copy {
    padding: 2.2rem 4vw 2.5rem;
  }

  .collection-editorial-intro {
    padding: 2.3rem 4vw 1.8rem;
  }

  .collection-editorial-grid {
    grid-template-columns: 1fr;
  }

  .collection-editorial-block {
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
    padding: 1.8rem 4vw 2rem;
  }

  .collection-editorial-block:last-child {
    border-bottom: none;
  }

  .collection-visual-strip {
    grid-template-columns: 1fr;
  }

  .collection-visual {
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
    aspect-ratio: 16 / 10;
  }

  .collection-visual:last-child {
    border-bottom: none;
  }
}

/* Products Section */
.project-products {
  border-bottom: 1px solid var(--color-primary);
}

.project-products-header {
  padding: 2.5rem 3.5vw;
  border-bottom: 1px solid var(--color-primary);
}

.project-products-header .block-label {
  position: static;
}

.project-product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--color-primary);
  min-height: 60vh;
}

.project-product-row:last-child {
  border-bottom: none;
}

.project-product-row--reverse {
  direction: rtl;
}

.project-product-row--reverse > * {
  direction: ltr;
}

.project-product-img {
  overflow: hidden;
  border-right: 1px solid var(--color-primary);
}

.project-product-row--reverse .project-product-img {
  border-right: none;
  border-left: 1px solid var(--color-primary);
}

.project-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-product-text {
  padding: 3rem 4vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.6rem;
}

.project-product-name {
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  font-weight: 200;
  color: var(--color-primary);
  letter-spacing: -1px;
  line-height: 1;
  margin: 0 0 0.5rem;
}

.project-product-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.65;
  opacity: 0.7;
  max-width: 480px;
}

.project-product-mat {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary);
  opacity: 0.4;
  margin-top: 0.5rem;
  display: block;
}

/* Gallery Grid */
.project-gallery {
  border-bottom: 1px solid var(--color-primary);
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.project-gallery-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-right: 1px solid var(--color-primary);
}

.project-gallery-img:last-child {
  border-right: none;
}

.project-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.project-gallery-img:hover img {
  transform: scale(1.04);
}

/* Project page responsive */
@media (max-width: 900px) {
  .project-context-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-context-item:nth-child(2n) {
    border-right: none;
  }
  .project-context-item:nth-child(n+3) {
    border-top: 1px solid var(--color-primary);
  }
  .project-concept {
    grid-template-columns: 1fr;
  }
  .project-concept-label {
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
    padding: 1.5rem 3.5vw;
  }
  .project-product-row {
    grid-template-columns: 1fr;
    min-height: auto;
    direction: ltr;
  }
  .project-product-row--reverse {
    direction: ltr;
  }
  .project-product-img {
    border-right: none;
    border-left: none !important;
    border-bottom: 1px solid var(--color-primary);
    height: 55vw;
  }
  .project-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .project-gallery-img:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .project-hero-title {
    letter-spacing: -1px;
  }
  .project-gallery-grid {
    grid-template-columns: 1fr;
  }
  .project-gallery-img {
    border-right: none;
  }
}


/* Responsive â€” make grid */
@media (max-width: 900px) {
  .works-grid {
    grid-template-columns: 1fr 1fr;
  }
  .work-item:nth-child(3n) {
    border-right: 1px solid var(--color-primary);
  }
  .work-item:nth-child(2n) {
    border-right: none;
  }
  .inner-hero-title {
    letter-spacing: -1px;
  }
}

@media (max-width: 600px) {
  .works-grid {
    grid-template-columns: 1fr;
  }
  .work-item {
    border-right: none;
  }
}

/* ============================================
   ASYMMETRIC CONTENT BLOCKS (BÃ¶lÃ¼mler 2-5)
   ============================================ */

.content-block {
  display: flex;
  flex-direction: row;
  height: 100vh;             /* tam ekran yÃ¼ksekliÄŸi */
  border-bottom: 1px solid var(--color-primary);
  overflow: hidden;
  width: 100%;
}

.content-block.block-reverse {
  /* artÄ±k kullanÄ±lmÄ±yor â€” HTML sÄ±rasÄ± ile kontrol ediliyor */
}

/* GÃ¶rsel(ler) konteynerÄ± */
.block-images {
  display: flex;
  flex-direction: row;
  height: 100%;
  flex-shrink: 0;
  border-right: 1px solid var(--color-primary);
}

/* GÃ¶rsel saÄŸda ise (son Ã§ocuk) border yÃ¶nÃ¼ deÄŸiÅŸir */
.block-images:last-child {
  border-right: none;
  border-left: 1px solid var(--color-primary);
}

/* 2 gÃ¶rsel yan yana â€” aralarÄ±nda Ã§izgi */
.block-images-split .block-image + .block-image {
  border-left: 1px solid var(--color-primary);
}

.block-image {
  height: 100%;
  width: auto;
  overflow: hidden;
  flex-shrink: 0;
}

.block-image img {
  height: 100%;
  width: auto;
  display: block;
  transition: transform 0.6s ease;
}

.content-block:hover .block-images img {
  transform: scale(1.03);
}

/* ==========================================
   OPTION 1 â€” Label kÃ¶ÅŸeye sabit, iÃ§erik en altta
   ========================================== */
.block-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;   /* baÅŸlÄ±k + metin grubu en alta */
  padding: 2.5rem 3.5vw;
  background: var(--color-white);
  min-width: 0;
  position: relative;          /* label iÃ§in anchor */
}

/* GÃ¶rsel saÄŸda ise (metin ilk Ã§ocuk) â€” metin saÄŸa hizalanÄ±r */
.content-block > .block-text:first-child {
  text-align: right;
  align-items: flex-end;
}

/* Block label â€” base styling */
.block-label {
  display: block;
  padding: 0;
  border: none;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-primary);
  opacity: 0.38;
  margin-bottom: 0;
  background: none;
}

/* Sadece .content-block iÃ§indekiler mutlak konumlansÄ±n */
.content-block .block-label {
  position: absolute;
  top: 2.5rem;
  left: 3.5vw;
}

/* GÃ¶rsel saÄŸda ise label saÄŸ kÃ¶ÅŸeye */
.content-block > .block-text:first-child .block-label {
  left: auto;
  right: 3.5vw;
}

/* BÃ¼yÃ¼k, ultra-ince dramatik baÅŸlÄ±k */
.block-title {
  font-size: clamp(2.8rem, 5vw, 6rem);
  font-weight: 200;
  color: var(--color-primary);
  line-height: 0.92;
  letter-spacing: -2px;
  margin-bottom: 1.2rem;
}

.block-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.65;
  opacity: 0.55;
  margin-bottom: 1.8rem;
  max-width: 300px;
}

.block-link {
  display: inline !important;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 2px;
  transition: opacity 0.25s ease;
}

.block-link:hover {
  opacity: 0.4;
}

/* ============================================
   AWARD DETAIL â€” Mini-Koza Ã¶dÃ¼l bilgileri
   ============================================ */
.award-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-primary);
}

.award-year {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-primary);
  opacity: 0.45;
  padding-top: 0.15rem;
  flex-shrink: 0;
}

.award-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.award-prize {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.2px;
}

.award-competition {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--color-primary);
  opacity: 0.75;
}

.award-organizer {
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--color-primary);
  opacity: 0.45;
  line-height: 1.4;
}

/* SaÄŸa hizalÄ± blokta (text first-child) award saÄŸa yaslansÄ±n */
.content-block > .block-text:first-child .award-detail {
  flex-direction: row-reverse;
  text-align: right;
}

.content-block > .block-text:first-child .award-info {
  align-items: flex-end;
}

/* ============================================
   BÃ–LÃœM 6: HÄ°ZMETLER â€” Beyaz zemin
   ============================================ */
.content-block-services {
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  background: var(--color-white);
  color: var(--color-primary);
}

.services-header {
  padding: 3rem 3.5vw 2.5rem;
  border-bottom: 1px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.services-header .block-label {
  color: var(--color-primary);
  opacity: 0.45;
}

.services-title {
  font-size: clamp(1.6rem, 2.8vw, 3rem);
  font-weight: 200;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-item {
  padding: 2.5rem 2.5vw;
  border-right: 1px solid var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
  transition: background 0.3s;
}

.service-item:last-child {
  border-right: none;
}

.service-item:hover {
  background: var(--color-light);
}

.service-number {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.3;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1.2rem;
  color: var(--color-primary);
}

.service-item h3 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  line-height: 1.3;
  color: var(--color-primary);
}

.service-item p {
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.6;
  line-height: 1.6;
  color: var(--color-primary);
}



/* Footer â€” Dark Navy, Compact */
.footer-dark {
  background: var(--color-primary);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-content {
  display: grid !important;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 0 !important;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Brand: logo solda, manifesto+copyright saÄŸÄ±nda â€” yatay tek satÄ±r */
.footer-brand {
  flex: 1.7 1 340px;
  border-right: 1px solid rgba(255,255,255,0.18);
  padding: 1.8rem 3.5vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.8rem;
}

.footer-logo {
  height: 64px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.9;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-manifesto {
  font-size: 0.72rem;
  line-height: 1.55;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.footer-col {
  flex: none;
  padding: 1.8rem 2.5vw;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-col:last-child {
  border-right: none;
}

/* Newsletter Styles */
.footer-newsletter {
  padding: 1.8rem 2.5vw;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-newsletter-title {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.2rem;
}

.footer-newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.4rem;
  margin-top: 0.2rem;
}

.footer-newsletter-input {
  background: none;
  border: none;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.8rem;
  width: 100%;
  outline: none;
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.footer-newsletter-btn {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0 0.2rem;
  font-size: 1rem;
}

.footer-copyright {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.4rem;
}

.footer-text {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-link:hover {
  color: #fff !important;
}

.footer-link.no-hover:hover {
  opacity: 0.55;
  cursor: default;
}

/* Footer â€” Responsive */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column !important;
  }
  .footer-brand {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .footer-col {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .footer-col:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column !important;
  }
  .footer-brand, .footer-col {
    border-right: none !important;
  }
}




/* Spaces Page & Process */
.spaces-intro {
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.spaces-intro h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.spaces-intro p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.process-section {
  padding: 0;
  background-color: var(--color-white);
  border-top: 1.5px solid var(--color-primary);
  border-bottom: 1.5px solid var(--color-primary);
}

.process-header {
  text-align: center;
  margin-bottom: 0;
  padding: var(--spacing-lg);
  border-bottom: 1.5px solid var(--color-primary);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  max-width: 100%;
  margin: 0;
}

.process-step {
  padding: var(--spacing-xl);
  border-right: 1.5px solid var(--color-primary);
  position: relative;
  transition: background-color 0.4s ease;
}

.process-step:last-child {
  border-right: none;
}

.process-step:hover {
  background-color: rgba(0, 22, 137, 0.03); /* Maintain flat grid on hover */
}

.process-number {
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-primary);
  opacity: 0.2;
  margin-bottom: 1rem;
  font-family: monospace;
}

.process-step h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.process-step p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.7;
}

.collaboration-cta {
  padding: 10vw var(--spacing-md);
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.collaboration-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 1.2rem 3.5rem;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transition: all 0.4s ease;
  background: transparent;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--color-white);
  color: var(--color-primary);
  opacity: 1;
}

/* Animations */
.fade-in {
  opacity: 0;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
}

.page-loaded .fade-in {
  animation: fadeIn 1.2s ease-out forwards;
}

.page-loaded .fade-in-up {
  animation: fadeInUp 1s cubic-bezier(0.2, 1, 0.2, 1) forwards;
}

/* Base states for content before splash ends */
body:not(.page-loaded) header,
body:not(.page-loaded) main,
body:not(.page-loaded) footer {
  opacity: 1 !important;
}

body.page-loaded header {
  animation: fadeInDown 1s cubic-bezier(0.2, 1, 0.2, 1) forwards;
}

body.page-loaded main {
  animation: fadeInUp 1.2s cubic-bezier(0.2, 1, 0.2, 1) forwards;
}

body.page-loaded footer {
  animation: fadeIn 1s ease-out 0.5s forwards;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  /* header: yeni 48px fixed tasarım tarafından yönetiliyor — eski column/padding kuralları kaldırıldı */

  .hero-image-bg {
    min-height: 100vh;
  }
  
  .gallery-grid, .grid-2-col, .about-section, .blog-grid, .footer-content {
    grid-template-columns: 1fr;
  }
  
  .award-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .about-section {
    text-align: center;
  }
  
  .services-list li::before {
    display: none;
  }
  .services-list li {
    padding-left: 0;
  }

}

/* ============================================
   CONTENT BLOCKS (REVERTED TO SPLIT VIEW)
   ============================================ */
/* ============================================
   CONTENT BLOCKS (ORIGINAL SPLIT VIEW)
   ============================================ */
/* ============================================
   CONTENT BLOCKS (BLUEPRINT GRID)
   ============================================ */
.content-block {
  display: grid;
  grid-template-columns: 55% 45%;
  width: 100%;
  min-height: 80vh;
  border-bottom: 1px solid var(--color-primary);
}

.content-block:nth-child(even) {
  grid-template-columns: 45% 55%;
}

.content-block:nth-child(even) .block-images {
  order: 2;
}

.content-block:nth-child(even) .block-text {
  order: 1;
  border-right: 1px solid var(--color-primary);
  border-left: none;
}

.block-images {
  position: relative;
  overflow: hidden;
  background: var(--color-light);
}

.block-text {
  padding: 5rem 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  border-left: 1px solid var(--color-primary);
}

.content-block:nth-child(even) .block-text {
  border-left: none;
  border-right: 1px solid var(--color-primary);
}

.block-image {
  width: 100%;
  height: 100%;
}

.block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-label {
  display: block;
  padding: 0;
  border: none;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-primary);
  margin-bottom: 2rem;
  background: none;
}

.block-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.block-desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 440px;
}

.block-link {
  display: inline !important;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 4px;
}

/* DARK SECTIONS */
.section--dark {
  background: var(--color-primary);
  color: #fff;
}

.section--dark * {
  border-color: rgba(255,255,255,0.2) !important;
}

.section--dark .block-label {
  border-color: #fff;
  color: #fff;
  opacity: 1;
}

.section--dark .block-title,
.section--dark .block-desc,
.section--dark .block-link {
  color: #fff;
  border-color: #fff;
}

@media (max-width: 900px) {
  .content-block {
    height: 80vh;
  }
  .block-title {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }
  .block-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

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

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

  .services-header {
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
    padding: 1.5rem 3.5vw;
  }

  /* Footer Responsive */
  .footer-content {
    flex-direction: column !important;
  }
  .footer-brand, .footer-col {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-brand, .footer-col {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
  }
}

/* ============================================
   FOOTER â€” ÃœST BOÅžLUK (iÃ§erik nefes alsÄ±n)
   ============================================ */
/* ============================================
   FOOTER (BLUEPRINT GRID)
   ============================================ */
.footer-dark {
  background: var(--color-primary);
  color: #fff;
  padding: 0;
  border-top: 1px solid #fff;
}

.footer-content {
  display: flex !important;
  align-items: stretch;
  width: 100%;
}

.footer-brand {
  flex: 1.7 1 340px;
  padding: 3.5rem 3.5vw;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.footer-col {
  flex: 1 1 180px;
  padding: 3.5rem 3.5vw;
  border-right: 1px solid #fff;
}

.footer-col:last-child {
  border-right: none;
}

.footer-link {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: opacity 0.3s;
}

.footer-link:hover {
  color: #fff !important;
}

/* Her inner-page main sonuna Ã¼st boÅŸluk */
.inner-page > *:last-child {
  margin-bottom: 0;
}

/* Think manifesto border-top yerine yeterli nefes */
.think-manifesto {
  border-top: none;
  padding: 8vh 3.5vw 10vh;
  background: var(--color-white);
}

/* Footer'Ä±n her zaman iÃ§erikten net ayrÄ±lmasÄ± */
main + footer,
.inner-page + footer {
  border-top: 2px solid var(--color-primary);
}

/* Inner-hero duplicate kaldÄ±rÄ±ldÄ± â€” ana kural satÄ±r 1221'de.
   padding-top sorunu: .inner-page { padding-top:40px } ile Ã§Ã¶zÃ¼ldÃ¼. */

/* ============================================
   ABOUT â€” Ã–dÃ¼ller baÅŸlÄ±k stili
   ============================================ */
.about-awards-title {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 200;
  color: var(--color-primary);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin: 0.8rem 0 0;
}

/* ============================================
   ANA SAYFA â€” ÃœrÃ¼nler Carousel
   ============================================ */
.home-shop {
  border-bottom: 1px solid var(--color-primary);
  background: var(--color-white);
}

/* Ãœst ÅŸerit: label + view all linki */
.home-shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3.5vw;
  border-bottom: 1px solid var(--color-primary);
}

.home-shop-viewall {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.home-shop-viewall:hover {
  opacity: 1;
}

/* Floating premium oklar (Ã§izgisel/ÅŸeffaf) */
.shop-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 2.2rem;
  font-weight: 200;
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0.5;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
}

.shop-arrow:hover {
  opacity: 1;
}

.shop-arrow--prev {
  left: 0;
}
.shop-arrow--prev:hover {
  transform: translate(-4px, -50%);
}

.shop-arrow--next {
  right: 0;
}
.shop-arrow--next:hover {
  transform: translate(4px, -50%);
}

.home-shop-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  cursor: grab;
}

.home-shop-track::-webkit-scrollbar {
  display: none;
}

.home-shop-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

/* Her Ã¼rÃ¼n: 3.5 adet gÃ¶ster (kaydÄ±rmayÄ± belli et) */
.shop-item {
  flex: 0 0 calc(100% / 3.5);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--color-primary);
  text-decoration: none;
  color: var(--color-primary);
  transition: background 0.25s;
  user-select: none;
}

.shop-item:last-child {
  border-right: none;
}

.shop-item:hover {
  background: var(--color-light);
}

.shop-item-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-bottom: 1px solid var(--color-primary);
  flex-shrink: 0;
}

.shop-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  pointer-events: none;
}

.shop-item:hover .shop-item-img img {
  transform: scale(1.04);
}

.shop-item-info {
  padding: 1rem 1.5vw 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.shop-item-name {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.3;
}

.shop-item-inquiry {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-primary);
  opacity: 0.35;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .shop-item {
    flex: 0 0 calc(100% / 2.3);
  }
}

@media (max-width: 600px) {
  .shop-item {
    flex: 0 0 80%;
  }
}

/* ============================================
   CONTACT PAGE â€” STYLES
   ============================================ */

/* Ana iki sÃ¼tun */
.contact-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid var(--color-primary);
  min-height: 70vh;
}

/* Sol bilgi kolonu */
.contact-info-col {
  border-right: 1px solid var(--color-primary);
  display: flex;
  flex-direction: column;
}

.contact-info-block {
  padding: 2rem 3.5vw;
  border-bottom: 1px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info-block:last-child {
  border-bottom: none;
  flex: 1;
}

.contact-info-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-primary);
  opacity: 0.38;
  display: block;
}

.contact-info-value {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.5;
}

.contact-info-link {
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-info-link:hover {
  opacity: 0.5;
}

.contact-note p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-primary);
  opacity: 0.55;
  line-height: 1.7;
}

.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-social-link {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-social-link:hover {
  opacity: 0.5;
}

/* SaÄŸ form kolonu */
.contact-form-col {
  padding: 3.5rem 4vw;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 640px;
  transition: opacity 0.4s;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-primary);
  opacity: 0.4;
}

.contact-input {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-primary);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-primary);
  padding: 0.6rem 0;
  outline: none;
  transition: border-color 0.2s, opacity 0.2s;
  width: 100%;
}

.contact-input:focus {
  outline: none;
  border-bottom-color: var(--color-brand, #001689);
}

/* ============================================
   CONTACT FORM DARK MODE (Mavi arka plan iÃ§in beyaz yazÄ±lar)
   ============================================ */
.section--dark .contact-label {
  color: #fff;
  opacity: 0.6;
}

.section--dark .contact-input {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.3);
}

.section--dark .contact-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.section--dark .contact-input:focus {
  border-bottom-color: #fff;
}

.section--dark .contact-submit {
  color: #fff;
}

.section--dark .contact-submit:hover {
  background: rgba(255,255,255,0.08);
}

.section--dark select option {
  background-color: var(--color-primary); /* Dropdown menÃ¼sÃ¼ arka planÄ± */
  color: #fff; /* SeÃ§enek metinleri beyaz */
}

.contact-input::placeholder {
  color: var(--color-primary);
  opacity: 0.25;
}

.contact-select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23001689' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.contact-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 1rem 2rem;
  transition: opacity 0.25s, transform 0.2s;
  align-self: flex-start;
}

.contact-submit:hover {
  opacity: 0.75;
}

.contact-submit-arrow {
  font-size: 1rem;
  transition: transform 0.2s;
}

.contact-submit:hover .contact-submit-arrow {
  transform: translateX(4px);
}

.contact-success {
  padding: 1.5rem 0;
}

.contact-success p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-primary);
  opacity: 0.75;
}

/* Ä°letiÅŸim kapanÄ±ÅŸ ÅŸeridi */
.contact-closing {
  padding: 5vh 3.5vw;
  border-bottom: 1px solid var(--color-primary);
  background: var(--color-white);
}

.contact-closing-text {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 200;
  color: var(--color-primary);
  letter-spacing: -0.3px;
  opacity: 0.5;
  margin: 0;
}

/* Contact page responsive */
@media (max-width: 900px) {
  .contact-main {
    grid-template-columns: 1fr;
  }
  .contact-info-col {
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
  }
  .contact-form-col {
    padding: 2.5rem 3.5vw;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* ============================================
   OBJECTS PAGE â€” STYLES
   ============================================ */

/* GiriÅŸ ÅŸeridi */
.objects-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid var(--color-primary);
}

.objects-intro-label {
  padding: 2.5rem 3.5vw;
  border-right: 1px solid var(--color-primary);
  display: flex;
  align-items: flex-start;
}

.objects-intro-text {
  padding: 2.5rem 3.5vw;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
}





.objects-intro-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.7;
  opacity: 0.75;
  margin: 0;
}

/* ÃœrÃ¼n grid */
.objects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--color-primary);
}

.object-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  text-decoration: none;
  color: var(--color-primary);
  transition: background 0.25s;
}

/* 3 sÃ¼tun â€” her 3. elemanÄ±n border-right'Ä±nÄ± kaldÄ±r */
.object-card:nth-child(3n) {
  border-right: none;
}

/* Son iki kart (satÄ±r 2) alt border kaldÄ±r */
.object-card:nth-last-child(-n+3):nth-child(3n+1),
.object-card:nth-last-child(-n+3) {
  border-bottom: none;
}

.object-card:hover {
  background: var(--color-light, #f5f5f3);
}

.object-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-bottom: 1px solid var(--color-primary);
  flex-shrink: 0;
}

.object-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.object-card:hover .object-card-img img {
  transform: scale(1.03);
}

.object-card-info {
  padding: 1.4rem 2vw 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.object-card-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.2rem;
}

.object-card-num {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 3px;
  opacity: 0.28;
  color: var(--color-primary);
}

.object-card-type {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.38;
  color: var(--color-primary);
}

.object-card-title {
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  font-weight: 300;
  color: var(--color-primary);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin: 0;
}

.object-card-cta {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.32;
  color: var(--color-primary);
  margin-top: 0.3rem;
  transition: opacity 0.2s;
}

.object-card:hover .object-card-cta {
  opacity: 0.65;
}

@media (max-width: 900px) {
  .objects-intro {
    grid-template-columns: 1fr;
  }
  .objects-intro-label {
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
    padding: 1.5rem 3.5vw;
  }
  .objects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .object-card:nth-child(3n) {
    border-right: 1px solid var(--color-primary);
  }
  .object-card:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 540px) {
  .objects-grid {
    grid-template-columns: 1fr;
  }
  .object-card {
    border-right: none;
  }
}

/* ============================================
   SECTION--DARK â€” Mavi/Beyaz Kontrast Sistemi
   ============================================ */
.section--dark {
  background: var(--color-primary);
  color: #fff;
}

/* Genel border rengi */
.section--dark,
.section--dark * {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Block label */
.section--dark .block-label {
  color: #fff;
  opacity: 0.45;
}

/* Manifesto metinleri */
.section--dark .home-manifesto-primary {
  color: #fff;
}

.section--dark .home-manifesto-secondary {
  color: rgba(255, 255, 255, 0.6);
}

/* Numbers */
.section--dark .about-opening-text,
.section--dark .about-studio-text,
.section--dark .about-founder-text,
.section--dark .about-founder-name,
.section--dark .about-founder-title,
.section--dark .about-body,
.section--dark .about-service-text p,
.section--dark .about-awards-header h2,
.section--dark .award-row-year,
.section--dark .award-row-title,
.section--dark .award-row-event,
.section--dark .home-manifesto-primary,
.section--dark .home-manifesto-secondary {
  color: #fff;
}

.section--dark .about-service-title,
.section--dark .about-service-scope {
  color: #fff;
}

.section--dark .award-row {
  border-bottom-color: rgba(255,255,255,0.2) !important;
}

.section--dark .award-row:hover {
  background: rgba(255,255,255,0.05) !important;
}

.section--dark .project-context-label,
.section--dark .project-context-value {
  color: #fff;
}

.section--dark .home-number-label {
  color: rgba(255, 255, 255, 0.5);
}

.section--dark .home-number-value {
  color: #fff;
}

.section--dark .home-number-label {
  color: rgba(255, 255, 255, 0.5);
}

/* Collab */
.section--dark .home-collab-text {
  color: rgba(255, 255, 255, 0.7);
}

.section--dark .block-link {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

.section--dark .block-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Shop carousel */
.section--dark .home-shop-header {
  border-bottom-color: rgba(255, 255, 255, 0.15) !important;
}

.section--dark .shop-nav-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.section--dark .shop-nav-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.section--dark .shop-item {
  color: #fff;
  border-right-color: rgba(255, 255, 255, 0.15) !important;
}

.section--dark .shop-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.section--dark .shop-item-img {
  border-bottom-color: rgba(255, 255, 255, 0.15) !important;
}

.section--dark .shop-item-name {
  color: #fff;
}

.section--dark .shop-item-inquiry {
  color: #fff !important;
  opacity: 0.6;
  text-transform: lowercase;
}

/* ============================================
   OBJECTS carousel ba\u015fl\u0131k stili (KÃ¼Ã§Ã¼ltÃ¼lmÃ¼ÅŸ)
   ============================================ */
.home-shop-objects-title {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--color-primary);
  line-height: 1.1;
}

.section--dark .home-shop-objects-title {
  color: #fff !important;
}

/* ============================================
   SATIÅžTA badge â€” make sayfasÄ± objects grid
   ============================================ */
.work-tag--sale {
  color: var(--color-primary) !important;
  background: transparent;
}

.work-item--sale .work-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.3s;
}

.work-item--sale:hover .work-img::after {
  background: rgba(0, 22, 137, 0.04);
}

/* ============================================
   THINK KAPSAMI Ã–ZEL DÃœZENLERÄ°
   ============================================ */

/* ============================================
   THINK â€” Overlay Grid (Workshops & Up-Talks)
   ============================================ */
.overlay-section {
  background: var(--color-white);
  padding: 4rem 0 0;
  border-bottom: 1px solid var(--color-primary);
}
/* ============================================
   ABOUT â€” AWARDS (PREMIUM)
   ============================================ */
.about-awards {
  border-top: 1px solid var(--color-primary);
  background: var(--color-white);
  padding: 0;
}

.about-awards-inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
}

.about-awards-header {
  padding: 3rem 3.5vw;
  border-right: 1px solid var(--color-primary);
  display: flex;
  align-items: flex-start;
}

.about-awards-header .block-label {
  position: static;
}

.about-awards-list {
  display: flex;
  flex-direction: column;
}

.award-premium-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 3rem 3.5vw;
  border-bottom: 1px solid var(--color-primary);
  transition: background 0.3s ease;
  cursor: default;
}

.award-premium-item:last-child {
  border-bottom: none;
}

.award-premium-item:hover {
  background: var(--color-primary);
  color: #fff;
}

.award-premium-item:hover .award-premium-year,
.award-premium-item:hover .award-premium-body h3,
.award-premium-item:hover .award-premium-body p {
  color: #fff;
}

.award-premium-year {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}

.award-premium-body h3 {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-primary);
  margin: 0 0 0.5rem;
  letter-spacing: -0.5px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.award-premium-body p {
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.6;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s ease;
}

/* Responsive */
@media(max-width: 900px) {
  .about-awards-inner {
    grid-template-columns: 1fr;
  }
  .about-awards-header {
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
    padding: 2rem 3.5vw;
  }
  .award-premium-item {
    gap: 1rem;
    padding: 2rem 3.5vw;
  }
}

.overlay-header {
  padding: 0 3.5vw 2rem;
  max-width: 800px;
}

.overlay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-primary);
  padding: 0;
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}

.overlay-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: var(--color-white);
}

.overlay-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.overlay-card:hover img {
  transform: scale(1.05);
}

.overlay-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  background: linear-gradient(0deg, rgba(0,22,137,0.85) 0%, rgba(0,22,137,0) 100%);
  color: #fff;
}

.overlay-card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
  opacity: 0.8;
}

.overlay-card-title {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0 0 0.4rem;
  line-height: 1.2;
}

.overlay-card-desc {
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.9;
  line-height: 1.4;
  margin: 0;
}

@media(max-width: 768px) {
  .overlay-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   OBJECT DETAIL â€” DYNAMIC SPLIT LAYOUT
   ============================================ */
.object-split-stage {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: start;
  border-bottom: 1px solid var(--color-primary);
}

.object-gallery {
  border-right: 1px solid var(--color-primary);
}

.gallery-track {
  display: block;
}

.object-gallery-img {
  width: 100%;
  display: block;
  height: auto;
  border-bottom: 1px solid var(--color-primary);
}

.object-gallery-img:last-child {
  border-bottom: none;
}

/* Hide controls on desktop */
.gallery-mobile-controls {
  display: none;
}

.object-info {
  position: sticky;
  top: 40px; /* Header altÄ±nda kalÄ±r */
  height: calc(100vh - 40px); /* EkranÄ± tam doldurur */
  overflow-y: auto;
  padding: 4rem 3vw 2rem 3vw;
  scrollbar-width: none;
}

.object-info::-webkit-scrollbar {
  display: none;
}

/* ============================================
   WORKS GRID (Other Works Section)
   ============================================ */
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--color-primary);
}

.work-item {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--color-primary);
  text-decoration: none;
  color: inherit;
}

.work-item:last-child {
  border-right: none;
}

.work-img {
  aspect-ratio: 1;
  border-bottom: 1px solid var(--color-primary);
  overflow: hidden;
}

.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-item:hover .work-img img {
  transform: scale(1.03);
}

.work-info {
  padding: 1.5rem;
}

.work-tag {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.work-title {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.work-desc {
  font-size: 0.85rem;
  opacity: 0.8;
}

.object-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-light);
  letter-spacing: -2px;
  color: var(--color-primary);
  margin: 1rem 0 1.5rem;
  line-height: var(--line-height-tight);
}

.object-title--compact {
  font-size: var(--text-size-title-compact);
  font-weight: 200;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0;
}

.object-meta-note {
  font-size: var(--text-size-caption);
  font-weight: var(--font-weight-light);
  opacity: 0.6;
  margin: 0;
}

.object-meta-note--caps {
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Shared object-page typography for object.html and make/* pages */
.object-spec-label {
  font-size: var(--text-size-micro);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-primary);
  opacity: 0.38;
  display: block;
  margin-bottom: 0.4rem;
}

.object-spec-value {
  font-size: var(--text-size-body);
  font-weight: var(--font-weight-light);
  color: var(--color-primary);
  line-height: var(--line-height-base);
  margin: 0;
}

.object-desc-text {
  font-size: clamp(0.8rem, 1vw, 0.92rem);
  font-weight: var(--font-weight-light);
  color: var(--color-primary);
  line-height: 1.6;
  margin: 0;
}

.related-section-header span {
  font-size: 0.6rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.45;
}

.related-section-header a {
  font-size: var(--text-size-body);
  font-weight: var(--font-weight-light);
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-primary);
}

.related-item-tag {
  font-size: var(--text-size-micro);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.35rem;
}

.related-item-name {
  font-size: 1rem;
  font-weight: var(--font-weight-light);
  color: var(--color-primary);
  letter-spacing: -0.3px;
  margin: 0 0 0.3rem;
}

.related-item-link {
  font-size: var(--text-size-caption);
  color: var(--color-primary);
  opacity: 0.5;
}

.object-desc-block {
  margin-bottom: 2rem;
}

.object-desc-block .object-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-primary);
}

.object-specs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-top: 1px solid var(--color-primary);
  padding-top: 1.5rem;
}

.object-spec-item p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-primary);
  margin: 0.25rem 0 0;
}

@media(max-width: 900px) {
  .object-split-stage {
    grid-template-columns: 1fr;
    height: auto;
    overflow: visible;
    border-bottom: none;
  }
  .object-gallery {
    height: 70vh;
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
    /* YATAY KAYDIRMA (HORIZONTAL SWIPE) */
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
  }
  
  .works-grid {
    grid-template-columns: 1fr;
  }
  .work-item {
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
  }
  .work-item:last-child {
    border-bottom: none;
  }

  .object-gallery-img {
    flex: 0 0 100vw;
    width: 100vw;
    height: 100%;
    border-bottom: none;
    border-right: 1px solid var(--color-primary);
    scroll-snap-align: center;
  }
  .object-gallery-img:last-child {
    border-right: none;
    border-bottom: none;
  }
  .object-info {
    height: auto;
    overflow-y: visible;
    padding: 4rem 4vw;
  }
}

/* ============================================
   MOBILE OVERRIDES (Gallery Slider & Layout)
   ============================================ */
@media(max-width: 900px) {
  .object-split-stage {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    border-bottom: none !important;
  }
  
  .object-gallery {
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
  }
  
  .gallery-track {
    display: flex;
    align-items: flex-start; /* Prevents vertical stretching distortion */
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    touch-action: pan-y; /* Allows scrolling page vertically while swiping gallery horizontally */
    user-select: none;
    -webkit-overflow-scrolling: touch;
  }
  
  .gallery-track::-webkit-scrollbar { display: none; }
  
  .object-gallery-img {
    flex: 0 0 100vw;
    width: 100vw;
    height: auto;
    object-fit: contain; /* Prevents squishing on iOS/mobile */
    border-right: 1px solid var(--color-primary);
    border-bottom: none;
    scroll-snap-align: center;
  }
  
  .object-gallery-img:last-child {
    border-right: none;
  }
  
  .gallery-mobile-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5vw;
    background: #fff;
    border-bottom: 1px solid var(--color-primary);
    z-index: 10;
  }
  
  .gallery-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }
  
  .g-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-primary);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .g-dot.active { 
    opacity: 1; 
    transform: scale(1.25);
  }
  
  .gallery-arrows {
    display: flex;
    gap: 1.5rem;
  }
  
  .gallery-arrows button {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 2.2rem;
    opacity: 1;
    font-weight: 300;
    cursor: pointer;
    padding: 0 0.5rem;
  }
  
  .gallery-arrows button:active {
    opacity: 0.4;
  }
  
  .object-info {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    overflow: visible !important;
    padding: 3rem 4vw !important;
    background: var(--color-bg); /* Opaque bg just in case */
  }
  
  .object-specs {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    margin-top: 2rem !important;
  }
  
  .object-spec-item {
    position: relative !important;
    display: block !important;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }
  .work-item {
    border-right: none;
    border-bottom: 1px solid var(--color-primary);
  }
  .work-item:last-child {
    border-bottom: none;
  }
}


/* ============================================
   ANA SAYFA — LOGO GİZLE
   ============================================ */


/* Ana sayfada logo alanı daraltılsın ki nav sola kayssın */
.header--home 

/* ============================================
   HERO — YAZI ORTADA
   ============================================ */
.hero-content--center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70vw;
    padding: 0;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 0;
}

.hero-image-bg {
    position: relative;
}

.hero-content--center {
    z-index: 1;
}

/* ============================================
   FULL-WIDTH GÖRSEL BLOKLAR
   Premium: görsel tam yatay, yazı üstte
   ============================================ */
.fullwidth-block {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid var(--color-primary);
    text-decoration: none;
    cursor: pointer;
}

.fullwidth-block-img {
    width: 100%;
    aspect-ratio: 21/9;
    overflow: hidden;
}

.fullwidth-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(0.2, 1, 0.2, 1);
    filter: brightness(0.75);
}

.fullwidth-block:hover .fullwidth-block-img img {
    transform: scale(1.04);
    filter: brightness(0.6);
}

/* Gradient overlay — alt yarı daha koyu, hover'da beyaz ekleme YOK */
.fullwidth-block-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 11, 59, 0.55) 100%
    );
    pointer-events: none;
    transition: background 0.4s ease;
}

.fullwidth-block:hover .fullwidth-block-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 11, 59, 0.6) 100%
    );
}

/* Yazı: sol üstte, padding ile */
.fullwidth-block-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: clamp(1.5rem, 4vw, 3.5rem);
    pointer-events: none;
}

.fullwidth-block-label {
    font-size: clamp(0.55rem, 0.9vw, 0.65rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.65);
    display: block;
    margin-bottom: 0.75rem;
}

.fullwidth-block-title {
    font-size: clamp(2rem, 5vw, 5.5rem);
    font-weight: 200;
    color: #fff;
    letter-spacing: -2px;
    line-height: 0.95;
    margin: 0 0 1rem 0;
}

.fullwidth-block-desc {
    font-size: clamp(0.78rem, 1.1vw, 0.95rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
    max-width: 480px;
    margin: 0 0 1.5rem 0;
}

.fullwidth-block-link {
    font-size: clamp(0.6rem, 0.8vw, 0.68rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    padding-bottom: 2px;
    transition: border-color 0.25s;
}

.fullwidth-block:hover .fullwidth-block-link {
    border-bottom-color: #fff;
}

@media (max-width: 768px) {
    .fullwidth-block-img {
        aspect-ratio: 4/3;
    }
    .fullwidth-block-title {
        letter-spacing: -1px;
    }
}

@media (max-width: 480px) {
    .fullwidth-block-img {
        aspect-ratio: 3/4;
    }
}


/* ============================================
   MAKARA 2026 — TARGETED OVERRIDES
   (Bu blok öncelikli kurallardır)
   ============================================ */

/* 1. block-label — KUTU GÖRÜNÜMÜNÜ KALDIR */
.block-label {
  display: block;
  padding: 0;
  border: none;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-primary);
  opacity: 0.38;
  margin-bottom: 0;
  background: none;
}

/* section--dark içindeki block-label beyaz olsun */
.section--dark .block-label,
.about-awards-header .block-label,
.think-manifesto-inner .block-label {
  color: inherit;
  opacity: 0.5;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}

/* 2. home-manifesto — GRID KALDIR */
.home-manifesto {
  display: block !important;
  grid-template-columns: none;
}
.home-manifesto-label {
  display: none !important;
}
.home-manifesto-text {
  padding: 2rem 3.5vw 4rem;
}

.home-manifesto-primary {
  font-size: clamp(1.8rem, 3.5vw, 4rem);
  font-weight: 200;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  letter-spacing: -1px;
}

.home-manifesto-secondary {
  font-size: clamp(1.1rem, 1.5vw, 1.6rem);
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.8;
  max-width: none;
}

/* 3. home-collab — GRID KALDIR */
.home-collab {
  display: block !important;
  grid-template-columns: none;
}
.home-collab-label {
  display: none !important;
}
.home-collab-body {
  padding: 4rem 3.5vw;
}

/* 4. about-studio — GRID KALDIR */
.about-studio {
  display: block !important;
  grid-template-columns: none;
}
.about-studio-label-col {
  display: none !important;
}
.about-studio-text-col {
  padding: 3.5rem 3.5vw;
  max-width: 820px;
}

/* 5. about-founder — GRID KALDIR */
.about-founder {
  display: block !important;
  grid-template-columns: none;
}
.about-founder-label-col {
  display: none !important;
}
.about-founder-content {
  padding: 3.5rem 3.5vw;
  max-width: 820px;
}

/* 6. about-awards — GRID KALDIR */
.about-awards-inner {
  display: block !important;
  grid-template-columns: none;
}
.about-awards-header {
  border-right: none !important;
  border-bottom: 1px solid var(--color-primary);
  padding: 2rem 3.5vw;
}

/* 7. footer — FLEX */
.footer-content {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
  grid-template-columns: none !important;
  width: 100%;
}
.footer-brand {
  flex: 2;
  padding: 2rem 3.5vw;
  border-right: 1px solid rgba(255,255,255,0.15) !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.8rem;
}
.footer-col {
  flex: 1;
  padding: 2rem 2.5vw;
  border-right: 1px solid rgba(255,255,255,0.15) !important;
}
.footer-col:last-child {
  border-right: none !important;
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column !important;
  }
  .footer-brand {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .footer-col {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .footer-col:last-child {
    border-bottom: none;
  }
}

/* 8. nav — EQUAL FLEX KALDIR */
.nav-primary li {
  flex: 0 0 auto;
  padding: 0 2vw;
}

/* 9. Donma sorunu — body:not(.page-loaded) içerik gizleme YOK */
body:not(.page-loaded) header,
body:not(.page-loaded) main,
body:not(.page-loaded) footer {
  opacity: 1 !important;
}

/* 10. Obje sayfası spec item — border-bottom YOK, block-label kutu YOK */
.object-spec-item .block-label {
  border: none !important;
  padding: 0 !important;
  background: none !important;
  margin-bottom: 0.35rem;
  display: block;
}

/* object-desc-block alt çizgi YOK */
.object-desc-block {
  border-bottom: none !important;
}

/* 11. inner-hero — gizle (Make/Think sayfa başlığı) */
.hide-inner-hero .inner-hero {
  display: none !important;
}

/* 12. Make - about-opening (İleri Koleksiyon tanıtım) tam yatay yazı */
.about-opening {
  display: block;
}
.about-opening .about-opening-text {
  font-size: clamp(1.6rem, 3vw, 3.5rem);
  font-weight: 200;
  line-height: 1.3;
  letter-spacing: -1px;
  max-width: 900px;
}

/* 13. overlay-header içindeki tekrar eden h2 başlık stili */
.overlay-header h2.block-title {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 200;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

/* 14. Özel Üretim label — gizle, yatay yazı */
.make-commission-label {
  display: none;
}

/* 15. home-shop section — mavi arka plan, padding ile */
.home-shop {
  background: var(--color-primary) !important;
}
.home-shop-header {
  padding: 2rem 5vw !important;
}
.home-shop-track-wrap {
  padding: 0 3vw;
}
.home-shop-track {
  padding: 2rem 0;
}

/* shop item üzerindeki section--dark stilleri düzeltelim */
.home-shop.section--dark .shop-item-name {
  color: #fff;
  font-size: 0.9rem;
}

/* ====================================================
   MAKARA 2026 — REVİZYON OVERRIDE BLOĞU #2
   ==================================================== */

/* 1. fullwidth-block hover → BEYAZ SOLDURMASI YOK, sadece zoom */
.fullwidth-block-overlay,
.fullwidth-block:hover .fullwidth-block-overlay,
.fullwidth-block::after,
.fullwidth-block:hover::after,
.fullwidth-block::before,
.fullwidth-block:hover::before {
    background: none !important;
    transition: none !important;
}
.fullwidth-block-img img {
    filter: brightness(0.72) !important;
}
.fullwidth-block:hover .fullwidth-block-img img {
    filter: brightness(0.6) !important;
    transform: scale(1.04);
}

/* 2. Numbers → grid, dengeli */
.home-numbers {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    width: 100%;
}
@media (max-width: 800px) {
    .home-numbers {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
.home-number-item {
    border-right: 1px solid var(--color-primary);
    border-bottom: none;
    flex: none !important;
    width: auto !important;
}
@media (max-width: 800px) {
    .home-number-item:nth-child(2n) {
        border-right: none !important;
    }
    .home-number-item:nth-child(n+3) {
        border-top: 1px solid var(--color-primary);
    }
}
.home-number-label {
    opacity: 0.6;
}
.home-number-value {
    color: var(--color-primary);
}

/* 3. home-collab → beyaz arka plan */
.home-collab {
    background: var(--color-white) !important;
}
.home-collab .home-collab-text,
.home-collab .block-link {
    color: var(--color-primary) !important;
}
.home-collab .block-link {
    border-bottom-color: var(--color-primary) !important;
}

/* 4. overlay-card → sadece siyah gradient (mavi yok) */
.overlay-card-text {
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%) !important;
}

/* 5. block-link → text genişliğinde alt çizgi */
.block-link {
    display: inline !important;
}

/* 6. nav-primary → flex, eşit col yok */
.nav-primary {
    display: flex !important;
    position: relative;
}
.nav-primary li {
    flex: 0 0 auto !important;
    padding: 0 1.8vw !important;
}
/* Header nav bottom decoration line */
.nav-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-primary);
    opacity: 0.12;
    pointer-events: none;
}
/* Sustainability deco */
.has-deco {
    position: relative !important;
}
.nav-deco-sustainability {
    position: absolute !important;
    top: 4px;
    right: -58px;
    font-size: 0.42rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-primary);
    opacity: 0.28;
    white-space: nowrap;
    pointer-events: none;
    z-index: 5;
    line-height: 1;
}

/* 7. Shop arrows → görünür */
.home-shop-track-wrap { position: relative; }
.shop-arrow {
    opacity: 0.85 !important;
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50%;
    padding: 0 !important;
    font-size: 1rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 20;
}
.shop-arrow:hover {
    opacity: 1 !important;
    background: rgba(255,255,255,0.25) !important;
}
/* carousel item spacing */
.home-shop-track {
    padding: 2rem 4vw !important;
    gap: 1px;
}
.shop-item {
    flex: 0 0 calc(100% / 3.2) !important;
}
@media (max-width: 900px) { .shop-item { flex: 0 0 calc(100% / 2.1) !important; } }
@media (max-width: 600px) { .shop-item { flex: 0 0 82% !important; } }

/* 8. Object gallery → header altında başla */
.object-split-stage {
    padding-top: 0 !important;
}
.object-gallery {
    padding-top: 0 !important;
}
.object-gallery .gallery-track {
    padding-top: 0 !important;
}
/* İlk görsel header'ın tam altından başlasın */
.object-gallery-img:first-child {
    margin-top: 0;
}
/* gallery spacing with blue divider */
.object-gallery-img {
    border-bottom: 8px solid var(--color-primary) !important;
    display: block;
}
.object-gallery-img:last-child {
    border-bottom: none !important;
}

/* 9. About: studio text sağa kayık */
.about-studio-text-col {
    padding-left: 12vw !important;
    padding-right: 3.5vw !important;
}
.about-services .about-services-grid {
    padding-left: 0;
}

/* 10. Awards compact dark */
.about-awards.section--dark .about-awards-list {
    padding: 0;
}
.award-compact-item {
    display: flex;
    gap: 2.5rem;
    padding: 1.1rem 3.5vw;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: baseline;
}
.award-compact-item:last-child { border-bottom: none; }
.award-year-sm {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.38);
    flex-shrink: 0;
    width: 36px;
}
.award-info-sm h3 {
    font-size: 0.82rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 0.25rem;
    line-height: 1.3;
}
.award-info-sm p {
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    margin: 0;
    line-height: 1.4;
}
.award-collab {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    font-style: italic;
    margin-top: 0.2rem;
    display: block;
}

/* 11. think.html overlay-card → mavi gradient yok */
.think-section .overlay-card-text,
.overlay-section .overlay-card-text {
    background: linear-gradient(0deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0) 100%) !important;
}

/* 12. Footer flex override */
.footer-content {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
}
@media (max-width: 900px) {
    .footer-content { flex-direction: column !important; }
    .footer-brand { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .footer-col { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.15); }
}

/* 13. contact hero blue manifesto */
.contact-manifesto-hero {
    padding: calc(40px + 8vh) 3.5vw 5vh;
    background: var(--color-primary);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.contact-manifesto-hero p {
    font-size: clamp(1.2rem, 2.2vw, 2rem);
    font-weight: 200;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    max-width: 640px;
    margin: 0;
    letter-spacing: -0.2px;
}

/* ============================================
   MAKARA — HOVER BEYAZ SOLDURMASI TAMAMEN KAPALI
   ============================================ */
.fullwidth-block-overlay,
.fullwidth-block:hover .fullwidth-block-overlay,
.fullwidth-block::after,
.fullwidth-block:hover::after,
.fullwidth-block::before,
.fullwidth-block:hover::before {
    background: none !important;
    opacity: 0 !important;
    display: none !important;
}
.fullwidth-block-img img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease !important;
    filter: brightness(0.68) !important;
}
.fullwidth-block:hover .fullwidth-block-img img {
    transform: scale(1.035) !important;
    filter: brightness(0.58) !important;
}
/* about awards font - Mehmet Veli Arslan ile aynı */
.award-info-sm h3 {
    font-size: 1rem !important;
    font-weight: 300 !important;
    line-height: 1.4 !important;
    letter-spacing: -0.2px !important;
    color: #fff !important;
    margin: 0 0 0.3rem !important;
}
.award-info-sm p {
    font-size: 0.82rem !important;
    font-weight: 300 !important;
    color: rgba(255,255,255,0.5) !important;
    line-height: 1.5 !important;
}
.award-collab {
    font-size: 0.75rem !important;
    color: rgba(255,255,255,0.38) !important;
    font-style: italic !important;
}
/* ============================================
   AWARDS FINAL SPACING — about.html override
   ============================================ */
.award-compact-item {
    padding-top: 2.2rem !important;
    padding-bottom: 2.2rem !important;
}
.award-compact-item:last-child {
    padding-bottom: 3.5rem !important;
}
.award-info-sm h3 {
    font-size: 1.05rem !important;
    font-weight: 300 !important;
    letter-spacing: -0.2px !important;
    line-height: 1.4 !important;
}
.award-info-sm p {
    font-size: 0.82rem !important;
    line-height: 1.55 !important;
}
.about-awards-header {
    padding: 3rem 3.5vw 2.5rem !important;
}
/* ============================================
   MAKARA — HEADER + CAROUSEL FINAL FIX
   ============================================ */

/* 1. HEADER — Final smooth slide fix */
header,
.header-main {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease !important;
    will-change: transform, opacity;
}
.header--hidden,
header.header--hidden,
.header-main.header--hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
}

/* 2. NAV-PRIMARY — grid kaldır, flex + geniş aralık */
.nav-primary,
ul.nav-primary {
    display: flex !important;
    flex: 1;
    align-items: center;
    height: 100%;
}
.nav-primary li,
ul.nav-primary li {
    flex: 0 0 auto !important;          /* sabit genişlik, eşit bölme YOK */
    padding: 0 3vw !important;          /* öğeler arası geniş boşluk */
    border-right: 1px solid var(--color-primary);
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}
.nav-primary li:last-child {
    border-right: none !important;
}

/* 3. SHOP CAROUSEL — kısa görsel, ürünler arası boşluk, oklar */
.home-shop-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1px !important;
    padding: 0 !important;
    scrollbar-width: none;
}
.home-shop-track::-webkit-scrollbar { display: none; }

.shop-item {
    scroll-snap-align: start;
    flex: 0 0 calc(25% - 1px) !important;   /* 4 item görünür */
    border-right: 1px solid rgba(255,255,255,0.15) !important;
    min-width: 200px;
}
.shop-item:last-child { border-right: none !important; }

/* Görsel yüksekliği düşür */
.shop-item-img {
    aspect-ratio: 4/3 !important;   /* önceki 1/1 değil, kısa */
    overflow: hidden;
    width: 100%;
}
.shop-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* View All — beyaz */
.home-shop-viewall,
a.home-shop-viewall {
    color: #fff !important;
    opacity: 0.85 !important;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.4) !important;
}
.home-shop-viewall:hover {
    opacity: 1 !important;
}

/* Shop header padding */
.home-shop-header {
    padding: 1.5rem 3.5vw !important;
    display: flex !important;
    justify-content: flex-end !important;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* Oklar — içeride, görünür */
.home-shop-track-wrap {
    position: relative !important;
    overflow: hidden;
}
.shop-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.18) !important;
    border: 1px solid rgba(255,255,255,0.4) !important;
    color: #fff !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    transition: background 0.2s ease !important;
}
.shop-arrow:hover {
    background: rgba(255,255,255,0.32) !important;
}
.shop-arrow--prev {
    left: 1.5rem !important;
}
.shop-arrow--next {
    right: 1.5rem !important;
}

@media (max-width: 900px) {
    .shop-item { flex: 0 0 calc(50% - 1px) !important; }
}
@media (max-width: 600px) {
    .shop-item { flex: 0 0 82% !important; }
    .shop-arrow { display: none !important; }
}
/* ============================================
   MAKARA — CAROUSEL + HEADER FINAL POLISH
   ============================================ */

/* 1. Carousel: dikey dikdörtgen, makul boy */
.shop-item-img {
    aspect-ratio: 3/4 !important;   /* dikey dikdörtgen */
    overflow: hidden;
    width: 100%;
    background: #0a1a5e;
}
.shop-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.shop-item:hover .shop-item-img img {
    transform: scale(1.04);
}
/* 4 item yan yana, biraz boşlukla */
.shop-item {
    scroll-snap-align: start;
    flex: 0 0 calc(25% - 8px) !important;
    border-right: none !important;
    margin-right: 8px !important;
    min-width: 180px;
}
.shop-item:last-child { margin-right: 0 !important; }
.home-shop-track {
    gap: 0 !important;
    padding: 1.5rem 3.5vw !important;
}
@media (max-width: 900px) {
    .shop-item { flex: 0 0 calc(50% - 8px) !important; }
}
@media (max-width: 600px) {
    .shop-item { flex: 0 0 80% !important; }
    .shop-item { margin-right: 12px !important; }
}

/* 2. Header: tüm dikey çizgileri kaldır */
.header-logo-link,
.header-logo-link:hover {
    border-right: none !important;
    padding-right: 2.5vw !important;
}
.nav-primary li,
ul.nav-primary li {
    border-right: none !important;
    padding: 0 2.5vw !important;
}
.nav-secondary li {
    border-right: none !important;
    border-left: none !important;
}
.language-switcher {
    border-left: none !important;
    padding-left: 2vw !important;
}

/* 3. Header scroll: Handled above in consolidated block */

/* ============================================
   2026-04 UI polish batch
   ============================================ */

/* Smoother slide: Handled above */

/* Footer: no rigid grid, brighter readable text */
.footer-content {
    display: flex !important;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0 !important;
}
.footer-brand {
    flex: 1.7 1 340px;
    border-right: 1px solid rgba(255,255,255,0.18);
}
.footer-col {
    flex: 1 1 180px;
}
.footer-manifesto,
.footer-link,
.footer-text {
    font-family: var(--font-main) !important;
    color: rgba(255,255,255,0.9) !important;
    opacity: 1 !important;
}
.footer-link:hover {
    color: #fff !important;
}
/* Contact order: mail, phone, address */
.footer-content .footer-col:first-of-type .footer-links-group {
    display: flex;
}
.footer-content .footer-col:first-of-type .footer-link[href^="mailto"] { order: 1; }
.footer-content .footer-col:first-of-type .footer-link[href^="tel"] { order: 2; }
.footer-content .footer-col:first-of-type .footer-text { order: 3; }

/* CTA link underline only under text */
.block-link {
    display: inline-flex !important;
    width: fit-content;
    align-self: flex-start;
    border-bottom-width: 1px !important;
}

/* Home products: 4 columns desktop, white card treatment */
.home-shop-track-wrap {
    overflow: hidden !important;
}
.home-shop-track {
    padding: 1.2rem 0 !important;
    gap: 12px !important;
    width: 100%;
    margin-inline: 0;
    scroll-padding-inline: 0;
}
.shop-item {
    box-sizing: border-box;
    flex: 0 0 calc((100% - 36px) / 4) !important; /* 4 kart + 3 gap */
    min-width: 0;
    margin-right: 0 !important;
    border: 1px solid rgba(255,255,255,0.75) !important;
    background: rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}
.shop-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.82);
    pointer-events: none;
}
.shop-item-img {
    aspect-ratio: 5/6 !important;
    background: #fff !important;
}
.shop-item-info {
    border-top: 1px solid rgba(255,255,255,0.75);
}
.section--dark .shop-item-name,
.section--dark .shop-item-inquiry {
    color: #fff !important;
}
.section--dark .shop-arrow {
    display: flex !important;
}
.shop-arrow {
    top: 0 !important;
    bottom: 0 !important;
    transform: none !important;
    width: 56px !important;
    height: auto !important;
    border-radius: 0 !important;
    border: none !important;
    background: transparent !important;
    color: rgba(255,255,255,0.86) !important;
    font-size: 1.35rem !important;
    opacity: 1 !important;
    transition: background 0.2s ease, color 0.2s ease !important;
}
.shop-arrow:hover {
    background: rgba(255,255,255,0.14) !important;
    color: #fff !important;
}
.shop-arrow--prev {
    left: 0 !important;
}
.shop-arrow--next {
    right: 0 !important;
}

/* Think cards: white text, hover dark overlay, blue divider */
.overlay-grid {
    background: #000 !important;
    gap: 0 !important;
}
.overlay-section .overlay-card {
    position: relative;
}
.overlay-section .overlay-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 30, 0);
    transition: background 0.28s ease;
    pointer-events: none;
    z-index: 1;
}
.overlay-section .overlay-card:hover::before {
    background: rgba(0, 0, 0, 0.5);
}
.overlay-section .overlay-card:first-child {
    border-right: 1px solid var(--color-primary);
}
.overlay-section .overlay-card-text {
    background: transparent !important;
    color: #fff !important;
    z-index: 2;
}
.overlay-section .overlay-card-tag,
.overlay-section .overlay-card-title,
.overlay-section .overlay-card-desc {
    color: #fff !important;
}
.overlay-header {
    max-width: 800px;
    display: block;
    padding: 0 3.5vw 2rem !important;
}
.overlay-header .block-title {
    text-align: left;
    margin: 0 !important;
    font-size: clamp(2rem, 4vw, 4rem) !important;
    line-height: 1 !important;
    letter-spacing: -1.5px !important;
    min-height: auto;
    display: block;
    padding: 0 !important;
    border: 0;
    margin-bottom: 0.7rem !important;
}
.overlay-header .block-desc {
    margin: 0 !important;
    max-width: 520px !important;
    min-height: auto;
    display: block;
    padding: 0 !important;
    border: 0;
    opacity: 0.6;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Product detail spacing */
.gallery-img-wrap {
    margin-bottom: 0;
    background: transparent;
    border-bottom: 4px solid var(--color-primary) !important;
}
.gallery-img-wrap:last-child {
    margin-bottom: 0;
}
.related-section-header span {
    display: none;
}
.related-section-header a {
    font-size: 0.9rem !important;
}

@media (max-width: 900px) {
    body {
        padding-top: 0 !important;
    }
    .header-container {
        justify-content: space-between;
        padding-inline: 1rem !important;
    }
    




    /* menu-toggler ve menu-container: yeni tasarım tarafından yönetiliyor */
    /* .menu-active state zaten yeni CSS'de tanımlı */
    .overlay-header {
        display: block;
    }
    .overlay-header .block-title {
        text-align: left;
        min-height: auto;
        padding: 0;
    }
    .overlay-header .block-desc {
        min-height: auto;
        padding: 0;
        max-width: 100% !important;
    }
    .overlay-section .overlay-card:first-child {
        border-right: none;
        border-bottom: 1px solid var(--color-primary);
    }
    .shop-item {
        flex: 0 0 calc((100% - 12px) / 2) !important;
        min-width: 0;
    }
    .home-shop-track {
        width: 100%;
    }
    .shop-arrow {
        display: flex !important;
    }
}

@media (max-width: 600px) {
    .shop-item {
        flex: 0 0 86% !important;
    }
    .footer-brand,
    .footer-col {
        flex: 1 1 100%;
        border-right: none;
    }
}

/* Final override: Think cards only neutral hover overlay */
.overlay-section .overlay-card-text,
.overlay-section .overlay-card:hover .overlay-card-text {
    background: none !important;
}
.overlay-section .overlay-card {
    aspect-ratio: 6 / 5 !important;
}
.overlay-section .overlay-card::before,
.overlay-section .overlay-card:hover::before {
    display: block !important;
    content: '' !important;
    background: rgba(0, 0, 0, 0.05) !important; /* Çok hafif bir derinlik (beyaz yazılar için) */
    z-index: 2 !important;
    transition: background 0.4s ease !important;
}

.overlay-section .overlay-card:hover::before {
    background: rgba(255, 255, 255, 0.15) !important; /* Hover'da beyazlatma efekti */
}

.overlay-section .overlay-card img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
    filter: brightness(0.9) !important; /* Beyaz yazılar için hafif temel karanlık */
}

.overlay-section .overlay-card:hover img {
    transform: scale(1.04) !important;
    filter: brightness(1.15) !important; /* Hover'da beyazlatma */
}
.overlay-section .overlay-card-text {
    position: absolute !important;
    z-index: 3 !important;
}
.overlay-section .overlay-card-tag,
.overlay-section .overlay-card-title,
.overlay-section .overlay-card-desc {
    position: relative;
    z-index: 4 !important;
    color: #fff !important; /* Yazılar tekrar beyaz yapıldı */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Beyazlatma efektinde okunabilirlik için gölge */
}

/* ============================================
   UP-TALKS INTERVIEW DETAIL
   ============================================ */
.interview-main {
  padding-top: 40px;
}

.interview-hero {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  border-bottom: 1px solid var(--color-primary);
  background: var(--color-white);
}

.interview-hero-media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  border-left: 1px solid var(--color-primary);
}

.interview-hero-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.interview-hero-media::after {
  content: none;
}

.interview-hero-text {
  grid-column: 1;
  grid-row: 1;
  padding: 2.1rem 3.5vw 2.2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  align-content: end;
}

.interview-kicker {
  font-size: 0.65rem;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.52;
  margin-bottom: 0.85rem;
  display: inline-block;
}

.interview-title {
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: -1.2px;
  color: var(--color-primary);
  margin: 0;
  font-weight: var(--font-weight-light);
}

.interview-meta {
  justify-self: end;
  text-align: right;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--color-primary);
  opacity: 0.6;
}

.interview-content {
  --interview-side-pad: 3.5vw;
  padding: 3rem 3.5vw 4.5rem;
  border-bottom: 1px solid var(--color-primary);
  background: #fff;
  overflow-x: clip;
}

.interview-intro {
  max-width: 860px;
  margin: 0 0 2.4rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--color-primary);
  opacity: 0.88;
  font-weight: 300;
}

.interview-flow {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.interview-turn {
  max-width: 880px;
  font-size: 0.98rem;
  line-height: 1.82;
  color: var(--color-primary);
}

.interview-question {
  max-width: none;
  width: calc(100% + (2 * var(--interview-side-pad)));
  margin-left: calc(-1 * var(--interview-side-pad));
  margin-right: calc(-1 * var(--interview-side-pad));
  padding: 0.95rem 1.1rem;
  padding-left: calc(var(--interview-side-pad) + 1.1rem);
  padding-right: calc(var(--interview-side-pad) + 1.1rem);
  box-sizing: border-box;
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.82);
}

.interview-question .interview-speaker {
  color: rgba(255, 255, 255, 0.9);
}

.interview-speaker {
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.2px;
}

.interview-spot {
  max-width: 760px;
  margin: 0.2rem 0;
  padding: 1rem 1.25rem 1.05rem;
  border-left: 2px solid var(--color-primary);
  background: rgba(0, 22, 137, 0.03);
  font-size: 1.04rem;
  line-height: 1.72;
  color: var(--color-primary);
  font-style: italic;
  font-weight: 300;
}

.interview-links {
  margin-top: 1rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.interview-links a {
  font-size: 0.86rem;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  text-decoration: none;
}

/* ── Interview Hero — Mobil ── */
@media (max-width: 700px) {
  .interview-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .interview-hero-media {
    grid-column: 1;
    grid-row: 2;
    border-left: none;
    border-top: 1px solid var(--color-primary);
  }

  .interview-hero-media img {
    width: 100%;
    height: auto;
    max-height: 60vw;
    object-fit: cover;
    object-position: top;
  }

  .interview-hero-text {
    grid-column: 1;
    grid-row: 1;
    padding: 1.5rem 1.2rem 1.5rem;
  }

  .interview-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
}


/* ── User Provided Mobile Header & Menu Redesign ── */
@media (max-width: 900px) {
  /* Masaüstü Navigasyonu Gizle */
  .menu-container { display: none !important; }

  .header-main {
      height: 60px !important;
      background: #fff !important;
      display: flex !important;
      align-items: center !important;
      z-index: 2000 !important;
      border: none !important;
  }

  

  

  .menu-toggler {
      display: flex !important;
      flex-direction: column !important;
      justify-content: center !important;
      align-items: flex-end !important;
      gap: 5px !important;
      width: 44px !important;
      height: 44px !important;
      background: none !important;
      border: none !important;
      cursor: pointer !important;
      z-index: 2100 !important;
      position: relative !important;
      margin-left: auto !important;
      margin-right: 0.75rem !important;
  }

  .toggler-bar { display: block !important; height: 1.2px !important; background: #001689 !important; transition: all 0.35s ease !important; }
  .toggler-bar:first-child { width: 24px !important; }
  .toggler-bar:last-child  { width: 16px !important; }

  .menu-toggler[aria-expanded="true"] .toggler-bar:first-child { transform: translateY(3.25px) rotate(45deg) !important; }
  .menu-toggler[aria-expanded="true"] .toggler-bar:last-child  { transform: translateY(-3.25px) rotate(-45deg) !important; width: 24px !important; }

  /* ─ Menü Overlay (Final Blue Design) ─ */
  .mobile-overlay {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100vh !important;
      background: #001689 !important; /* Brand Blue */
      z-index: 1500 !important;
      display: flex !important;
      flex-direction: column !important;
      opacity: 0 !important;
      visibility: hidden !important;
      pointer-events: none !important;
      transform: translateY(-100%) !important;
      transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) !important;
  }
  .mobile-overlay.is-open { 
    opacity: 1 !important; 
    visibility: visible !important;
    pointer-events: all !important; 
    transform: translateY(0) !important; 
  }

  .mobile-overlay-inner { 
    display: flex !important;
    flex-direction: column !important;
    padding: 140px 10% 40px !important; /* Increased top padding to move titles down */
    box-sizing: border-box !important;
    height: 100% !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .mobile-nav-list { 
    display: flex !important; 
    flex-direction: column !important; 
    gap: 1.5rem !important; 
    list-style: none !important; 
    padding: 0 !important; 
    margin: 0 !important; 
    align-items: flex-start !important;
  }

  .mobile-nav-link {
      display: inline-block !important;
      font-family: 'Outfit', sans-serif !important;
      font-weight: 300 !important;
      font-size: 2.1rem !important;
      color: #ffffff !important;
      text-decoration: none !important;
      letter-spacing: -0.5px !important;
      line-height: 1.1 !important;
      background: none !important;
      padding: 0.2rem 0 !important;
      transition: opacity 0.3s ease !important;
  }
  .mobile-nav-link:active { opacity: 0.5 !important; }

  .mobile-nav-sustainability-tag {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.65rem !important;
    font-weight: 300 !important;
    text-transform: uppercase !important;
    letter-spacing: 2.5px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-top: 0.2rem !important;
  }

  .mobile-nav-link--secondary { 
    font-size: 1.2rem !important; 
    opacity: 0.5 !important; 
    margin-top: 1.5rem !important; 
    color: #ffffff !important;
  }

  /* ─ Mobile Menu Marquee ─ */
  .mobile-menu-marquee {
    width: 120% !important;
    margin-left: -10% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 0.8rem 0 !important;
    margin-top: 3rem !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .mobile-marquee-content {
    display: inline-block !important;
    padding-left: 100% !important;
    animation: mobile-marquee-anim 40s linear infinite !important; /* Slowed down from 20s */
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #ffffff !important;
    opacity: 0.7 !important;
  }

  @keyframes mobile-marquee-anim {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }

  .mobile-overlay-footer { 
    display: flex !important; 
    align-items: flex-end !important; 
    justify-content: space-between !important; 
    margin-top: auto !important; 
    padding-top: 1.5rem !important;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1) !important; */
  }

  .mobile-lang-switcher { 
    display: flex !important; 
    gap: 1.5rem !important; 
    color: #ffffff !important;
  }
  .mobile-lang-switcher .lang-btn { 
    color: #ffffff !important; 
    opacity: 0.5 !important; 
    font-size: 1rem !important; 
    background: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    font-family: 'Outfit', sans-serif !important;
  }
  .mobile-lang-switcher .lang-btn.active { opacity: 1 !important; font-weight: 600 !important; }

  .mobile-overlay-tagline { 
    display: none !important; /* Removed tagline */
  }

  /* Toggler & Logo flip to white when open */
  .header-main:has(.mobile-overlay.is-open) .toggler-bar {
      background: #ffffff !important;
  }
  .header-main:has(.mobile-overlay.is-open) .header-logo-link::after {
      color: #ffffff !important;
  }
  .header-main:has(.mobile-overlay.is-open) {
      background: transparent !important;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important; /* White separator line */
  }
}

@media (min-width: 901px) {
  .menu-toggler { display: none !important; }
  .mobile-overlay { display: none !important; }
  
}


/* Masaüstünde mobil toggler gizle */
@media (min-width: 901px) {
  .menu-toggler { display: none !important; }
  .mobile-overlay { display: none !important; }
  




}


/* Masaüstünde mobil toggler gizle */
@media (min-width: 901px) {
  .menu-toggler { display: none !important; }
  .mobile-overlay { display: none !important; }
  




}























/* ── Masaüstü Logo: Görsel Logo ── */
@media (min-width: 901px) {
    
    
}

/* ── Mobil Logo: Makara Yazısı ── */
@media (max-width: 900px) {
    
    
}

/* Global Logo Link Stili */



/* ── Global Logo Visibility ── */
.header-logo-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2500 !important;
    position: relative !important;
    height: 100% !important;
    padding: 0 1.25rem !important;
}

/* ── Desktop: Image Logo ── */
@media (min-width: 901px) {
    .header-logo-link::after {
        content: none !important;
    }
    .nav-logo {
        display: block !important;
        height: 30px !important;
        width: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* ── Mobile: Text Logo ── */
@media (max-width: 900px) {
    .nav-logo {
        display: none !important;
    }
    .header-logo-link {
        padding-left: 0.5rem !important;
    }
    .header-logo-link::after {
        content: 'makara' !important;
        font-family: 'Josefin Sans', sans-serif !important;
        font-weight: 400 !important;
        font-size: 1.85rem !important;
        color: #001689 !important;
        text-transform: lowercase !important;
        letter-spacing: -0.5px !important;
        display: block !important;
        line-height: 1 !important;
    }
}
/* ── Global Reveal on Scroll ── */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.reveal-on-scroll.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}


/* ── Home Services Section: Editorial List ── */
.home-services {
    padding: 10rem 0;
    background: #fff;
    border-top: 1px solid var(--color-primary);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.services-header {
    margin-bottom: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.services-title {
    font-family: var(--font-main);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--color-primary);
    font-weight: 700;
}

.services-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 400px;
    line-height: 1.5;
    opacity: 0.6;
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: grid;
    grid-template-columns: 0.5fr 2fr 1.5fr;
    align-items: baseline;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(0, 22, 137, 0.1);
    transition: all 0.4s ease;
    cursor: default;
}

.service-item:hover {
    padding-left: 1.5rem;
    background: rgba(244, 245, 248, 0.5);
}

.service-item:last-child {
    border-bottom: 1px solid rgba(0, 22, 137, 0.1);
}

.service-num {
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--color-primary);
}

.service-name {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--color-primary);
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-desc {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.8;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.service-tag {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(0, 22, 137, 0.1);
    border-radius: 20px;
    opacity: 0.5;
}

@media (max-width: 900px) {
    .home-services {
        padding: 6rem 0;
    }
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }
    .service-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }
    .service-name {
        font-size: 1.6rem;
    }
    .service-item:hover {
        padding-left: 0;
        background: transparent;
    }
}


/* ── Hero Procedural 3D ── */
.hero-procedural {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px); /* Header(55) + Marquee(45) = 100px */
    margin-top: 55px; /* Header altından başlasın */
    background: #fff; /* Temiz beyaz zemin */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-3d-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Yazının altında kalacak */
    pointer-events: none; /* Mouse etkileşimi body üzerinden alınacak */
}

.hero-procedural .hero-content {
    position: relative;
    z-index: 2; /* 3D sahnenin üzerinde kalmalı */
    pointer-events: auto;
}

.hero-procedural .hero-text {
    color: var(--color-primary); /* Beyaz zeminde lacivert metin */
    font-weight: 200 !important; /* İncelttik */
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.8); /* 3D çizgilerin üzerinde okunabilirlik için */
}

