/* ============================================================
   BETÜL AKAN — Sistemik Konstelasyon · Editoryal / Sanatsal Yön
   Fraunces (serif display) + Archivo (grotesk)
   Paleta: kâğıt, mürekkep, vermilyon
   ============================================================ */

:root {
  --paper: #f3efe7;
  --ink: #171512;
  --accent: #e8452c;
  --muted: #7a756b;
  --line: rgba(23, 21, 18, 0.14);
  --serif: "Fraunces", serif;
  --sans: "Archivo", sans-serif;
  --ease: cubic-bezier(0.65, 0, 0.15, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--paper); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 820px; }

/* ---------- Doku: film greni ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ---------- Özel imleç ---------- */
.cursor { pointer-events: none; }
.cursor__dot,
.cursor__ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
}
.cursor__dot {
  width: 8px; height: 8px;
  background: var(--accent);
}
.cursor__ring {
  width: 38px; height: 38px;
  border: 1px solid var(--accent);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.35s;
}
.cursor--active .cursor__ring { width: 64px; height: 64px; opacity: 0.55; }
@media (hover: none), (max-width: 760px) {
  .cursor { display: none; }
}

/* ---------- Scroll ilerleme ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  z-index: 200;
}

/* ---------- Tipografi ---------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  margin-bottom: 0.3em;
}
h2 em, h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
h3 { font-size: 1.6rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow--light { color: rgba(243, 239, 231, 0.9); }
.accent { color: var(--accent); }

/* Dev bölüm numaraları */
.section__index {
  position: absolute;
  top: -0.35em;
  right: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  pointer-events: none;
  user-select: none;
}
.section--ink .section__index { -webkit-text-stroke-color: rgba(243, 239, 231, 0.12); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 18px 34px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 99px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.btn:hover::before { transform: scaleX(1); }
.btn:hover { border-color: var(--accent); }
.btn > * { position: relative; z-index: 1; }
.btn span { transition: transform 0.35s var(--ease); display: inline-block; }
/* Sadece ok (son span) hareket eder; etiket span'i yerinde kalır */
.btn:hover span:last-child:not(:only-child) { transform: translate(3px, -3px); }

.btn--ink { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn--ink::before { background: var(--paper); }
.btn--ink:hover { color: var(--ink); border-color: var(--paper); }
.btn--accent { background: var(--accent); border-color: var(--accent); }
.btn--accent::before { background: var(--paper); }
.btn--accent:hover { color: var(--ink); border-color: var(--paper); }

.link-circle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}
.link-circle:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 150;
  transition: transform 0.5s var(--ease), background 0.4s, box-shadow 0.4s;
}
/* Blur ::before üzerinde: nav'ın kendisine backdrop-filter verilirse
   fixed konumlu mobil menü katmanı nav'ın kutusuna hapsolur */
.nav.scrolled { box-shadow: 0 1px 0 var(--line); }
.nav.scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(243, 239, 231, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav.hidden { transform: translateY(-100%); }

.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.3rem;
}
.nav__logo em { font-style: italic; color: var(--accent); }
.nav__logo img { height: 52px; width: auto; }
.footer .nav__logo img { height: 64px; margin-inline: auto; }

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a:not(.nav__cta) {
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__cta {
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--ink);
  border-radius: 99px;
  padding: 10px 22px;
  transition: background 0.35s var(--ease), color 0.35s;
}
.nav__cta:hover { background: var(--ink); color: var(--paper); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 160;
}
.nav__burger span {
  width: 28px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  position: relative;
}
.hero__wrap { position: relative; width: 100%; }

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(3.4rem, 11.5vw, 10rem);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.line { display: block; overflow: hidden; }
.line__inner {
  display: block;
  transform: translateY(110%);
  animation: lineUp 1.1s var(--ease) forwards;
}
@keyframes lineUp { to { transform: translateY(0); } }

.line__inner.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  margin-left: 0.8em;
}
.line__inner.serif {
  text-transform: none;
  font-style: italic;
  font-weight: 300;
  margin-left: 1.6em;
}
.line__inner.serif em { color: var(--accent); font-style: italic; }

