/* ==========================================================================
   FABLL — Sinema Editoryal Sitesi — Global Stylesheet
   ========================================================================== */

:root {
  --bg: #000000;
  --surface: #111111;
  --surface-raised: #161616;
  --border: #1c1c1c;
  --text: #f5f5f7;
  --text-secondary: #a1a1a6;
  --text-tertiary: #6e6e73;
  --accent: #e9a709;
  --accent-text: #1a1300;
  --nav-height: 52px;
  --max-width: 1100px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

svg {
  display: block;
}

.icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Page transition loader (film strip themed)
   ========================================================================== */

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.page-transition.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.page-transition__strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  background-image: repeating-linear-gradient(
    90deg,
    #000 0px,
    #000 10px,
    transparent 10px,
    transparent 20px
  );
  background-color: var(--accent);
  background-size: 40px 100%;
  animation: strip-roll 1s linear infinite;
}

.page-transition__strip--bottom {
  top: auto;
  bottom: 0;
  animation-direction: reverse;
}

@keyframes strip-roll {
  from { background-position-x: 0; }
  to { background-position-x: -40px; }
}

.page-transition__icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  animation: clapper-pulse 1s ease-in-out infinite;
}

@keyframes clapper-pulse {
  0%, 100% { transform: scale(1); opacity: 0.65; }
  50% { transform: scale(1.12); opacity: 1; }
}

.page-transition__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

@media (prefers-reduced-motion: reduce) {
  .page-transition__strip,
  .page-transition__icon {
    animation: none;
  }
}

/* ==========================================================================
   Scroll-driven side film reel
   ========================================================================== */

.scroll-reel {
  position: fixed;
  top: 0;
  right: 0;
  width: 26px;
  height: 100vh;
  overflow: hidden;
  z-index: 40;
  pointer-events: none;
  opacity: 0.55;
}

.scroll-reel__strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400%;
  background-image: repeating-linear-gradient(
    180deg,
    #000 0px,
    #000 10px,
    transparent 10px,
    transparent 20px
  );
  background-color: var(--accent);
  will-change: transform;
}

@media (max-width: 900px) {
  .scroll-reel {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reel {
    display: none;
  }
}

/* ==========================================================================
   Film strip decoration (sprocket holes)
   ========================================================================== */

.film-strip {
  height: 14px;
  width: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    #000 0px,
    #000 10px,
    transparent 10px,
    transparent 20px
  );
  background-color: var(--accent);
  opacity: 0.9;
}

.film-strip--top {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Breaking News Ticker
   ========================================================================== */

.ticker {
  background: var(--bg);
  color: var(--text);
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.ticker__label {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--accent-text);
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.ticker__label .icon {
  width: 14px;
  height: 14px;
}

.ticker__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  padding-left: 16px;
}

.ticker__track span {
  font-size: 13px;
  font-weight: 500;
  margin-right: 48px;
}

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

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo img {
  height: 18px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  position: relative;
}

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

.nav__links a.is-active {
  color: var(--text);
}

.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -17px;
  height: 2px;
  background: var(--accent);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 980px;
  padding: 6px 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav__cta:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  position: relative;
}

.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  height: 1px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__toggle span { top: 50%; }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }

.nav--open .nav__toggle span { background: transparent; }
.nav--open .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  min-height: calc(100vh - var(--nav-height) - 36px - 14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 12%, transparent 80%, var(--bg) 100%),
    linear-gradient(100deg, var(--bg) 0%, rgba(0, 0, 0, 0.75) 38%, rgba(0, 0, 0, 0.25) 65%, transparent 85%);
}

