/* =========================================
   Odak Medya — Sinematik Deneyim
   ========================================= */

:root {
  --bg: #0A0A0B;
  --surface: #121214;
  --surface-2: #1A1A1D;
  --text: #F5F2EC;
  --muted: #A09B92;
  --accent: #E6B31E;
  --accent-soft: rgba(230, 179, 30, 0.16);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', Helvetica, Arial, sans-serif;
  --banner-h: 34px;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & Base ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
  padding-top: var(--banner-h);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* ---------- Bağımsız Taslak Notu ---------- */

.draft-banner {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--banner-h);
  background: #060607;
  color: rgba(245, 242, 236, 0.62);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  z-index: 120;
  border-bottom: 1px solid rgba(245, 242, 236, 0.06);
  user-select: none;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: var(--banner-h);
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  z-index: 110;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(245, 242, 236, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(230, 179, 30, 0.55);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, color 0.3s ease;
}

.brand:hover .brand-mark {
  background: var(--accent);
  color: var(--bg);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

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

.site-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.3s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  color: var(--accent) !important;
}

/* ---------- Hamburger ---------- */

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 130;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--text);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.nav-toggle span:first-child {
  top: 15px;
}

.nav-toggle span:last-child {
  bottom: 15px;
}

.nav-toggle.is-active span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- Mobile Menu ---------- */

.mobile-menu {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-media {
  position: absolute;
  inset: -12% 0 0 0;
  z-index: 0;
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(10, 10, 11, 0.92) 0%, transparent 55%),
    linear-gradient(to right, rgba(10, 10, 11, 0.72) 0%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding:
    calc(var(--banner-h) + var(--header-h) + 3rem)
    clamp(1.25rem, 5vw, 4rem)
    4rem;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 6.5vw, 5.75rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.5rem;
}

.hero-sub {
  max-width: 470px;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, transparent, var(--accent));
}

/* ---------- Eyebrow & Butonlar ---------- */

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-accent {
  background: var(--accent);
  color: #0A0A0B;
}

.btn-accent:hover {
  background: #F0C244;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(230, 179, 30, 0.18);
}

.btn-ghost {
  border-color: rgba(245, 242, 236, 0.35);
  color: var(--text);
  background: rgba(10, 10, 11, 0.25);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Hizmetler Giriş ---------- */

.services {
  background: var(--bg);
}

.services-intro {
  min-height: 70vh;
  min-height: 70svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 10vh, 8rem) clamp(1.25rem, 5vw, 4rem);
}

.services-intro h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.25rem;
}

.services-note {
  max-width: 420px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Sticky Paneller ---------- */

.panels {
  position: relative;
}

.panel {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--bg);
}

.panel-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.panel-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 10, 11, 0.94) 0%, rgba(10, 10, 11, 0.35) 45%, rgba(10, 10, 11, 0.08) 100%);
}

.panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: clamp(1.5rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 6vh, 5rem);
}

.panel-content h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.75rem;
}

.panel-content p {
  max-width: 480px;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.panel-content .placeholder-note {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
  margin: 0;
}

/* ---------- Neden Biz ---------- */

.why {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.why-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 10, 11, 0.6), transparent 60%),
    linear-gradient(to right, rgba(10, 10, 11, 0.96) 0%, rgba(10, 10, 11, 0.75) 45%, rgba(10, 10, 11, 0.3) 100%);
}

.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: clamp(4rem, 10vh, 7rem) clamp(1.25rem, 5vw, 4rem);
}

.why-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.5rem;
}

.why-content p {
  color: var(--muted);
  margin-bottom: 1.1rem;
  max-width: 460px;
}

.why-content .btn {
  margin-top: 1.5rem;
}

/* ---------- İletişim ---------- */

.contact {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(4rem, 12vh, 9rem) clamp(1.25rem, 5vw, 4rem);
  border-top: 1px solid rgba(245, 242, 236, 0.05);
}

.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 2rem;
}

.contact-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.contact-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(245, 242, 236, 0.08);
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.contact-list a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.05rem;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-list a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ---------- Demo Form ---------- */

.demo-form {
  background: var(--surface);
  border: 1px solid rgba(245, 242, 236, 0.07);
  border-radius: 4px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-note {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(230, 179, 30, 0.25);
  background: var(--accent-soft);
  border-radius: 2px;
  padding: 0.55rem 0.8rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.demo-form label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

.demo-form input,
.demo-form textarea {
  background: var(--bg);
  border: 1px solid rgba(245, 242, 236, 0.12);
  border-radius: 2px;
  padding: 0.95rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
  color: rgba(160, 155, 146, 0.55);
}

.demo-form input:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.demo-form .btn {
  margin-top: 0.75rem;
  width: 100%;
}

.form-feedback {
  font-size: 0.9rem;
  color: var(--accent);
  text-align: center;
  border-top: 1px solid rgba(230, 179, 30, 0.2);
  padding-top: 0.85rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: #060607;
  border-top: 1px solid rgba(245, 242, 236, 0.06);
  padding: 2rem clamp(1.25rem, 5vw, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- Sinematik İlerleme Göstergesi ---------- */

.progress {
  position: fixed;
  top: var(--banner-h);
  right: 0;
  bottom: 0;
  width: 3px;
  background: rgba(245, 242, 236, 0.07);
  z-index: 115;
}

.progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}

/* ---------- Reveal (Progressive Enhancement) ---------- */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

html.js .panel-media {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.15s var(--ease-out);
}

html.js .panel.is-visible .panel-media {
  clip-path: inset(0 0 0 0);
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  :root {
    --header-h: 62px;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-menu {
    display: flex;
    position: fixed;
    inset: calc(var(--banner-h) + var(--header-h)) 0 0 0;
    background: rgba(10, 10, 11, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    z-index: 105;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.9rem;
    text-decoration: none;
    color: var(--text);
    transition: color 0.3s ease;
  }

  .mobile-menu a:hover {
    color: var(--accent);
  }

  .hero-content {
    padding-top: calc(var(--banner-h) + var(--header-h) + 2rem);
  }

  .why-media::after {
    background:
      linear-gradient(to top, rgba(10, 10, 11, 0.94) 0%, rgba(10, 10, 11, 0.45) 100%);
  }

  .why-content {
    max-width: 100%;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

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

  .panel-content {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --banner-h: 30px;
    --header-h: 56px;
  }

  .draft-banner {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .brand-text {
    font-size: 1rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }

  .hero-content h1 {
    font-size: 2.35rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .services-intro h2 {
    font-size: 2.5rem;
  }

  .panel-content h3 {
    font-size: 2.3rem;
  }

  .panel-content p {
    font-size: 0.92rem;
  }

  .progress {
    display: none;
  }

  .contact {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .demo-form {
    padding: 1.5rem 1.25rem;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- prefers-reduced-motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.js [data-reveal],
  html.js .panel-media {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .hero-media {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }
}

/* Outreach demo disclosure — otomatik kaldırmayın. */
.outreach-demo-notice{position:relative;z-index:9999;width:100%;padding:8px 16px;background:#111;color:#fff;font:600 12px/1.4 Arial,sans-serif;text-align:center;letter-spacing:.01em}