.hero__media {
  position: absolute;
  top: -30px;
  right: 0;
  width: min(34vw, 420px);
  z-index: 1;
}
.hero__media .img-reveal { aspect-ratio: 3 / 4; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.8s var(--ease), transform 1.2s var(--ease);
}
.hero__media:hover img { filter: grayscale(0%); transform: scale(1.03); }

/* Yeni danışan rozeti */
.hero__badge {
  position: absolute;
  top: 34px;
  right: -26px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(23, 21, 18, 0.12);
  border-radius: 99px;
  padding: 12px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: floatBadge 3.5s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}
.pulse-dot {
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Dönen daire rozet */
.orbit {
  position: absolute;
  bottom: -54px;
  left: -54px;
  width: 128px;
  height: 128px;
  display: block;
}
.orbit__text {
  width: 100%; height: 100%;
  animation: spin 14s linear infinite;
}
.orbit__text text {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  fill: var(--accent);
}
.orbit:hover .orbit__text text { fill: var(--accent); }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit__arrow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
}

.hero__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero__sub {
  max-width: 440px;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero__sub em {
  font-family: var(--serif);
  color: var(--ink);
}
.hero__stats { display: flex; gap: 56px; }
.hero__stats strong {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  display: block;
}
.hero__stats strong::after { content: "+"; color: var(--accent); }
.hero__stats span {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero giriş animasyonları */
.anim { opacity: 0; animation: fadeUp 1s var(--ease) forwards; }
.d1 { animation-delay: 0.15s; }
.d2 { animation-delay: 0.3s; }
.d3 { animation-delay: 0.45s; }
.d4 { animation-delay: 0.6s; }
.d5 { animation-delay: 0.8s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.line__inner.d2 { animation-delay: 0.3s; }
.line__inner.d3 { animation-delay: 0.42s; }
.line__inner.d4 { animation-delay: 0.54s; }

/* ---------- Görsel perde açılışı ---------- */
.img-reveal {
  overflow: hidden;
  position: relative;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s var(--ease);
}
.img-reveal.open, .anim .img-reveal { clip-path: inset(0 0 0 0); }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex;
  align-items: baseline;
  gap: 56px;
  width: max-content;
  animation: scroll 26s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.m-serif, .m-out {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  white-space: nowrap;
}
.m-serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.m-out {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Manifesto ---------- */
.manifest { padding: 140px 0; }
.manifest__text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 4.2vw, 3.2rem);
  line-height: 1.3;
  max-width: 900px;
}
.manifest__text em {
  font-style: italic;
  color: var(--accent);
}
.manifest__text .word {
  display: inline-block;
  opacity: 0.12;
  transition: opacity 0.5s var(--ease);
}
.manifest__text .word.lit { opacity: 1; }

/* ---------- Bölümler ---------- */
.section { padding: 130px 0; position: relative; }
.section--paper { background: #ece7dc; }
.section--ink {
  background: var(--ink);
  color: var(--paper);
}
.section--ink .eyebrow { color: var(--accent); }
.section--accent {
  background: var(--accent);
  color: var(--paper);
}
.section--accent h2 em { color: var(--ink); }

.section__head { margin-bottom: 72px; position: relative; }
.section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* ---------- Hizmetler: editoryal liste + imleç önizleme ---------- */
.works { border-top: 1px solid var(--line); }
.work {
  display: grid;
  grid-template-columns: 90px 1.2fr 1.5fr 60px;
  align-items: center;
  gap: 28px;
  padding: 40px 8px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding 0.4s var(--ease), background 0.4s;
}
.work:hover { background: rgba(23, 21, 18, 0.03); padding-left: 24px; }
.work__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
}
.work h3 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  transition: color 0.35s;
}
.work:hover h3 { color: var(--accent); }
.work p { color: var(--muted); font-size: 0.98rem; }
.work__arrow {
  font-size: 1.5rem;
  justify-self: end;
  transition: transform 0.4s var(--ease), color 0.3s;
}
.work:hover .work__arrow { transform: translate(4px, -4px) rotate(45deg); color: var(--accent); }

/* ---------- Hakkımda ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.about__media { position: relative; }
.about__media .img-reveal { aspect-ratio: 3 / 4; }
.about__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.8s var(--ease);
}
.about__media:hover img { filter: grayscale(0%); }
.about__stamp {
  position: absolute;
  top: 28px; right: -30px;
  background: var(--accent);
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.3;
  padding: 18px 22px;
  border-radius: 50%;
  width: 118px; height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(8deg);
}
.about__text { position: relative; }
.about__text h2 { margin-bottom: 28px; }
.about__text p { color: var(--muted); margin-bottom: 18px; max-width: 520px; }
.about__text p strong { color: var(--ink); font-weight: 600; }
.about__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.35;
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0 40px;
}

/* ---------- Süreç ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.step {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 40px;
  transition: background 0.4s;
}
.step:hover { background: rgba(232, 69, 44, 0.05); }
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 5.5rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
  display: block;
  margin-bottom: 28px;
  transition: color 0.4s;
}
.step:hover .step__num { color: var(--accent); }
.step h3 { margin-bottom: 12px; font-size: 1.5rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Slider ---------- */
.slider {
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding-top: 40px;
}
.slider__mark {
  position: absolute;
  top: -30px; left: -10px;
  font-family: var(--serif);
  font-size: 10rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
  pointer-events: none;
}
.slider__track { display: flex; transition: transform 0.7s var(--ease); }
.slide { min-width: 100%; padding: 0 12px; }
.slide p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.35;
  margin-bottom: 40px;
}
.slide p em { font-style: italic; color: var(--accent); }
.slide footer { display: flex; align-items: center; gap: 18px; }
.slide footer img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
}
.slide footer strong { font-family: var(--serif); font-weight: 400; display: block; font-size: 1.05rem; }
.slide footer span { font-size: 0.82rem; color: rgba(243, 239, 231, 0.55); letter-spacing: 0.08em; text-transform: uppercase; }