@media (min-width: 901px) {
  .hero {
    align-items: flex-start;
    text-align: left;
  }

  .hero__eyebrow,
  .hero__actions {
    justify-content: flex-start;
  }

  .hero__logo,
  .hero__headline,
  .hero__sub {
    margin-left: 0;
  }

  .hero__headline,
  .hero__sub {
    text-align: left;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  opacity: 0;
  position: relative;
  z-index: 1;
}

.hero__eyebrow .icon {
  width: 16px;
  height: 16px;
}

.hero__logo {
  width: 100%;
  max-width: 420px;
  margin-bottom: 32px;
  opacity: 0;
  position: relative;
  z-index: 1;
}

.hero__headline {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 820px;
  margin-bottom: 22px;
  opacity: 0;
  position: relative;
  z-index: 1;
}

.hero__headline em {
  font-style: normal;
  color: var(--accent);
}

.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
  max-width: 560px;
  margin-bottom: 40px;
  opacity: 0;
  position: relative;
  z-index: 1;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 12px 26px;
  border-radius: 980px;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 0 0 rgba(233, 167, 9, 0);
}

.btn--primary:hover {
  box-shadow: 0 8px 24px rgba(233, 167, 9, 0.35);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--text);
  color: #000;
}

.btn--white:hover {
  opacity: 0.85;
}

.btn--ghost {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.btn--small {
  padding: 8px 18px;
  font-size: 13px;
}

.hero__scroll {
  margin-top: 64px;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--text-tertiary));
  position: relative;
  overflow: hidden;
  opacity: 0;
  z-index: 1;
}

.hero__scroll::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--text));
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* ==========================================================================
   Reveal animation
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-anim .hero__eyebrow,
.hero-anim .hero__logo,
.hero-anim .hero__headline,
.hero-anim .hero__sub,
.hero-anim .hero__actions,
.hero-anim .hero__scroll {
  animation: fadeUp 0.8s ease forwards;
}

.hero-anim .hero__eyebrow { animation-delay: 0.1s; }
.hero-anim .hero__logo { animation-delay: 0.25s; }
.hero-anim .hero__headline { animation-delay: 0.4s; }
.hero-anim .hero__sub { animation-delay: 0.55s; }
.hero-anim .hero__actions { animation-delay: 0.7s; }
.hero-anim .hero__scroll { animation-delay: 0.9s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Page header (sub-pages)
   ========================================================================== */

.page-header {
  padding: 72px 24px 56px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse at top, rgba(233, 167, 9, 0.12) 0%, transparent 60%);
}

.page-header__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  color: var(--accent);
}

.page-header__eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.page-header__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.page-header__desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ==========================================================================
   Stats band
   ========================================================================== */

.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}

.stats__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stats__number {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.stats__label {
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.01em;
}

.stats__number--pulse {
  animation: pulse-glow 2.4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 0 rgba(233, 167, 9, 0); }
  50% { text-shadow: 0 0 18px rgba(233, 167, 9, 0.55); }
}

/* ==========================================================================
   Trend strip (auto-scrolling marquee)
   ========================================================================== */

.trend-strip {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}

.trend-strip::before,
.trend-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.trend-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.trend-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.trend-track {
  display: flex;
  gap: 16px;
  white-space: nowrap;
  animation: trend-scroll 36s linear infinite;
  width: max-content;
}

.trend-strip:hover .trend-track {
  animation-play-state: paused;
}

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

.trend-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 980px;
  padding: 8px 18px 8px 8px;
  transition: border-color 0.2s ease;
}

.trend-chip:hover {
  border-color: rgba(233, 167, 9, 0.4);
}

.trend-chip__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(233, 167, 9, 0.14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trend-chip__icon .icon {
  width: 14px;
  height: 14px;
}

.trend-chip__text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.trend-chip__text strong {
  color: var(--text);
  font-weight: 600;
}

/* ==========================================================================
   Section heading
   ========================================================================== */

.section {
  padding: 100px 24px;
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.section__eyebrow .icon {
  width: 15px;
  height: 15px;
}

.section__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 56px;
}

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

.section__head-row .section__eyebrow,
.section__head-row .section__title {
  margin-bottom: 0;
}

/* ==========================================================================
   What we cover — cards
   ========================================================================== */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 167, 9, 0.3);
  box-shadow: 0 16px 40px rgba(233, 167, 9, 0.1);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(233, 167, 9, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card__icon .icon {
  width: 24px;
  height: 24px;
}

.card__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Latest articles / news rows
   ========================================================================== */

.articles {
  display: flex;
  flex-direction: column;
}

.article-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.25s ease, background 0.25s ease;
}

