/* Alt sayfalar (Çalışmalar / Hakkında / İletişim) — düz siyah arka plan */

@font-face {
  font-family: "TTNeoris";
  src: url("../assets/fonts/TTNeoris-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "TheSeasons";
  src: url("../assets/fonts/TheSeasons-Italic.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #f2f2f2;
  --ink-soft: rgba(242, 242, 242, 0.55);
  --line: rgba(255, 255, 255, 0.12);
  --gold: #c2a37a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #000;
  background-image: linear-gradient(rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.74)),
    url("../assets/websitezenilaydakapak.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--ink);
  font-family: "TTNeoris", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

em {
  font-family: "TheSeasons", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

/* ---------------- Üst menü ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: transparent;
}

.site-header .brand {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(0.8rem, 1.3vw, 1rem);
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

/* Son menü öğesinin harf-aralığı kuyruğunu iptal et (sağ boşluk = sol boşluk) */
.site-nav a:last-child {
  margin-right: -0.06em;
}

/* Sağ küme: menü + dil değiştirici */
.header__right {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.6vw, 2.2rem);
  margin-left: auto;
}

/* Dil değiştirici (TR | EN) */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  pointer-events: auto;
}

.lang-opt {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(0.78rem, 1.2vw, 0.92rem);
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  transition: color 0.3s ease;
}

.lang-opt:hover {
  color: var(--ink);
}

.lang-opt.is-active {
  color: var(--ink);
}

.lang-sep {
  color: var(--ink-soft);
  opacity: 0.5;
  font-size: 0.85rem;
}

/* Hamburger butonu (yalnızca mobilde görünür) */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 20;
  padding: 0 0.1em;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
}

/* ---------------- Sayfa gövdesi ---------------- */
.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 9vw, 8rem) clamp(1.5rem, 5vw, 4rem) 6rem;
}

.page__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.page__title {
  font-size: clamp(2.6rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.page__lead {
  max-width: 60ch;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.6;
  color: rgba(242, 242, 242, 0.82);
}

/* ---------------- Çalışmalar grid ---------------- */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 3rem;
}

.work-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a0a;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
}

.work-card__thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #123c40, #0a1e26 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.work-card__body {
  padding: 1.25rem 1.4rem 1.6rem;
}

.work-card__title {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.work-card__meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ---------------- Hakkında ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  margin-top: 2rem;
}

.about-grid p + p {
  margin-top: 1.25rem;
}

.about-aside h3 {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 1.6rem 0 0.6rem;
}

.about-aside ul {
  list-style: none;
}

.about-aside li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
  color: rgba(242, 242, 242, 0.85);
}