.slider__nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 48px;
}
.slider__nav button {
  background: none;
  border: 1px solid rgba(243, 239, 231, 0.3);
  color: var(--paper);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
}
.slider__nav button:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.08);
}
.slider__dots { display: flex; gap: 10px; }
.slider__dots button {
  width: 26px; height: 2px;
  padding: 0;
  border: none;
  background: rgba(243, 239, 231, 0.25);
  cursor: pointer;
  transition: background 0.3s;
}
.slider__dots button.active { background: var(--accent); }

/* ---------- Blog kartları ---------- */
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.post { display: block; position: relative; }
.post__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 14px;
}
.post__img {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 22px;
}
.post__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.7s var(--ease), transform 0.9s var(--ease);
}
.post:hover .post__img img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.post__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.post__meta span { color: var(--accent); font-weight: 600; }
.post__meta time { color: var(--muted); }
.post h3 {
  font-size: 1.45rem;
  line-height: 1.15;
  transition: color 0.3s;
}
.post:hover h3 { color: var(--accent); }
.post > p { color: var(--muted); font-size: 0.92rem; margin-top: 10px; }

/* ---------- Lead magnet ---------- */
.magnet {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}
.magnet h2 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
.magnet__text p { opacity: 0.92; max-width: 460px; font-size: 1.05rem; }
.magnet__form { display: flex; flex-direction: column; gap: 16px; }
.magnet__form input {
  padding: 18px 24px;
  border: 1px solid rgba(243, 239, 231, 0.4);
  background: transparent;
  border-radius: 99px;
  color: var(--paper);
  font-size: 1rem;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.magnet__form input::placeholder { color: rgba(243, 239, 231, 0.6); }
.magnet__form input:focus { border-color: var(--paper); background: rgba(243, 239, 231, 0.08); }
.form-note { font-size: 0.8rem; opacity: 0.7; }

/* ---------- SSS ---------- */
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.3s, padding-left 0.35s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); padding-left: 10px; }
.faq__icon {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--accent);
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}
.faq details[open] .faq__icon { transform: rotate(45deg); }
.faq details p {
  padding: 0 0 28px;
  color: var(--muted);
  max-width: 640px;
}