.article-row:hover {
  padding-left: 8px;
}

.article-row:first-child {
  border-top: 1px solid var(--border);
}

.article-row__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.article-row__tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-row__title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.article-row__date {
  font-size: 13px;
  color: var(--text-tertiary);
}

.article-row__arrow {
  font-size: 20px;
  color: var(--text-tertiary);
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.25s ease;
}

.article-row:hover .article-row__arrow {
  transform: translateX(4px);
  color: var(--accent);
}

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tab {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 980px;
  padding: 8px 18px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.filter-tab:hover,
.filter-tab.is-active {
  color: var(--text);
  border-color: rgba(233, 167, 9, 0.4);
  background: rgba(233, 167, 9, 0.08);
}

/* ==========================================================================
   Star rating
   ========================================================================== */

.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--accent);
}

.stars .icon {
  width: 16px;
  height: 16px;
}

.stars .icon--empty {
  color: var(--border);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* ==========================================================================
   Review cards
   ========================================================================== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 167, 9, 0.3);
  box-shadow: 0 16px 40px rgba(233, 167, 9, 0.1);
}

.review-card__poster {
  aspect-ratio: 2 / 3;
  background: linear-gradient(160deg, #1a1a1a, #060606);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.review-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__poster .icon {
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

.review-card__score {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 980px;
  backdrop-filter: blur(6px);
}

.review-card__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.review-card__tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.review-card__title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.review-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

/* ==========================================================================
   CTA section
   ========================================================================== */

.cta {
  text-align: center;
  padding: 120px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta__desc {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Timeline (Hikayemiz)
   ========================================================================== */

.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 1px solid var(--border);
}

.timeline__item {
  position: relative;
  padding-bottom: 44px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -38px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(233, 167, 9, 0.15);
}

.timeline__year {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.timeline__title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.timeline__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 540px;
}

/* ==========================================================================
   Values grid (Hikayemiz)
   ========================================================================== */

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.value-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}

.value-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(233, 167, 9, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item__icon .icon {
  width: 20px;
  height: 20px;
}

.value-item__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.value-item__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 167, 9, 0.3);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(233, 167, 9, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card__icon .icon {
  width: 22px;
  height: 22px;
}

.contact-card__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-card__value {
  font-size: 14px;
  color: var(--text-secondary);
}

.contact-card__value a:hover {
  color: var(--text);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  padding: 48px 24px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__logo img {
  height: 14px;
}

.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer__links a {
  font-size: 12px;
  color: var(--text-tertiary);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--text-secondary);
}

.footer__copy {
  font-size: 12px;
  color: var(--text-tertiary);
  width: 100%;
  text-align: center;
  margin-top: 24px;
}

/* ==========================================================================
   Article page
   ========================================================================== */

.article {
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 24px 100px;
}

.article__tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.article__title {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.article__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.article__cover {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 40px;
  border: 1px solid var(--border);
}

.article__lead {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.4;
}

.article__score {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233, 167, 9, 0.12);
  border: 1px solid rgba(233, 167, 9, 0.4);
  border-radius: 980px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.article__body {
  font-size: 18px;
  line-height: 1.75;
  color: #e0e0e2;
}

.article__body p {
  margin-bottom: 24px;
}

.article__body h2 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 48px 0 20px;
}

.article__body a {
  color: var(--accent);
  text-decoration: underline;
}

.article__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.article__back:hover {
  color: var(--text);
}

/* ==========================================================================
   404 page
   ========================================================================== */

.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.error-page__icon {
  width: 56px;
  height: 56px;
  color: var(--accent);
  margin-bottom: 18px;
}

.error-page__code {
  font-size: clamp(80px, 14vw, 140px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.error-page__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 16px 0 12px;
}

.error-page__desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .nav__links {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav--open .nav__links {
    max-height: 360px;
  }

  .nav__links a {
    padding: 16px 24px;
    width: 100%;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }

  .nav__links a.is-active::after {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

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

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

  .section {
    padding: 64px 24px;
  }

  .section__head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .article-row__arrow {
    display: none;
  }

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

  .hero__reel {
    display: none;
  }
}