/* ---------------- İletişim ---------------- */
.contact__eyebrow {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.contact__title {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: 1.6rem;
}

.contact__lead {
  max-width: 48ch;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  color: rgba(242, 242, 242, 0.78);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

/* Büyük e-posta bağlantısı */
.contact__mail {
  display: inline-flex;
  flex-direction: column;
  gap: 0.55rem;
  text-decoration: none;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.contact__mail-label {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact__mail-addr {
  position: relative;
  width: fit-content;
  font-size: clamp(1.4rem, 2.6vw, 1.7rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.contact__mail-addr::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12em;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact__mail:hover .contact__mail-addr::after {
  transform: scaleX(1);
}

/* Sosyal kanallar */
.contact__channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
  max-width: 880px;
}

.channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.35s ease, border-color 0.35s ease,
    background 0.35s ease;
}

.channel:hover {
  transform: translateY(-4px);
  border-color: rgba(194, 163, 122, 0.6);
  background: rgba(194, 163, 122, 0.07);
}

.channel__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.channel__net {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.channel__handle {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.channel__arrow {
  font-size: 1.2rem;
  color: var(--ink-soft);
  transition: transform 0.35s ease, color 0.35s ease;
}

.channel:hover .channel__arrow {
  transform: translate(3px, -3px);
  color: var(--ink);
}

/* ---------------- Alt bilgi ---------------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

@media (max-width: 760px) {
  .site-nav {
    gap: 1.1rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================ */
/* ÇALIŞMALAR — interaktif galeri (ok tuşları / scroll ile gez) */
/* ============================================================ */
.gallery-page {
  overflow: hidden;
}

.site-header--ghost {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

.gallery {
  position: relative;
  height: 100vh;        /* sabit yükseklik -> görsel her oranda aynı yerde durur */
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 1.5fr) minmax(240px, 1fr);
  align-items: center;  /* görsel ve yan yazılar dikeyde ortalanır (sabit konum) */
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

/* Yan yazılar kendi bölgelerinde ortalanır (görsele göre simetrik) */
.gallery__info,
.gallery__text {
  justify-self: center;
  text-align: center;
}

.gallery__col {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery.is-anim .gallery__col {
  opacity: 0;
  transform: translateY(14px);
}

/* ---- Sol: künye ---- */
.gallery__info {
  position: relative;
}

.gallery__num {
  position: absolute;
  left: -0.08em;
  top: -0.5em;
  font-family: "TheSeasons", serif;
  font-style: italic;
  font-size: clamp(8rem, 15vw, 15rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 0;
}

.gallery__info > *:not(.gallery__num) {
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 999px;
  padding: 0.55em 1.3em;
  margin-bottom: 2.2rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.fields {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.field dt {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.field dd {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ---- Orta: eser ---- */
.gallery__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stage__frame {
  position: relative;
  max-height: 66vh;
  background: linear-gradient(135deg, #161616, #0a0a0a);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  cursor: pointer;
}

.stage__frame img {
  display: block;
  max-width: 33vw;
  max-height: 64vh;
  width: auto;
  height: auto;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.stage__frame img.loaded {
  opacity: 1;
}

.stage__ph {
  position: absolute;
  inset: 0;
  min-width: 30vw;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--ink-soft);
  font-family: "TheSeasons", serif;
  font-style: italic;
  font-size: 1.1rem;
  transition: opacity 0.4s ease;
}

.stage__frame img.loaded ~ .stage__ph {
  opacity: 0;
}

.gallery__caption {
  margin-top: 1.5rem;
  font-family: "TheSeasons", serif;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: rgba(242, 242, 242, 0.5);
  text-align: center;
}

/* ---- Sağ: metin ---- */
.gallery__title {
  font-family: "TheSeasons", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 3.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.gallery__poem {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: rgba(242, 242, 242, 0.72);
}

.gallery__chamber {
  margin-top: 2.2rem;
  color: var(--gold);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.gallery__chamber::before {
  content: "— ";
}

/* ---- Alt: ilerleme + ipucu ---- */
.gallery__progress {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--ink-soft);
}

.gallery__hint {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .gallery-page {
    overflow: auto;
  }
  .gallery {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
    padding: 6rem 1.5rem 5rem;
    gap: 2.5rem;
  }
  .gallery__num {
    display: none;
  }
  .stage__frame img {
    max-width: 86vw;
  }
  .gallery__hint {
    display: none;
  }
}

/* ============================================================ */
/* HAKKINDA — Çalışmalar tarzı editöryel düzen                  */
/* ============================================================ */
.about {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(7rem, 16vh, 12rem) clamp(1.5rem, 5vw, 5rem) 7rem;
}

.about__eyebrow {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.about__name {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  /* isim, anlatı sütunu (sağ) ile aynı hizada; alt boşluğu grid row-gap veriyor */
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin: 0;
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.7fr);
  column-gap: clamp(2rem, 6vw, 5rem);
  row-gap: clamp(1.8rem, 4vw, 3rem);
  align-items: start;
}

/* İsim sağa kayınca solda açılan boşluğa küçük kare profil görseli */
.about__photo {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  width: clamp(120px, 13vw, 168px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.about__facts {
  grid-column: 1;
  grid-row: 2;
  position: sticky;
  top: clamp(7rem, 14vh, 10rem);
}

.about__body {
  grid-column: 2;
  grid-row: 2;
}

.about__lead {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 2rem;
}

.about__body p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.85;
  color: rgba(242, 242, 242, 0.78);
}

.about__body p + p {
  margin-top: 1.3rem;
}

.about__body strong {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--ink);
}

.about__rule {
  height: 1px;
  width: 100%;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  opacity: 0.5;
}

.about__quote {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.about__sign {
  margin-top: 2.4rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: rgba(242, 242, 242, 0.8);
}

.about__sign strong {
  display: block;
  margin-top: 0.3rem;
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 820px) {
  .about__layout {
    grid-template-columns: 1fr;
  }
  /* tek sütuna inince yerleşimi sıfırla ve sırayı belirle */
  .about__photo,
  .about__name,
  .about__facts,
  .about__body {
    grid-column: auto;
    grid-row: auto;
  }
  .about__name  { order: 1; align-self: start; }
  .about__photo { order: 2; }
  .about__facts { order: 3; position: static; }
  .about__body  { order: 4; }
}

/* ============================================================ */
/* TELEFON (≤600px) — header sığsın, metinler küçülsün          */
/* ============================================================ */
@media (max-width: 600px) {
  /* Üst menü: marka solda, hamburger sağda; menü açılan panel */
  .site-header {
    padding: 1.25rem 1.25rem;
    position: relative;
    justify-content: flex-start;
  }
  .site-header .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.95rem;
    line-height: 1;
    letter-spacing: 0.12em;
  }
  /* Üst menü ve hamburger mobilde gizli — alt sekme çubuğu (tabbar) kullanılır */
  .nav-toggle {
    display: none;
  }
  .site-nav {
    display: none;
  }

  /* Galeri: metinler ve görsel sığsın (künye/Marka bloğu daha yukarıda başlasın) */
  .gallery {
    padding: 1.2rem 1.25rem 7rem;
    gap: 1.4rem;
  }
  /* Eser sayacı (01 / 05) mobilde gizli */
  .gallery__progress {
    display: none;
  }
  .gallery__title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
  .gallery__poem {
    font-size: 0.8rem;
    line-height: 1.7;
  }
  .stage__frame img {
    max-width: 82vw;
    max-height: 52vh;
  }
  .stage__ph {
    min-width: 70vw;
    min-height: 32vh;
  }
  .field dt {
    font-size: 0.62rem;
  }
  .field dd {
    letter-spacing: 0.06em;
    font-size: clamp(0.82rem, 3.2vw, 0.92rem);
  }

  /* İletişim ve diğer sayfa gövdeleri: üstte header'ı, altta sekme çubuğunu boşalt
     (başlık, Hakkında'daki "İlayda Özen" ile aynı hizada başlasın; yan boşluk da
     Hakkında ile aynı 1.25rem olsun) */
  .page {
    padding: 3.75rem 1.25rem 7rem;
  }

  /* Sosyal kanallar mobilde: kart kenar boşluğu yüzünden içerik sağa kaçıyordu.
     Kartları sade bir listeye çevirip yazıları başlık/e-posta ile aynı sol
     çizgide hizala (arttaki ok sağda kalır). */
  .contact__channels {
    gap: 0;
  }
  .channel {
    padding: 1.05rem 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: none;
  }
  .channel:hover {
    transform: none;
    background: none;
    border-color: var(--line);
  }

  /* Hakkında */
  .about {
    padding: 3.75rem 1.25rem 7rem;
  }
  .about__name {
    font-size: clamp(2rem, 9.5vw, 2.8rem);
    margin-bottom: clamp(1.6rem, 5vw, 2.4rem);
  }
  .about__lead {
    font-size: clamp(1.05rem, 4.2vw, 1.3rem);
    /* gövdeyle aynı satır aralığı: blok bütün ve düz okunsun (eğik algı gitsin) */
    line-height: 1.6;
    /* sağ kenar da eşit bitsin */
    text-align: justify;
  }
  .about__body p {
    font-size: clamp(0.92rem, 3.4vw, 1.02rem);
    line-height: 1.6;
    text-align: justify;
  }
  /* paragraflar arası boşluğu eşitle/sıkılaştır — bloklar aynı ritimde aksın */
  .about__body p + p {
    margin-top: 1rem;
  }
  /* künye: etiket ile değeri biraz yaklaştır, blok daha kompakt dursun */
  .fields {
    gap: 1.1rem;
  }
  .field dt {
    margin-bottom: 0.25rem;
  }
  /* iletişim girişi de gövdeyle aynı tutarlı satır aralığında olsun */
  .contact__lead {
    line-height: 1.6;
    text-align: justify;
  }
}

/* ============================================================ */
/* MOBİL ALT SEKME ÇUBUĞU (tabbar)                              */
/* ============================================================ */
.tabbar {
  display: none;
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: 0.4rem;
  transform: translateX(-50%);
  justify-content: space-between;
  align-items: center;
  gap: 0.25rem;
  width: calc(100% - 1.6rem);
  max-width: 440px;
  padding: 0.35rem;
  background: rgba(12, 14, 16, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
}

.tabbar a {
  flex: 1;
  text-align: center;
  white-space: nowrap;
  padding: 0.7rem 0.4rem;
  border-radius: 999px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease;
}

.tabbar a[aria-current="page"] {
  color: #0c0e10;
  background: var(--ink);
}

@media (max-width: 600px) {
  .tabbar {
    display: flex;
  }
}