/* ---------- İletişim ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
}
.contact__text { position: relative; }
.contact__text h2 { margin-bottom: 24px; }
.contact__text > p { color: rgba(243, 239, 231, 0.65); max-width: 400px; }
.contact__info {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__info div {
  border-left: 1px solid var(--accent);
  padding-left: 20px;
}
.contact__info span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 239, 231, 0.45);
  margin-bottom: 2px;
}
.contact__info strong { font-family: var(--serif); font-weight: 400; font-size: 1.1rem; }

.contact__form { display: flex; flex-direction: column; gap: 8px; }
.field { position: relative; padding-top: 22px; }
.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(243, 239, 231, 0.25);
  color: var(--paper);
  padding: 12px 2px;
  font-size: 1.05rem;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}
.field select { cursor: pointer; -webkit-appearance: none; appearance: none; }
.field select option { color: var(--ink); }
.field select:invalid { color: rgba(243, 239, 231, 0.45); }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--accent); }
.field label {
  position: absolute;
  left: 2px; top: 32px;
  color: rgba(243, 239, 231, 0.45);
  font-size: 1.05rem;
  pointer-events: none;
  transition: all 0.3s var(--ease);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.field--select::after {
  content: "↓";
  position: absolute;
  right: 6px; top: 34px;
  color: var(--accent);
  pointer-events: none;
}
.contact__form .btn { margin-top: 28px; align-self: flex-start; }

/* ---------- Footer ---------- */
.footer { padding-top: 40px; }
.footer__giant {
  display: block;
  text-align: center;
  padding: 70px 24px 60px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.footer__giant-line {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3rem, 11vw, 9rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  transition: color 0.4s;
}
.footer__giant-line:first-child {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}
.footer__giant-line em { font-style: italic; font-weight: 300; }
.footer__giant-arrow {
  display: inline-block;
  color: var(--accent);
  transition: transform 0.5s var(--ease);
}
.footer__giant:hover .footer__giant-arrow { transform: translateX(24px); }
.footer__giant:hover em { color: var(--accent); }

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 44px;
  padding-bottom: 36px;
}
.footer__links { display: flex; gap: 30px; flex-wrap: wrap; }
.footer__links a { font-size: 0.9rem; transition: color 0.25s; }
.footer__links a:hover { color: var(--accent); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  font-size: 0.78rem;
  font-weight: 600;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
}
.footer__social a:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-3px);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  padding-bottom: 28px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.footer__dev { font-size: 0.76rem; }
.footer__dev a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: color 0.25s, border-color 0.25s;
}
.footer__dev a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- WhatsApp ---------- */
.whatsapp {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 90;
  width: 56px; height: 56px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s, transform 0.35s var(--ease);
  animation: waPop 0.7s var(--ease) 1.8s backwards;
}
.whatsapp:hover { background: #25d366; transform: scale(1.12) rotate(8deg); }
@keyframes waPop { from { transform: scale(0) rotate(-90deg); } }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Blog sayfası ---------- */
.page-hero { padding: 180px 0 60px; position: relative; }
.page-hero h1 {
  font-size: clamp(3rem, 9vw, 7.5rem);
  text-transform: uppercase;
}
.page-hero h1 .serif-line {
  text-transform: none;
  font-style: italic;
  font-weight: 300;
}
.page-hero > .container > p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin-top: 26px;
}

.blog-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 44px 0 0;
}
.blog-filters button {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 10px 22px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 99px;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.35s var(--ease);
}
.blog-filters button:hover,
.blog-filters button.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.featured {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: stretch;
  margin: 70px 0 90px;
  border: 1px solid var(--ink);
}
.featured__img { overflow: hidden; }
.featured__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.8s var(--ease), transform 1s var(--ease);
}
.featured:hover .featured__img img { filter: grayscale(0); transform: scale(1.04); }
.featured__body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured__body h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.08;
  margin: 16px 0 18px;
}
.featured:hover h2 { color: var(--accent); }
.featured__body > p { color: var(--muted); margin-bottom: 28px; }

