/* ============================================
   4PLSR — for pleasure. | site stylesheet
   Renk: #FFFFE0 (marka) + siyah
   ============================================ */

:root {
  --brand: #FFFFE0;
  --ink: #0A0A0A;
  --paper: #FFFFF4;
  --gray: #6b6b5e;
  --radius: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--brand);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: var(--ink); color: var(--brand); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .display {
  font-family: 'Archivo Black', sans-serif;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

/* ---------- Top imleç (vmv.studio tarzı) ---------- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;   /* açık zeminde siyaha döner */
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease;
}
.cursor-dot.grow { width: 64px; height: 64px; }

@media (pointer: fine) {
  body, a, button { cursor: none; }
}
@media (pointer: coarse) {
  .cursor-dot { display: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4vw;
  background: var(--brand);
  border-bottom: 2px solid var(--ink);
}
.logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}
.logo em { font-style: normal; }

/* Nav logosu: for pleasure® / creative studio */
.nav .logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-name {
  font-size: 1.45rem;
  text-transform: lowercase;
}
.logo-name .reg {
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 2px;
}
.logo-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  opacity: .75;
  margin-top: 3px;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-weight: 600;
  font-size: .95rem;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 3px;
  background: var(--ink);
  transition: width .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.lang-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  background: var(--ink);
  color: var(--brand);
  border: none;
  padding: 8px 16px;
  border-radius: 100px;
  transition: transform .2s ease;
}
.lang-btn:hover { transform: rotate(-4deg) scale(1.08); }

.burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6vh 4vw;
  position: relative;
}
.hero h1 {
  font-size: clamp(3.2rem, 13vw, 11rem);
}
.hero h1 .tilt {
  display: inline-block;
  transition: transform .3s ease;
}
.hero h1 .tilt:hover { transform: rotate(-6deg) scale(1.06); }
.hero .sub {
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  max-width: 640px;
  margin-top: 28px;
  font-weight: 500;
}
.hero .cta-row { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 34px;
  border-radius: 100px;
  border: 2px solid var(--ink);
  transition: all .25s ease;
}
.btn-dark { background: var(--ink); color: var(--brand); }
.btn-dark:hover { background: transparent; color: var(--ink); transform: translateY(-3px); }
.btn-light { background: transparent; color: var(--ink); }
.btn-light:hover { background: var(--ink); color: var(--brand); transform: translateY(-3px); }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  background: var(--ink);
  color: var(--brand);
}
.marquee-track {
  display: inline-block;
  will-change: transform;
  animation: scroll 22s linear infinite;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
  text-transform: lowercase;
}
.marquee-track span { margin: 0 28px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Bölümler ---------- */
section { padding: 90px 4vw; }
.section-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  margin-bottom: 50px;
}
.section-title .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  vertical-align: super;
  letter-spacing: .1em;
}

.dark-section {
  background: var(--ink);
  color: var(--brand);
}
.dark-section .card { border-color: var(--brand); }

/* ---------- Kartlar ---------- */
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.card {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 8px 8px 0 var(--ink);
}
.dark-section .card:hover { box-shadow: 8px 8px 0 var(--brand); }
.card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.card .kicker {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .6;
  margin-bottom: 10px;
}
.card ul { list-style: none; margin-top: 14px; }
.card ul li {
  padding: 7px 0;
  border-bottom: 1px dashed currentColor;
  font-weight: 500;
  font-size: .95rem;
}
.card ul li:last-child { border-bottom: none; }

/* ---------- Portfolyo ---------- */
.work-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.work-card {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease;
}
.work-card:hover { transform: scale(1.02) rotate(.6deg); }
.work-thumb {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--brand);
  background: var(--ink);
  text-transform: lowercase;
}
.work-thumb.alt1 { background: #1a1a1a; }
.work-thumb.alt2 { background: #26261a; }
.work-info { padding: 20px 24px; background: var(--paper); }
.work-info h3 { font-size: 1.2rem; }
.work-info p { font-size: .85rem; opacity: .65; margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }

/* ---------- Ekip ---------- */
.team-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.team-card { text-align: center; }
.avatar {
  width: 140px; height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.6rem;
  background: var(--ink);
  color: var(--brand);
  transition: transform .3s ease;
}
.team-card:hover .avatar { transform: rotate(8deg) scale(1.08); }

/* ---------- Sayılar ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
}
.stat .big {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}
.stat p { font-weight: 600; opacity: .7; }

/* ---------- CTA bandı ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2.4rem, 8vw, 6rem); margin-bottom: 32px; }

/* ---------- İletişim ---------- */
.contact-wrap {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.contact-info h2 { font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 24px; }
.contact-info .line { font-size: 1.15rem; font-weight: 600; padding: 12px 0; border-bottom: 2px solid var(--ink); }
form { display: flex; flex-direction: column; gap: 16px; }
input, textarea {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  padding: 16px 20px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
}
input:focus, textarea:focus { outline: 3px solid var(--ink); outline-offset: 2px; }
textarea { min-height: 140px; resize: vertical; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: var(--brand);
  padding: 60px 4vw 30px;
}
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 2fr 1fr 1fr;
  margin-bottom: 40px;
}
.footer-grid .logo { font-size: 2.2rem; }
.footer-grid h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .15em; opacity: .6; margin-bottom: 14px; }
.footer-grid a { display: block; padding: 5px 0; font-weight: 500; }
.footer-grid a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,224,.25);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .85rem;
  opacity: .7;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Sayfa başlığı (iç sayfalar) ---------- */
.page-head { padding: 70px 4vw 30px; }
.page-head h1 { font-size: clamp(2.8rem, 9vw, 7rem); }
.page-head p { max-width: 620px; margin-top: 20px; font-size: 1.15rem; font-weight: 500; }

/* ---------- Mobil ---------- */
@media (max-width: 820px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--brand);
    border-bottom: 2px solid var(--ink);
    padding: 24px;
    gap: 18px;
  }
  .nav-links.open { display: flex; }
  .burger { display: block; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