/* ---------- Responsive ---------- */
/* Masaüstünde (fotoğraf başlığın yanında dururken) başlık portrenin
   üzerine, yüze denk gelmesin — "GÖRÜNMEYENİ" fotoğrafın sol kenarından
   önce bitecek şekilde sınırlandı */
@media (min-width: 1021px) {
  .hero__title { font-size: clamp(4rem, 8.6vw, 7rem); }
  /* Küçülen başlıkla orantılı: foto biraz küçülür, alt istatistik
     satırına ve dönen rozete çakışmayacak yüksekliğe iner */
  .hero__media { width: min(30vw, 380px); }
  .orbit { bottom: -20px; }
}

/* Konteyner viewport'a dayandığında rozet (right:-26px) dışarı taşmasın */
@media (max-width: 1320px) and (min-width: 1021px) {
  .hero__badge { right: 12px; }
}

@media (max-width: 1020px) {
  .hero__media { width: 40vw; position: relative; top: 0; margin: 48px 0 0 auto; }
  .hero__foot { flex-direction: column; align-items: flex-start; }
  .about, .contact, .magnet, .featured { grid-template-columns: 1fr; }
  .about { gap: 56px; }
  .contact { gap: 56px; }
  .steps { grid-template-columns: 1fr; }
  .posts { grid-template-columns: 1fr 1fr; }
  .work { grid-template-columns: 60px 1fr 40px; }
  .work p { display: none; }
  .section { padding: 90px 0; }
  .section__index { font-size: 7rem; }
  .about__stamp { right: 8px; }
}

/* Menü 7 linkli olduğundan 1080px altında yatay sığmıyor — hamburger bu genişlikte devreye girer */
@media (max-width: 1080px) {
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    font-size: 1.4rem;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.5s var(--ease), visibility 0s 0.5s;
    z-index: 140;
  }
  .nav__links.open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.5s var(--ease);
  }
  .nav__links a { font-family: var(--serif); }
  .nav__burger { display: flex; }
  .nav__burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
}

@media (max-width: 700px) {
  .container { padding: 0 20px; }
  .nav__inner { padding: 16px 20px; }
  .nav__logo img { height: 44px; }

  .hero { padding-top: 110px; }
  .hero__title { font-size: clamp(2.1rem, 10.5vw, 4rem); }
  .line__inner.outline { margin-left: 0.4em; -webkit-text-stroke-width: 1px; }
  .line__inner.serif { margin-left: 0.8em; }
  .hero__stats { flex-wrap: wrap; row-gap: 20px; }
  .work { grid-template-columns: 44px 1fr 28px; gap: 16px; }
  .work h3 { font-size: 1.35rem; }
  .hero__media { width: 70vw; }
  .hero__badge { right: -8px; font-size: 0.78rem; padding: 10px 16px; }
  .orbit { left: -20px; width: 104px; height: 104px; }
  .hero__stats { gap: 32px; }
  .posts { grid-template-columns: 1fr; }
  .step { padding: 40px 28px; }
  .featured__body { padding: 36px 28px; }
  .manifest { padding: 90px 0; }
  .whatsapp { bottom: 22px; right: 22px; }
  .contact__form .btn { align-self: stretch; justify-content: center; }

  .section { padding: 72px 0; }
  .section__head { margin-bottom: 48px; }
  .about { gap: 40px; }
  .about__stamp { width: 96px; height: 96px; font-size: 0.8rem; padding: 12px; right: 0; }
  .page-hero { padding: 140px 0 48px; }
  .yazi { padding: 140px 0 72px; }
  .footer__giant { padding: 48px 20px 40px; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .anim { opacity: 1; transform: none; }
  .line__inner { transform: none; }
  .img-reveal { clip-path: none; }
  .manifest__text .word { opacity: 1; }
  .grain { display: none; }
}

/* ===== Eğitimler & Üyelikler listesi ===== */
.trainings__group {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  margin: 3rem 0 0.5rem;
}
.trainings__group:first-of-type { margin-top: 1rem; }

.trainings {
  list-style: none;
}
.trainings li {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.trainings li:last-child { border-bottom: none; }
.trainings time {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  min-width: 3.2rem;
  font-size: 1.05rem;
}
.trainings strong {
  font-weight: 600;
  display: block;
}
.trainings span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Yaklaşan etkinlikler (panelden gelir, koyu bölümde) ---------- */
.etkinlikler { margin-top: 56px; display: grid; gap: 16px; }
.etkinlikler h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.etkinlik {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 26px;
  border: 1px solid rgba(243, 239, 231, 0.16);
  border-radius: 14px;
  flex-wrap: wrap;
}
.etkinlik__tarih { flex: none; min-width: 140px; }
.etkinlik__tarih strong { display: block; color: var(--accent); font-size: 1.05rem; }
.etkinlik__tarih span { font-size: 0.85rem; opacity: 0.7; }
.etkinlik__govde { flex: 1; min-width: 220px; }
.etkinlik__govde h4 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.etkinlik__yer {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 4px 0;
}
.etkinlik__govde p { font-size: 0.9rem; opacity: 0.8; }
.etkinlik .btn { flex: none; }

/* ---------- Blog yazı detay sayfası ---------- */
.yazi { padding: 180px 0 100px; }
.yazi__baslik .eyebrow a:hover { color: var(--accent); }
.yazi__baslik h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin: 16px 0 12px;
}
.yazi__baslik time { color: var(--muted); font-size: 0.9rem; }
.yazi__kapak { margin: 36px 0; border-radius: 16px; overflow: hidden; }
.yazi__kapak img { width: 100%; }
.yazi__govde { margin-top: 32px; font-size: 1.05rem; }
.yazi__govde h2, .yazi__govde h3 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 1.4em 0 0.5em;
}
.yazi__govde p { margin: 0.7em 0; }
.yazi__govde ul, .yazi__govde ol { margin: 0.7em 0 0.7em 1.4em; }
.yazi__govde img { border-radius: 12px; margin: 1em 0; }
.yazi__govde a { color: var(--accent); text-decoration: underline; }
.yazi__hata { margin-top: 24px; }
.yazi__hata a { color: var(--accent); text-decoration: underline; }

/* Gömülü video (YouTube/Vimeo) — panel editöründen gelir */
.video-gomme { position: relative; padding-top: 56.25%; margin: 1.2em 0; }
.video-gomme iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* ---------- Sertifikalar & belgeler (panelden gelir) ---------- */
.sertifikalar {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.sertifika {
  display: block;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.sertifika:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(23, 21, 18, 0.12);
}
.sertifika img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.sertifika__pdf {
  height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  font-size: 2rem;
  background: var(--paper);
}
.sertifika__pdf small {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.sertifika__baslik {
  display: block;
  padding: 12px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}
.sertifika__baslik small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}

/* ---------- Atölyelerden kareler (Etkinlikler bölümü) ---------- */
.atolye-kareler {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.atolye-kareler img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.atolye-kareler figcaption {
  font-size: 0.85rem;
  color: rgba(243, 239, 231, 0.6);
  padding-top: 12px;
}
@media (max-width: 700px) {
  .atolye-kareler { grid-template-columns: 1fr; }
}

/* ---------- Lightbox (sertifika büyütme) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(23, 21, 18, 0.92);
  display: grid;
  place-items: center;
  padding: 32px;
  cursor: zoom-out;
}
.lightbox figure { max-width: min(920px, 100%); max-height: 100%; text-align: center; }
.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}
.lightbox figcaption { color: var(--paper); margin-top: 14px; font-size: 0.9rem; }

/* ---------- Hero altı "Duyurular & Etkinlikler" birleşik bölümü ---------- */
.guncel__altbaslik {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  margin: 56px 0 24px;
}
#duyuruOnizlemeWrap .posts { margin-top: 0; }
.guncel__tumu { margin-top: 44px; }
